aboutsummaryrefslogtreecommitdiff
path: root/static/styles.css
blob: c1313da85d2e095b0533fb857d48092e1a0c2be1 (plain)
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
/* this is a template file that gets formatted by python str.format()
 * so these double-braces get interpreted to just single ones.
 */
/* Author: W.S. Toh */
/* SPDX-License-Identifier: MIT */
#main {
   float: left;
   margin: 0 0 2em 4em;
   padding-bottom: 4em;
   width: auto;
}

#header_sub { margin-left: 6em; }
#sidebar {
   /*float: right;*/
   padding: 0 2.5em 2.5em 0;
   position: fixed;
   top: 0px;
   right: 0px;
   background-color: #eee;
   border-style: dashed;
   border-width: 0px 0px 1px 1px;
   border-color: #ddd;
}
footer {
   position: fixed;
   text-align: center;
   bottom: 0;
   width: 100%;
   padding: 0.25em;
   background: #f5f5f5;
}

pre {
   background-color: #ddd;
}

body, input, select, textarea {
	font-size: 10pt;
}
.box {
   height: 0;
   display: none;
   transition:all 0.8s linear;
}
input:checked ~ .box {
   display: inline;
}

label#toggle {
   font-size: 80%;
   cursor: pointer;
   color: blue;
   text-decoration: underline;
}

bgstack15