-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
109 lines (92 loc) · 1.7 KB
/
layout.css
File metadata and controls
109 lines (92 loc) · 1.7 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
101
102
103
104
105
106
107
108
109
@font-face {
font-family: 'Lora';
font-style: normal;
font-weight: normal;
src: url('/media/lora-regular.woff') format('woff');
}
@font-face {
font-family: 'Lora';
font-style: italic;
font-weight: normal;
src: url('/media/lora-italic.woff') format('woff');
}
@font-face {
font-family: 'Lora';
font-style: normal;
font-weight: bold;
src: url('/media/lora-bold.woff') format('woff');
}
html {
padding:0px;
margin:0px;
}
body {
background-color: #ffffff;
font-family: 'Lora', Verdana, Arial, SunSans-Regular, Sans-Serif;
color:#000000;
padding:0px;
margin:0px;
}
header {
display: grid;
grid-template-columns: 120px auto;
align-items: center;
padding: 15px 20px;
border-bottom: 3px solid #6f79ae;
}
header img {
grid-column-start: 1;
}
h1 {
grid-column-start: 2;
font-size: 2.5em;
line-height: 1.25em;
margin: 0;
}
h3 {
font-family: Helvetica, Arial, sans-serif;
}
header div {
grid-column-start: 2;
}
a:visited {
color: purple;
text-decoration: none;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#content {
margin-right: 20px;
margin-left: 20px;
max-width: 800px;
padding: 0px;
background-color: #ffffff;
}
#left {
position: absolute;
left: 0px;
width: 190px;
color: #564b47;
margin: 0px;
padding: 0px;
}
#right {
position: absolute;
right: 0px;
width: 190px;
color: #564b47;
margin: 0px;
padding: 0px;
}
#footer {
margin-right: auto;
border-top: 1px solid black;
background-color: #ccc;
font-size: 0.8em;
margin-top: 40px;
text-align: center;
}