-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathscreen.css
More file actions
107 lines (95 loc) · 1.74 KB
/
screen.css
File metadata and controls
107 lines (95 loc) · 1.74 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
html {
-webkit-text-size-adjust: none;
}
body {
color: #222;
background-color: rgb(242, 242, 242);
text-align: center;
font-family: Helvetica, Arial, sans-serif;
max-width: 75em;
line-height: 1.2;
margin: 0 auto 1em auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
-o-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
}
a:active {
color: #000099;
}
a:link {
color: #000099;
}
a:visited {
color: #990099;
}
ul {
margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0.875rem;
margin-bottom: 0.875rem;
line-height: 1.1;
}
/*** HEADER ***/
#header #mainlinks {
position: fixed;
top: 0;
width: 100%;
padding: 0;
}
#header #mainlinks ul {
padding: 0;
margin: 0;
}
#header #mainlinks li {
display: inline-block;
font-size: 0.9em;
background-color: #FFF6D4;
box-shadow: 0em 0em 1em #FFF6D4, 1px 1px 5px #FFF6D4;
}
#header #mainlinks a {
font-size: 1.2em;
text-decoration: none;
display: block;
text-decoration: none;
color: #564b47;
padding: 0 0.4em;
margin: 0 0.1em;
}
#header #mainlinks a:hover {
text-shadow: #FFF 0 0 0.5em;
color: #336D9C;
}
p#title_sub {
font-family: Arial Narrow;
font-weight: bold;
color: rgb(153, 153, 153);
}
/*** CONTENT ***/
#content {
width: 74%;
border-color: rgb(255, 247, 200);
border-style: solid;
border-width: 5px;
margin-left: auto;
margin-right: auto;
padding: 1em;
padding-left: 1.5em;
padding-right: 2em;
text-align: justify;
background-color: #FFFFFF;
}
.centered {
text-align: center;
}
/*** FOOTER ***/
#footer{
padding-top: 1em;
text-align: center;
font-family: Helvetica,Arial,sans-serif;
font-weight: bold;
color: rgb(102, 102, 102);
font-size:0.7em
}