-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (122 loc) · 2.18 KB
/
style.css
File metadata and controls
128 lines (122 loc) · 2.18 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
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
html, body{
font-family:monospace;
letter-spacing: 6px;
color:#FFF;
background:#393F4C;
}
body{
max-width:500px;
margin:20px auto;
}
h2{
text-transform:uppercase;
margin-bottom:2px;
}
canvas{
display: block;
background:#cdcdcd;
border-radius:3px;
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
border:1px solid rgba(0, 0, 0, 0.1);
margin:auto;
letter-spacing:2px;
font-size:16px;
user-select:none;
-webkit-user-select:none;
}
button{
text-decoration:none;
letter-spacing:2px;
background:#cdcdcd;
color:#333;
border-radius:2px;
box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.25);
padding:10px 10px;
text-transform:uppercase;
font-size:11px;
margin:20px 10px 0px 0px;
display:inline-block;
font-weight:600;
position:relative;
border:none;
user-select:none;
-webkit-user-select:none
}
button.active{
text-decoration:underline;
}
button.active:after{
content: '';
position:absolute;
width:100%;
height:100%;
background:rgba(0, 0, 0, 0.1);
top:0px;
left:0px;
}
a{
display:block;
text-decoration:none;
color:#FFF;
letter-spacing:4px;
font-size:10px;
text-align:right;
margin-bottom:-10px;
margin-top:2px;
user-select:none;
-webkit-user-select:none;
margin-right:2px;
}
a:hover{
text-decoration:underline;
}
a img{
height:14px;
top:4px;
position:relative;
}
display, settings, settings setting{
position:relative;
display:block;
}
settings {
position:absolute;
bottom:0px;
right:-2px;
color:#dcd;
letter-spacing:1px;
background:rgba(0, 0, 0, 0.75);
border-radius:3px 0px 3px 0px;
font-size:8px;
-webkit-user-select:none;
user-select:none;
opacity:0.25;
transition:all 0.25s;
transition-delay:0.5s;
user-select:none;
}
settings:hover{
opacity:1;
}
settings setting{
text-align:right;
padding:2px 0px 0px 6px;
}
settings setting:last-of-type{
padding-bottom:5px;
}
settings setting value{
min-width:40px;
text-align:center;
}
settings label, settings input, settings value{
display:inline-block;
position:relative;
}
settings label {
margin-right:6px;
}
settings input{
top:5px;
max-width:60px;
}