-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlayout.css
122 lines (103 loc) · 1.85 KB
/
layout.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
body {
margin: 0;
font-family: 'Droid Serif', serif;
}
#layout-menu-box {
position: fixed;
left: 0px;
top: 0px;
width: 210px;
height: 100%;
z-index: 0;
background-color: #f4f4f4;
}
#layout-content-box {
position: relative;
margin-left: 210px;
background-color: white;
}
h1 {
margin-top: 0.5em;
}
h2{
font-family: 'Droid Sans', sans-serif;
}
h3{
font-family: 'Droid Sans', sans-serif;
font-style: italic;
}
#layout-banner {
color: white;
background-color: #667ea8;
text-align: left;
padding: 0.8em 20px;
}
#layout-title {
font-size: 3.5em;
font-weight: bold;
letter-spacing: 0.2em;
margin: 0;
font-family: 'Droid Sans', sans-serif;
}
#layout-description {
font-size: 1.2em;
letter-spacing: 0.1em;
}
div.workshop-menu{
margin-bottom: 10px;
}
#layout-menu {
height: 100%;
border-right: 3px solid #eeeeee;
padding-top: 0.8em;
padding-left: 15px;
padding-right: 0.8em;
font-size: 1.0em;
font-family: Arial,Helvetica,sans-serif;
font-weight: bold;
}
#layout-menu ul {
margin: 0;
padding: 0;
list-style-type: none;
}
a {
color: #667ea8;
text-decoration: none; border-bottom:1px dotted;
}
a:hover {
color:navy;
}
#layout-menu a {
line-height: 2em;
margin-left: 0.5em;
}
#layout-menu a:link, #layout-menu a:visited, #layout-menu a:hover {
color: #667ea8;
text-decoration: none; border-bottom:1px dotted;
}
#layout-menu a:hover {
color: navy;
text-decoration: none;
}
#layout-menu #page-source {
border-top: 2px solid silver;
margin-top: 0.2em;
}
#layout-content {
padding-top: 0.2em;
padding-left: 1.0em;
padding-right: 0.4em;
width: 650px;
}
p {
line-height:1.4;
}
td.content {
line-height:1.4;
}
@media print {
#layout-banner-box { display: none; }
#layout-menu-box { display: none; }
#layout-content-box { margin-top: 0; margin-left: 0; }
}