-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
124 lines (101 loc) · 2.83 KB
/
main.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
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
/**
* Badges for Project Stages
*
* @see: http://result.dabblet.com/gist/a2ae67caa3863a299ba0
* @see: http://bl.ocks.org/potherca/raw/a2ae67caa3863a299ba0
*/
@import url(https://pother.ca/CssBase/css/created-by-potherca.css);
td[colspan="2"] {
background: #CCD;
color: white;
text-indent: 2em;
}
.main-content ul:first-of-type {
position: relative;
border: 0.1em solid;
display: block;
height: 4em;
width: 28em; /* fallbackk for older browsers */
width: max-content;
padding: 0;
box-sizing: initial;
border: 1px solid rgb(225,225,225);
box-shadow: 0 0 0.5em rgba(50,50,50, 0.5), 0 0 0.75em rgba(50,50,50, 0.5), 0 0 1em rgba(50,50,50, 0.5);
}
.main-content ul:first-of-type li {
display: block;
float: left;
height: 2em;
width: 2em;
margin: 0;
padding: 0;
border-right: 0.05em solid;
border-color: rgb(250,250,250);
color: white;
font-size: 2em;
line-height: 2em;
text-align: center;
font-family: sans, sans-serif;
background-image: radial-gradient(
circle closest-corner,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0.25)
)
;
text-shadow: -1px -1px 1px #111, 2px 2px 1px #363636;
}
.main-content ol:first-of-type li::before,
.main-content ul:first-of-type li::before {
content: none;
}
.main-content ol:first-of-type li:last-child,
.main-content ul:first-of-type li:last-child {
border-right: none;
}
.main-content ol:first-of-type li {
color:white; border-color: #000;
}
.main-content ol:first-of-type li:nth-of-type(1),
.main-content ul:first-of-type li:nth-of-type(1) { background-color: #e05d44;}
.main-content ol:first-of-type li:nth-of-type(2),
.main-content ul:first-of-type li:nth-of-type(2) {background-color: #fe7d37;}
.main-content ol:first-of-type li:nth-of-type(3),
.main-content ul:first-of-type li:nth-of-type(3) {background-color: #dfb317;}
.main-content ol:first-of-type li:nth-of-type(4),
.main-content ul:first-of-type li:nth-of-type(4) {background-color: #a4a61d;}
.main-content ol:first-of-type li:nth-of-type(5),
.main-content ul:first-of-type li:nth-of-type(5) {background-color: #4c1;}
.main-content ol:first-of-type li:nth-of-type(6),
.main-content ul:first-of-type li:nth-of-type(6) {background-color: #F00;}
.main-content ol:first-of-type li:nth-of-type(7),
.main-content ul:first-of-type li:nth-of-type(7) {background-color: #000;}
.main-content > p:nth-child(9) {
position: relative;
top: 11em;
}
.main-content > p:nth-child(11) {
bottom: 8em;
left: 22em;
position: relative;
}
.main-content ol:first-of-type {
border-bottom: 0.1em solid;
display: inline-block;
left: 10em;
position:relative;
text-align: center;
}
.main-content ol:first-of-type strong {
font-weight: normal;
}
.main-content ol:first-of-type > * {
font-weight: normal;
display: block;
border: 0.1em solid;
border-bottom: none;
}
.main-content ol:first-of-type > *:last-child {
background-color: black;
color: white;
}
/*EOF*/