-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
86 lines (76 loc) · 1.48 KB
/
index.css
File metadata and controls
86 lines (76 loc) · 1.48 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
85
86
* {
margin: 0;
}
body {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background: #527269;
font-family: 'Inter', sans-serif;
}
#card {
width: calc(550px - 104px);
height: calc(550px - 220px);
background: linear-gradient(180deg, #ECFDF5 55.73%, #48D895 92.19%);
padding: 110px 52px;
border-radius: 25px;
box-shadow: 0 0 20px 1px #216251;
}
h1 {
font-family: 'Karla', sans-serif;
font-weight: 800;
font-size: 40px;
line-height: 40px;
letter-spacing: -0.05em;
color: #2B283A;
margin: 0;
}
h1 > span {
color: #10B981;
}
h4 {
font-weight: 400;
font-size: 20px;
line-height: 28px;
color: #6B7280;
margin: 10px 0 51px 0;
}
button {
cursor: pointer;
width: 191px;
height: 42px;
border: none;
background: #10B981;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
border-radius: 6px;
color: white;
font-family: 'Inter', sans-serif;
font-weight: 500;
font-size: 16px;
}
hr {
border: 1px solid #527269;
margin: 35px 0;
}
#password-boxes {
cursor: pointer;
display: flex;
justify-content: space-between;
}
.password-box {
width: 211px;
height: 39px;
background: #ECFDF5;
border-radius: 6px;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
display: flex;
justify-content: center;
align-items: center;
font-weight: 500;
color: #10B981;
}
#click-alert {
margin: 15px 0;
color: #047857;
}