forked from matrix-org/matrix.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.css
93 lines (80 loc) · 1.42 KB
/
site.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
/** Common layout **/
html {
height: 100%;
}
body {
height: 100%;
font-family: "Open Sans", Helvetica, Arial, sans-serif ! important;
font-size: 12pt;
margin: 0px;
}
h1 {
font-size: 20pt;
}
a:link { color: #666; }
a:visited { color: #666; }
a:hover { color: #000; }
a:active { color: #000; }
#page {
min-height: 100%;
margin-bottom: -32px; /* to make room for the footer */
}
#wrapper {
margin: auto;
max-width: 1280px;
padding-top: 40px;
padding-bottom: 40px;
padding-left: 20px;
padding-right: 20px;
}
#header
{
position: fixed;
top: 0px;
width: 100%;
background-color: #000;
min-height: 40px;
}
.navButton {
font-size: 20px;
font-weight: bold;
padding: 10px 20px 10px 20px;
text-decoration: none ! important;
}
#header .navButton {
color: #fff ! important;
}
#headerContent {
/*
color: #ccc;
text-align: right;
*/
text-align: center;
max-width: 1280px;
margin: auto;
min-height: 40px;
line-height: 40px;
}
#headerContent a:link,
#headerContent a:visited,
#headerContent a:hover,
#headerContent a:active {
color: #fff;
}
#footer
{
width: 100%;
border-top: #666 1px solid;
background-color: #aaa;
height: 32px;
}
#footerContent
{
font-size: 8pt;
color: #fff;
max-width: 1280px;
margin: auto;
text-align: center;
height: 32px;
line-height: 32px;
}