-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (111 loc) · 2.22 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
background-color: black;
font-family: "Press Start 2P", sans-serif;
font-size: 10px;
}
.container{
width: 450px;
height: 450px;
padding: 2px;
margin: auto;
background-color: black;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
border: 2px solid white;
color: white;
}
.inputs {
display: flex;
justify-content: space-between;
align-items: center;
}
.result{
width: 250px;
height: 40px;
}
#resultpass{
width: 70%;
height: 40px;
background: none;
border: 1px solid white;
font-family: inherit;
color: white;
text-align: center;
font-size: 8px;
}
.clipboard
{
width: 30%;
height: 40px;
border: 2px solid white;
background-color: black;
color: white;
font-size: 8px;
font-family: inherit;
cursor: pointer;
}
.cases {
display: flex;
justify-content: space-between;
flex-direction: column;
width: 250px;
height: 150px;
}
input[type="checkbox"]{
appearance: none;
-webkit-appearance: none;
height: 15px;
width: 15px;
border: 1px white solid;
background-color: black;
cursor: pointer;
align-items: center;
display: flex;
justify-content: center;
}
input[type="checkbox"]:after{
font-family: "Font Awesome 5 Sharp";
content: "\f14a";
display: none;
color: black;
font-size: 15px;
font-weight: 800;
}
input[type="checkbox"]:checked{
background-color: white;
}
input[type="checkbox"]:checked:after{
display: block;
}
#generator {
width: 250px;
height: 50px;
border: 2px solid white;
background-color: black;
color: white;
font-size: 8px;
font-family: inherit;
cursor: pointer;
}
#countsofsymbols{
background: none;
border: 1px solid white;
font-family: inherit;
height: 30px;
width: 50px;
color: white;
text-align: center;
font-size: 8px;
}
h4{
font-size: 8px;
}