-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
82 lines (71 loc) · 1.22 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
body {
margin: 0;
background: #1C1C1C;
font-family: 'Inter'
}
.container {
margin: 62px 64px;
background: #1F2937;
width: 550px;
height: fit-content;
}
.main {
padding: 52px;
}
h1 {
margin: 0px;
font-family: 'Karla', sans-serif;
}
#white-h1 {
color: whitesmoke
}
#green-h1 {
color: #4ADF86;
margin-bottom: 10px;
}
.gray-p {
color: silver;
}
#description {
margin-bottom: 50px;
}
.green-btn {
background: #10B981;
border: 0px;
padding: 9px 16px;
border-radius: 5px;
font-family: inherit;
color: white;
}
#generate-btn {
margin-top: 50px;
}
#border {
width: 100%;
height: 1px;
background: #273549;
margin: 35px 0;
}
#password-container {
border: 1px dotted blue;
height: fit-content;
display: flex;
justify-content: space-between;
}
#password-one-box, #password-two-box {
width: 211px;
height: fit-content;
background: #273549;
border: 1px dotted blue;
border-radius: 5px;
}
#password-one-el, #password-two-el {
color: #4ADF86;
text-align: center;
margin: 0px auto;
padding: 10px;
white-space: pre-wrap;
word-wrap: break-word;
max-width: 200px;
border: 1px solid blue;
}