-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnoise.css
More file actions
51 lines (51 loc) · 1.12 KB
/
noise.css
File metadata and controls
51 lines (51 loc) · 1.12 KB
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
body {
font-family: sans-serif;
background: #eee;
margin-left: auto; margin-right: auto;
padding: .4em;
}
input[type=radio] { display: none }
input[type=radio] + label {
cursor: pointer;
display: inline-block;
position: relative;
width: 9em;
height: 9em;
background: #eee;
border: 0.3em solid #ccc;
border-radius: 2em;
margin: .8em;
text-align: center;
}
input[type=radio]:checked + label{
border: 0.3em solid black;
/*background: #eee;*/
box-shadow: 0.1em 0.1em .8em black;
}
input[type=radio]:checked + label:last-child{
/* ewwww */
border: 0.3em solid transparent;
background: #036;
}
.col {
background-size: cover;
margin-left: auto;
margin-right: auto;
margin-top: 1em;
width: 4em; height: 4em;
margin-bottom: 0.5em;
}
.name { font-weight: bold; }
.expl { font-size: 0.9em }
#nyanvas {
position: absolute;
display: block;
margin: 0;
max-width: 100%; max-height: 100%;
border: 0.3em solid black;
border-radius: 2em;
left: -0.3em; top: -0.3em;
/*left:0; top:0;*/
background: #036;
display: none;
}