forked from beaker-project/beaker-project.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
129 lines (123 loc) · 2.49 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
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
125
126
127
128
129
@import url("http://fonts.googleapis.com/css?family=Cabin:400,700");
body {
line-height: 1;
background: url("images/fabric_plaid.png");
font-family: Cabin, Cantarell, "Liberation Sans", sans-serif;
color: #666;
margin: 0;
}
/* div.line-block is a Sphinx thing */
p, ul, ol, dt, dd, th, td, div.line-block {
line-height: 1.5em;
color: #777;
}
p, li {
text-align: justify;
}
a {
text-decoration: none;
color: #69c;
}
a:hover {
border-bottom: 1px dotted #69c;
}
img {
border: none;
}
hr {
border-top: none;
border-left: none;
border-right: none;
border-bottom: 2px dotted #ddd;
}
table {
border: 1
}
code, tt {
font-family: "Luxi Mono", monospace;
/* The ex-height ratio on monospace faces is generally much larger than
* that of our body font, so let's scale them down to match better. */
font-size: 0.9em;
}
pre {
line-height: 1.4em;
padding: 1.25em;
border-radius: 1em;
background: rgba(255,255,255,0.3);
overflow: auto;
}
article, section {
margin-bottom: 2em;
clear: both;
}
h1 {
text-align: center;
font-size: 2em;
padding-bottom: 0.5em;
border-bottom: 2px dotted #ddd;
}
h2 {
font-size: 1.5em;
}
nav#TOC {
border-bottom: 2px dotted #ddd;
}
.headerlink {
font-size: 0.75em;
font-weight: normal;
}
.header {
background:url("images/rubber_grip.png");
padding-top:10px;
padding-bottom:10px;
box-shadow: 0 1px 0 #aaa,0 0 15px #444;
}
.body_element {
max-width: 80ex;
margin-left:auto;
margin-right:auto;
padding: 0 0.5em;
position:relative;
}
.header .title {
display:inline-block;
}
.header .title a:hover {
border: none;
}
.menu {
display: inline-block;
position:absolute;
right:0;
top:12px;
font-weight:bold;
font-size:14px;
line-height:14px;
}
.menu a {
padding:4px 20px 8px 20px;
margin-left:5px;
border-radius:15px;
color:#ddd;
text-decoration:none;
}
.menu a:hover {
border:none;
background-color:#000;
color:white;
box-shadow: 0 -1px 0 #777 inset,0 1px 0 #111 inset,0 -15px 15px rgba(0,0,0,0.3) inset;
}
.menu a.active {
background-color:#3764a5;
color:white;
box-shadow: 0 1px 0 #777 inset,0 -1px 0 #111 inset,0 -15px 15px rgba(0,0,0,0.3) inset;
}
.main_content {
margin-top: 2em;
clear: both;
}
/* Override the CSS rule from Pygments (used by Sphinx for highlighted code
* blocks) that uglifies our code blocks: */
.highlight {
background: none !important;
}