-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (50 loc) · 910 Bytes
/
style.css
File metadata and controls
60 lines (50 loc) · 910 Bytes
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
html,
body {
margin: 0;
padding: 0;
width: 100%;
overflow: hidden;
height: 100vh;
font-family: 'Courier New', Courier, monospace;
display: grid;
place-items: center;
touch-action: manipulation;
}
main {
margin: 10vmin auto;
text-align: center;
width: 100%;
height: 100vh;
}
h2 {
height: 3rem;
padding-block: 2rem;
font-size: 250%;
}
input {
all: unset;
transition: all 50ms ease;
border: 6px solid #000;
font-size: 200%;
margin: 1rem;
padding: 1rem 1.5rem;
font-weight: bold;
box-shadow: 6px 6px 0 0 #fff, 12px 12px 0 0 #000;
}
input[type='button']:active {
padding-inline: 1.3rem;
box-shadow: 3px 3px 0 0 #fff, 9px 9px 0 0 #000;
}
@media screen and (max-width: 750px) {
:root {
font-size: 12px;
}
}
* {
user-select: none;
-webkit-user-select: none;
}
#generated-password:active {
color: #aaa;
transition: color 20ms ease-in-out;
}