-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
86 lines (74 loc) · 1.41 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
/* style.css */
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");
body {
background-color: white;
color: navy;
font-family: monospace;
font-weight: bold;
}
.generator {
background-color: white;
width: 250px;
margin: 150px auto;
padding: 20px;
border-radius: 70px;
}
div.password {
display: grid;
grid-template-columns: auto min-content;
border-radius: 10px;
overflow: hidden;
}
div.password input {
padding: 7px 10px;
background-color: #ddd;
border: 0;
color: #333;
}
button {
background-color: orangered;
color: #fff;
text-transform: uppercase;
padding: 5px 15px;
border: 0;
border-radius: 10px;
}
div.password button {
border-radius: 0;
}
div.range {
margin: 10px 0;
display: grid;
grid-template-columns: 1fr min-content;
}
div.range span {
background-color: #ddd;
padding: 10px;
margin-left: 20px;
min-width: 30px;
text-align: center;
border-radius: 10px;
}
div.options {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
}
div.options label {
display: block;
background-color: #ddd;
padding: 10px;
border-radius: 10px;
cursor: pointer;
font-family: sans-serif;
}
button.generate {
width: 100%;
margin-top: 10px;
padding: 10px;
}
h1 {
text-align: center;
color: #4caf157;
font-family: monospace;
}