-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (92 loc) · 1.74 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Karla:wght@200;300;400;500;800&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
#canvas {
display: flex;
justify-content: center;
align-items: center;
font-family: 'Karla', sans-serif;
width: 100%;
height: 100vh;
background-color: #1C1C1C;
}
#generator-ui {
width: 550px;
height: 550px;
color: white;
background-color: #1F2937;
}
#generate-heading {
width: 354px;
height: 80px;
margin: 115px 0 0 52px;
font-size: 40px;
font-weight: 800;
line-height: 40px;
letter-spacing: -1px;
}
span {
color: #4ADF86;
}
#para {
width: 372px;
height: 28px;
margin: 10px 0 0 0;
font-family: 'Inter', sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
.generate-btn {
width: 191px;
height: 42px;
background-color: #10B981;
color: white;
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
border: none;
border-radius: 6px;
font-family: 'Inter', sans-serif;
padding: 9px 17px 9px 15px;
gap: 12px;
margin: 51px 0 35px 0;
}
.generate-btn:hover,
.generate-btn:active {
background-color: #0d9e6e;
cursor: pointer;
}
#password-section {
display: flex;
width: 446px;
height: 78px;
}
#password-box-left, #password-box-right {
display: inline-block;
width: 211px;
height: 39px;
border-radius: 6px;
background: #273549;
margin: 35px 0 0 0;
}
.separator {
width: 446px;
height: 1px;
background-color: #2F3E53;
}
#password-box-right {
justify-content: flex-end;
margin-left: 24px;
}
#password1, #password2 {
text-align: center;
color: #55F991;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 32px;
padding-top: 3px;
}