-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (77 loc) · 1.32 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
::-webkit-scrollbar {
display: none;
}
::selection {
background: yellow;
color: black;
}
::-moz-selection {
background: yellow;
color: black;
}
*, :after, :before {
-moz-appearance: initial;
background-color: black;
background: black;
text-align: left;
font-family: "Nimbus Mono PS", monospace;
font-size: 20px;
line-height: 1em;
color: white;
scrollbar-width: none;
border: none;
outline: none;
padding: 0px;
margin: 0px;
inset: 0px;
position: static;
box-sizing: border-box;
}
body {
width: 100vw;
height: 100vh;
padding: 2vw;
}
input[type=text]:hover, input[type=text]:focus {
background-color: magenta;
color: black;
}
input[type=text] {
min-width: 30%;
max-width: 60%;
color: magenta;
}
input[type=checkbox] {
width: 3ch;
height: 1em;
vertical-align: bottom;
}
input[type=checkbox]::after {
position: absolute;
text-decoration: underline;
cursor: pointer;
content: "[ ]";
color: cyan;
}
input[type=checkbox]:hover:after {
color: magenta;
}
input[type=checkbox]:checked:after {
content: "[X]";
color: magenta;
}
a, option, input[type=submit] {
text-decoration: underline;
color: cyan;
}
a:hover, option:hover, input[type=submit]:hover {
background: magenta;
color: black;
}
a:visited {
color: cyan;
}
option:checked {
background: linear-gradient(magenta, magenta);
color: black;
}