-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
111 lines (94 loc) · 1.97 KB
/
index.css
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
body {
margin: 0;
font-family: 'Karla', sans-serif;
}
main {
display: flex;
flex-direction: column;
width: 550px;
height: 550px;
flex-shrink: 0;
background: #1F2937;
border: 1px solid #1F2937;
border-radius: 5px;
}
h1,h2,h3 {
}
h1 {
margin: 50px 5px 0px 20px;
margin-left: 36px;
color: var(--white, #FFF);
font-family: Karla;
font-size: 40px;
font-style: normal;
font-weight: 800;
line-height: 40px; /* 100% */
letter-spacing: -1px;
}
h2 {
margin: 0px 5px 5px 20px;
margin-left: 36px;
color: #4ADF86;
font-family: Karla;
font-size: 30px;
font-style: normal;
font-weight: 800;
line-height: 40px;
letter-spacing: -1px;
}
h3 {
margin: 0 5px 5px 20px;
margin-left: 36px;
color: var(--Medium-grey, #D5D4D8);
/* text-xl/leading-7/font-normal */
font-family: Inter;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 28px; /* 140% */
}
#pass-gen-btn {
width: 150px;
margin: 40px 5px 5px 20px;
margin-left: 36px;
border: none;
border-radius: 5px;
padding: 8px 30px 8px 30px;
display: inline-flex;
padding: 9px 17px 9px 15px;
justify-content: center;
align-items: center;
gap: 12px;
color: var(--white, #FFF);
/* text-base/leading-6/font-medium */
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
border-radius: 6px;
background: #10B981;
}
hr {
width: 446px;
height: 1px;
background: #2F3E53;
border: none;
}
.passwords-disp-container {
display: flex;
width: 446px;
justify-content: space-between;
}
#password-one, #password-two {
width: 211px;
height: 39px;
flex-shrink: 0;
border-radius: 6px;
background: #273549;
margin-left: 36px;
color: white;
display: flex;
justify-content: center;
align-items: center;
}