-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsproject_html.css
More file actions
100 lines (85 loc) · 1.71 KB
/
Copy pathsproject_html.css
File metadata and controls
100 lines (85 loc) · 1.71 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
96
97
98
99
100
body {
margin: 3ex;
font-family: sans-serif;
color: black;
background: white;
background-position: top left;
background-attachment: fixed;
background-repeat: no-repeat;
}
:link { color: #00C; background: transparent }
:visited { color: #00C; background: transparent }
a:active {
color: #00C;
font-weight: bolder;
background: transparent;
}
h1, h2, h3, h4 {
color: #005A9C;
background: white
}
h1 {
font: bold 170% sans-serif;
text-align: center;
}
h2 { font: bold 140% sans-serif }
h3 { font: bold 120% sans-serif }
h4 { font: bold 100% sans-serif }
h2 h3 h4 {
text-align: left;
margin-left: 5ex;
margin-right: 5ex;
margin-top: 0;
margin-bottom: 0;
}
h3[class=course] {
text-align:right;
}
p {
display: block;
margin: 1.33ex 1.33ex 1.33ex 1.33ex}
p[class=declaration] {
font: 0.7em sans-serif;
text-align: center;
margin: 1.33ex 1.33ex 1.33ex 1.33ex;
background-color: #DDC5C5;
padding: 2ex;
}
p[class=ra] {
white-space: pre;
font: 125% monospace;
margin: 1.33ex 0;
background-color: #FFEEEE;
border: thin solid gray;
padding: 2px;
}
p[class=sql] {
white-space: pre;
font: 125% monospace;
margin: 1.33ex 0;
background-color: #EEEEEE;
border: thin solid gray;
padding: 2px;
}
p[class=comment] {
white-space: pre;
font-style: italic;
margin: 1.33ex 0;
color: maroon;
background-color: silver;
border: thin solid gray;
padding: 2px;
}
table {
display: table;
border: solid;
border-width: 0.1ex;
padding: 0;
background-color: silver;
}
td {
display: table-cell;
border-style: solid;
border-width: 0.1ex;
padding: 0.5ex;
}