-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (97 loc) · 1.9 KB
/
style.css
File metadata and controls
119 lines (97 loc) · 1.9 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
body {
margin: auto;
background: #ECFDF5;
font-family: Karla;
}
.container {
display: flex;
flex-direction: column;
gap: 56px;
margin: 10%;
}
.header {
display: flex;
flex-direction: column;
gap: 12px;
}
.title {
color: #2B283A;
font-family: Karla;
font-size: 40px;
font-style: normal;
font-weight: 800;
line-height: 40px; /* 100% */
letter-spacing: -2px;
margin: 0;
}
.title span {
color: #10B981;
/* layout */
width: 354px;
}
.header p {
color: #6B7280;
/* typography */
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 140% */
/* layout */
margin: 0;
}
.outputs {
display: flex;
flex-direction: column;
gap: 32px;
}
.generate-password {
/* layout */
width: max-content;
display: inline-flex;
padding: 9px 17px 9px 15px;
justify-content: center;
align-items: center;
/* style */
border-radius: 6px;
border: none;
background: #10B981;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
/* typography */
color: var(--white, #FFF);
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
}
hr {
border: none;
background-color: hsla(255, 5%, 84%, 1);
width: 100%;
height: 1px;
}
.passwords {
display: flex;
gap: 24px;
}
.password-one, .password-two {
/* layout */
display: flex;
justify-content: center;
align-items: center;
width: 211px;
height: 39px;
flex-shrink: 0;
/* style */
border-radius: 6px;
background: #273549;
/* typography */
color: #5DEF92;
text-align: center;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 32px; /* 200% */
}