-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
81 lines (61 loc) · 953 Bytes
/
Copy pathmain.css
File metadata and controls
81 lines (61 loc) · 953 Bytes
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
/**
* General styling
*/
body {
font-family: "Open Sans", sans-serif;
margin: 0;
}
h1, h2, h3 {
color: rgba(0, 0, 0, 0.64);
}
/* Figure stuff */
div.inlineFigure {
display: inline-block;
}
/* Table stuff */
table {
border-collapse: collapse;
}
th {
background-color: #f3f3f3;
font-style: bold;
}
td {
border-bottom: 1px solid #ddd;
}
th, td {
padding: 7px;
}
td.number {
text-align: right;
}
table.inlineTable {
display: inline-table;
margin: 7px;
}
table.small {
font-size: small;
}
/* Menu stuff */
.menu ul {
list-style-type: none;
margin: 0px;
padding: 0px;
overflow: hidden;
border: 1px solid #e7e7e7;
background-color: #f3f3f3;
}
.menu li {
float:left;
}
.menu li a {
display: block;
color: #666;
text-decoration: none;
text-align: center;
padding: 14px 16px;
}
div.content {
margin-left: 40px;
margin-right: 40px;
}