-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
84 lines (71 loc) · 1.21 KB
/
index.css
File metadata and controls
84 lines (71 loc) · 1.21 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
body {
margin: 0;
font-family: "Work Sans", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
background-color: #1f2937;
color: #d5d4d8;
box-sizing: border-box;
}
main {
display: flex;
justify-content: center;
align-content: center;
height: 100%;
}
.container {
margin: auto;
}
h1 {
color: white;
letter-spacing: -2.5%;
line-height: 1;
font-size: 3rem;
margin-bottom: 0.6rem;
}
h1 span {
color: #4adf86;
}
p {
font-size: 1.3rem;
line-height: 1.2;
margin: 0;
}
button {
margin: 3rem 0 2rem 0;
background-color: #10b981;
padding: 0.8rem 1.2rem 0.8rem 1.2rem;
border: none;
border-radius: 6px;
color: white;
transition: transform 0.2s;
}
button:hover {
transform: scale(1.1);
}
button:active {
transform: scale(1);
background-color: #4adf86;
}
.divider {
height: 1px;
background-color: #2f3e53;
margin: 2rem 0 2rem 0;
}
.pw-container {
display: flex;
justify-content: space-between;
width: 100%;
align-content: center;
}
.pw {
width: 50%;
color: #55f991;
background-color: #243d41;
padding: 0.6rem 1.1rem 0.6rem 1.1rem;
margin: 0 1.5rem 0 0;
border-radius: 6px;
text-align: center;
align-items: center;
}
.pw:last-child {
margin-right: 0;
}