-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommon.css
More file actions
95 lines (74 loc) · 1.65 KB
/
common.css
File metadata and controls
95 lines (74 loc) · 1.65 KB
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
/* Common Styles */
.warn {
color: orange;
font-weight: bolder;
}
body {
margin: 2em;
background-color: ivory;
position: relative;
}
.title {
font-size: xx-large;
font-weight: bold;
margin-bottom: 1em;
text-align: center;
}
.subtitle {
font-size: large;
font-weight: bold;
margin-bottom: 1em;
text-align: center;
}
.introduction {
font-size: x-large;
margin-top: 1em;
margin-bottom: 1em;
padding: 1em;
background-color: white;
border: thin solid orange;
-moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;
box-shadow: 5px 5px 5px gray; -webkit-box-shadow: 5px 5px 5px gray; -moz-box-shadow: 5px 5px 5px gray;
}
.section {
font-size: large;
margin-top: 1em;
margin-bottom: 1em;
padding: 1em;
background-color: white;
border: thin solid gray;
-moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;
box-shadow: 5px 5px 5px gray; -webkit-box-shadow: 5px 5px 5px gray; -moz-box-shadow: 5px 5px 5px gray;
}
.section .heading {
color: #248;
font-weight: bold;
border-bottom: thin solid #88f;
margin-bottom: 0.5em;
}
ul { margin: 0 0 0 1em; padding-left: 1em; }
table.data {
background-color: #EEE;
border-collapse: collapse;
}
table.data th, table.data td {
margin: 5px; border-style: solid;
border-width: 1.0px;
border-color: black;
padding-left: 10px;
padding-right: 10px;
}
table.data th {
padding-left: 2em;
padding-right: 2em;
background-color: #CCC;
}
table.data td.numeric {
text-align: right;
color: maroon;
padding-left: 2em;
}
table.data td.plain {
margin: 0px;
border-style: none;
}