| 1 |
/** |
| 2 |
* 02. Themes |
| 3 |
*/ |
| 4 |
|
| 5 |
/** |
| 6 |
* 02. 01. Theme Dark |
| 7 |
*/ |
| 8 |
.csf-theme-dark{ |
| 9 |
|
| 10 |
.csf-header-inner{ |
| 11 |
background-color: #050505; |
| 12 |
|
| 13 |
h1{ |
| 14 |
color: #fff; |
| 15 |
|
| 16 |
small{ |
| 17 |
color: #555; |
| 18 |
} |
| 19 |
} |
| 20 |
} |
| 21 |
|
| 22 |
.csf-expand-all{ |
| 23 |
color: #999; |
| 24 |
background-color: #222; |
| 25 |
|
| 26 |
&:hover{ |
| 27 |
color: #fff; |
| 28 |
background-color: #333; |
| 29 |
} |
| 30 |
} |
| 31 |
|
| 32 |
.csf-search{ |
| 33 |
|
| 34 |
input{ |
| 35 |
color: #fff; |
| 36 |
background-color: #222; |
| 37 |
} |
| 38 |
|
| 39 |
&:focus{ |
| 40 |
background-color: #444; |
| 41 |
} |
| 42 |
|
| 43 |
&::-webkit-input-placeholder{ |
| 44 |
color: #666; |
| 45 |
} |
| 46 |
} |
| 47 |
|
| 48 |
.csf-nav{ |
| 49 |
|
| 50 |
ul{ |
| 51 |
|
| 52 |
li{ |
| 53 |
|
| 54 |
a{ |
| 55 |
color: #999; |
| 56 |
border-color: #2f2f2f; |
| 57 |
background-color: #222; |
| 58 |
|
| 59 |
&:hover{ |
| 60 |
color: #fff; |
| 61 |
} |
| 62 |
} |
| 63 |
|
| 64 |
.csf-active{ |
| 65 |
color: #fff; |
| 66 |
background-color: #111; |
| 67 |
} |
| 68 |
} |
| 69 |
|
| 70 |
ul{ |
| 71 |
|
| 72 |
li{ |
| 73 |
|
| 74 |
a{ |
| 75 |
border-color: #2f2f2f; |
| 76 |
background-color: #191919; |
| 77 |
} |
| 78 |
|
| 79 |
.csf-active{ |
| 80 |
background-color: #101010; |
| 81 |
} |
| 82 |
} |
| 83 |
|
| 84 |
&:before{ |
| 85 |
background-color: rgba(#222, 0.75); |
| 86 |
} |
| 87 |
} |
| 88 |
} |
| 89 |
|
| 90 |
> ul > li:last-child > a{ |
| 91 |
border: none; |
| 92 |
} |
| 93 |
} |
| 94 |
|
| 95 |
.csf-nav-normal{ |
| 96 |
|
| 97 |
ul{ |
| 98 |
|
| 99 |
li{ |
| 100 |
|
| 101 |
a{ |
| 102 |
border-bottom-width: 1px; |
| 103 |
border-bottom-style: solid; |
| 104 |
} |
| 105 |
|
| 106 |
.csf-active:after{ |
| 107 |
content: " "; |
| 108 |
position: absolute; |
| 109 |
right: 0; |
| 110 |
top: 50%; |
| 111 |
height: 0; |
| 112 |
width: 0; |
| 113 |
pointer-events: none; |
| 114 |
border: solid transparent; |
| 115 |
border-right-color: #fff; |
| 116 |
border-width: 4px; |
| 117 |
margin-top: -4px; |
| 118 |
} |
| 119 |
} |
| 120 |
} |
| 121 |
} |
| 122 |
|
| 123 |
.csf-nav-inline{ |
| 124 |
background-color: #222; |
| 125 |
|
| 126 |
ul{ |
| 127 |
|
| 128 |
li{ |
| 129 |
|
| 130 |
a{ |
| 131 |
text-align: center; |
| 132 |
border-right-width: 1px; |
| 133 |
border-right-style: solid; |
| 134 |
} |
| 135 |
|
| 136 |
.csf-active:after{ |
| 137 |
content: " "; |
| 138 |
position: absolute; |
| 139 |
left: 50%; |
| 140 |
bottom: 0; |
| 141 |
height: 0; |
| 142 |
width: 0; |
| 143 |
pointer-events: none; |
| 144 |
border: solid transparent; |
| 145 |
border-bottom-color: #fff; |
| 146 |
border-width: 4px; |
| 147 |
margin-left: -4px; |
| 148 |
} |
| 149 |
} |
| 150 |
} |
| 151 |
} |
| 152 |
|
| 153 |
.csf-nav-background{ |
| 154 |
background-color: #222; |
| 155 |
} |
| 156 |
|
| 157 |
.csf-footer{ |
| 158 |
color: #555; |
| 159 |
background-color: #050505; |
| 160 |
} |
| 161 |
} |
| 162 |
|
| 163 |
/** |
| 164 |
* 02. 02. Theme Light |
| 165 |
*/ |
| 166 |
.csf-theme-light{ |
| 167 |
|
| 168 |
.csf-container{ |
| 169 |
border: 1px solid #ccd0d4; |
| 170 |
box-shadow: 0 0 15 rgba(0,0,0,0.04); |
| 171 |
} |
| 172 |
|
| 173 |
.csf-header-inner{ |
| 174 |
border-bottom: 1px solid #ccd0d4; |
| 175 |
background-color: #f5f5f5; |
| 176 |
background: linear-gradient(#fefefe, #f5f5f5); |
| 177 |
|
| 178 |
h1{ |
| 179 |
|
| 180 |
small{ |
| 181 |
color: #999; |
| 182 |
} |
| 183 |
} |
| 184 |
} |
| 185 |
|
| 186 |
.csf-expand-all{ |
| 187 |
color: #999; |
| 188 |
background-color: #eee; |
| 189 |
|
| 190 |
&:hover{ |
| 191 |
color: #555; |
| 192 |
} |
| 193 |
} |
| 194 |
|
| 195 |
.csf-search{ |
| 196 |
|
| 197 |
input{ |
| 198 |
color: #555; |
| 199 |
background-color: #eee; |
| 200 |
|
| 201 |
&::-webkit-input-placeholder{ |
| 202 |
color: #999; |
| 203 |
} |
| 204 |
} |
| 205 |
} |
| 206 |
|
| 207 |
.csf-nav{ |
| 208 |
|
| 209 |
ul{ |
| 210 |
|
| 211 |
li{ |
| 212 |
|
| 213 |
a{ |
| 214 |
font-weight: 500; |
| 215 |
color: #444; |
| 216 |
background-color: #f5f5f5; |
| 217 |
|
| 218 |
&:hover{ |
| 219 |
color: #111; |
| 220 |
background-color: #fff; |
| 221 |
} |
| 222 |
} |
| 223 |
|
| 224 |
.csf-active{ |
| 225 |
color: #111; |
| 226 |
background-color: #fff; |
| 227 |
} |
| 228 |
} |
| 229 |
|
| 230 |
ul{ |
| 231 |
|
| 232 |
li{ |
| 233 |
|
| 234 |
a{ |
| 235 |
background-color: #eee; |
| 236 |
} |
| 237 |
} |
| 238 |
} |
| 239 |
} |
| 240 |
} |
| 241 |
|
| 242 |
.csf-nav-normal{ |
| 243 |
|
| 244 |
> ul{ |
| 245 |
margin-right: -1px; |
| 246 |
margin-bottom: -1px; |
| 247 |
|
| 248 |
li{ |
| 249 |
|
| 250 |
a{ |
| 251 |
border-bottom: 1px solid #ccd0d4; |
| 252 |
border-right: 1px solid #ccd0d4; |
| 253 |
} |
| 254 |
|
| 255 |
.csf-active{ |
| 256 |
border-right-color: #fff; |
| 257 |
} |
| 258 |
} |
| 259 |
} |
| 260 |
} |
| 261 |
|
| 262 |
.csf-nav-inline{ |
| 263 |
background-color: #f5f5f5; |
| 264 |
border-bottom: 1px solid #ccd0d4; |
| 265 |
|
| 266 |
> ul{ |
| 267 |
margin-bottom: -1px; |
| 268 |
|
| 269 |
li{ |
| 270 |
|
| 271 |
a{ |
| 272 |
text-align: center; |
| 273 |
border-right: 1px solid #ccd0d4; |
| 274 |
border-bottom: 1px solid #ccd0d4; |
| 275 |
} |
| 276 |
|
| 277 |
.csf-active{ |
| 278 |
border-bottom-color: #fff; |
| 279 |
} |
| 280 |
} |
| 281 |
|
| 282 |
ul{ |
| 283 |
display: none !important |
| 284 |
} |
| 285 |
} |
| 286 |
|
| 287 |
.csf-arrow:after{ |
| 288 |
display: none; |
| 289 |
} |
| 290 |
} |
| 291 |
|
| 292 |
.csf-nav-background{ |
| 293 |
background-color: #f5f5f5; |
| 294 |
border-right: 1px solid #ccd0d4; |
| 295 |
} |
| 296 |
|
| 297 |
.csf-footer{ |
| 298 |
color: #555; |
| 299 |
border-top: 1px solid #ccd0d4; |
| 300 |
background-color: #f5f5f5; |
| 301 |
background: linear-gradient(#fafafa, #f5f5f5); |
| 302 |
} |
| 303 |
} |
| 304 |
|