-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
66 lines (61 loc) · 1.13 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
---
---
{% if jekyll.version %}
{% else %}
{% capture more_content_for_css %}{{ content_for :css }}{% endcapture %}
{% endif %}
.deck-container .theme-menu {
display: none;
position: fixed;
z-index: 3;
bottom: 10px;
left: 10px;
height: 20px;
line-height: 20px;
padding: 5px;
border: 1px solid #ddd;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
overflow: hidden;
background: #fff;
font-family: sans-serif;
color: #888;
}
.js .deck-container .theme-menu {
display: block;
}
.deck-container .theme-menu h2 {
float: left;
font-size: 20px;
border: 0;
padding: 5px 10px;
margin: 0;
height: 20px;
position: relative;
top: -5px;
left: -5px;
background: #ccc;
color: #444;
text-shadow: none;
font-family: sans-serif;
font-weight: bold;
}
.deck-container .theme-menu label {
float: left;
display: block;
font-size: 12px;
vertical-align: baseline;
margin: 0 4px 0 15px;
}
.deck-container .theme-menu select {
float: left;
display: block;
font-size: 14px;
}
@media print {
.theme-menu {
display: none !important;
}
}
{{ more_content_for_css }}