-
Notifications
You must be signed in to change notification settings - Fork 0
/
style-rainbow-warrior.css
121 lines (94 loc) · 2.26 KB
/
style-rainbow-warrior.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
/*--------------------------------------------------------------
## Rainbow Warrior
--------------------------------------------------------------*/
.rainbow-warrior > a:nth-child(10n+1),
.rainbow-warrior > *:nth-child(10n+1) a {
color:purple;
border-color:purple;
}
.rainbow-warrior > a:nth-child(10n+2),
.rainbow-warrior > *:nth-child(10n+2) a {
color:DarkViolet;
border-color:DarkViolet;
}
.rainbow-warrior > a:nth-child(10n+3),
.rainbow-warrior > *:nth-child(10n+3) a {
color:blue;
border-color:blue;
}
.rainbow-warrior > a:nth-child(10n+4),
.rainbow-warrior > *:nth-child(10n+4) a {
color:deepskyblue;
border-color:deepskyblue;
}
.rainbow-warrior > a:nth-child(10n+5),
.rainbow-warrior > *:nth-child(10n+5) a {
color:darkcyan;
border-color:darkcyan;
}
.rainbow-warrior > a:nth-child(10n+6),
.rainbow-warrior > *:nth-child(10n+6) a {
color:green;
border-color:green;
}
.rainbow-warrior > a:nth-child(10n+7),
.rainbow-warrior > *:nth-child(10n+7) a {
color:#f0cb02;
border-color:#f0cb02;
}
.rainbow-warrior > a:nth-child(10n+8),
.rainbow-warrior > *:nth-child(10n+8) a {
color:orange;
border-color:orange;
}
.rainbow-warrior > a:nth-child(10n+9),
.rainbow-warrior > *:nth-child(10n+9) a {
color:red;
border-color:red;
}
.rainbow-warrior > a:nth-child(10n+10),
.rainbow-warrior .teaser:nth-child(10n+10) a {
color:firebrick;
border-color:firebrick;
}
.rainbow-warrior > a:hover {
border-color:gray;
color:black;
}
/*--------------------------------------------------------------
## Rainbow Warrior
--------------------------------------------------------------*/
.rainbow-warrior .teaser {
padding-bottom:20px;
border-bottom:5px solid black;
}
.rainbow-warrior > *:nth-child(1) {
border-color:purple;
}
.rainbow-warrior > *:nth-child(2) {
border-color:DarkViolet;
}
.rainbow-warrior > *:nth-child(3) {
border-color:blue;
}
.rainbow-warrior > *:nth-child(4) {
border-color:deepskyblue;
}
.rainbow-warrior > *:nth-child(5) {
border-color:darkcyan;
}
.rainbow-warrior > *:nth-child(6) {
border-color:green;
}
.rainbow-warrior > *:nth-child(7) {
border-color:#f0cb02;
}
.rainbow-warrior > *:nth-child(8) {
border-color:orange;
}
.rainbow-warrior > *:nth-child(9) {
border-color:red;
}
.rainbow-warrior > *:nth-child(10) {
border-color:firebrick;
}