-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
118 lines (95 loc) · 2.05 KB
/
layout.css
File metadata and controls
118 lines (95 loc) · 2.05 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
110
111
112
113
114
115
116
117
118
:root {
--spacing-small: 5px;
--spacing-medium: 10px;
--spacing-large: 16px;
--font-family: -BlinkMacSystemFont,Segoe UI,Roboto,sans-serif;
--page-font-size: 15.6px;
--title-font-size: 22px;
--content-line-height: 27px;
--content-maxwidth: 900px;
}
.title {
font: 400 14px/28px Roboto,sans-serif;
font-size: 200%;
font-weight: bold;
margin: 10px 2px;
}
body {
font-size: var(--page-font-size);
color: var(--page-foreground-color);
background-color: var(--page-background-color);
}
body, div, p, dl, .title {
font-family: var(--font-family);
}
h1, h2, h3, h4, h5 {
margin-top: .9em;
font-weight: 600;
line-height: initial;
}
a{
text-decoration: none;
padding-bottom: 3px;
}
a:link {
color: var(--link-color);
}
a:visited {
color: var(--visited-color);
}
a:focus {
color: var(--focus-color);
border-bottom: 1px solid;
}
a:hover {
color: var(--hover-color);
border-bottom: 1px solid;
}
a:active {
color:var(--active-color);
}
p, div, table, dl {
font-size: var(--page-font-size);
}
#titlearea {
width: auto;
padding: var(--spacing-medium) var(--spacing-large);
background: none;
border-bottom: none;
color: var(--header-foreground);
}
div.header {
border-bottom: 1px solid var(--separator-color);
background-color: var(--page-background-color);
}
div.contents, div.header .title, div.header .summary {
max-width: var(--content-maxwidth);
}
div.contents, div.header .title {
line-height: initial;
margin: calc(var(--spacing-medium) + .2em) auto var(--spacing-medium) auto;
}
div.header .title {
font-weight: 600;
font-size: 210%;
padding: var(--spacing-medium) var(--spacing-large);
}
address.footer {
font-style: normal;
font-size: 38%;
text-align: right;
padding-right: 12px;
}
#logo {
vertical-align: middle;
left: 30%;
}
#logo img {
max-height: calc(var(--title-font-size) * 3);
margin-right: var(--spacing-small);
}
.slider_loc {
margin-left: auto;
margin-right: auto;
width: 8em
}