-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (52 loc) · 911 Bytes
/
style.css
File metadata and controls
63 lines (52 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
gap: 25px;
font-family: 'Courier New', Courier, monospace;
}
h1{
font-size: 50px;
}
button{
padding: 20px 30px;
border-radius: 50px;
border: none;
background-color: rgb(170, 25, 237);
color: #ffffff;
font-size: 15px;
}
button:hover{
background-color: rgb(142, 8, 204);
}
button:active{
background-color: rgb(124, 10, 177);
}
div{
display: flex;
gap: 35px;
align-items: center;
}
p, span{
font-size: 20px;
}
span {
font-weight: 600;
font-size: 30px;
}
.lenght{
display: flex;
flex-direction: column;
gap: 10px;
}
.passlen{
text-align: start;
width: 100%;
}