This repository was archived by the owner on Jun 4, 2018. It is now read-only.
forked from s4y/sleepyti.me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
88 lines (88 loc) · 1.38 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
html {
background: #333;
text-align: center;
font-family: 'Helvetica Neue', Helvetica, sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 100;
padding: 0 0.5em;
}
body {
color: #AAA;
padding: 1em;
margin: 3% auto;
background: #444;
border-radius: 1em;
-moz-border-radius: 1em;
-webkit-border-radius: 1em;
max-width: 40em;
}
::selection {
background: #4D0800; /* Safari */
}
::-moz-selection {
background: #4D0800; /* Firefox */
}
h1, h2 {
color: #999;
font-weight: 100;
text-shadow: 3px 3px 3px #000;
margin: 0;
}
h1 {
margin-bottom: 0.1em;
}
h2 {
font-size: 1.25em;
color: #888;
}
button {
margin-bottom: 1em;
}
#content {
max-width: 25em;
margin: 0 auto;
}
#mainDetails {
padding: 0 0.5em;
}
#results {
list-style: none;
padding: 0;
margin: 1em 0.5em 0;
}
#results > li {
display: inline;
background: #222;
border-radius: 0.25em;
-webkit-border-radius: 0.25em;
-moz-border-radius: 0.25em;
padding: 0.25em 0.5em;
line-height: 2em;
}
#results > li.good {
background-color: #007034;
}
#results > li.gooder {
background-color: #009947;
color: #BBB;
}
#results > li.goodest {
background-color: #00A824;
color: #CCC;
}
#results > li:nth-child(3):after {
content:"\A"; white-space:pre;
}
#results > li:nth-child(n):nth-child(-n+3) {
font-size: 18px;
}
noscript {
background: black;
color: white;
position: fixed;
left: 0;
right: 0;
top: 0;
bottom: 0;
}