Show sourcecode
The following files exists in this folder. Click to view.
webbserverprogrammering/style/
stylesheet.css
162 lines ASCII Windows (CRLF)
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/* general
--------------------------------------------------------
*/
body {
margin: 0;
padding: 0;
}
body {
background: #fff;
font-family: Helvetica, sans-serif;
color: #333;
}
h1,
h2 {
border-bottom: 1px solid #dddddd;
}
img {
border: 0;
}
/* page structure
--------------------------------------------------------
Layout and size of header, content and footer
*/
/* set width and center page */
header#top,
div#content {
margin: 0 auto;
width: 960px;
}
/* add common padding to main content block */
div#content {
padding: 1em 0 1em 0;
}
/*two columns */
article {
width: 730px;
float: left;
}
aside {
float: left;
width: 230px;
}
/* footer */
footer#bottom {
font: normal 0.8em Arial, Helvetica, sans-serif;
color: #4D4D4D;
padding: 10px 10px 20px 10px;
margin: 0 auto;
width: 940px;
background: #aaa;
}
/* the log text */
.logga {
font-family: helvetica, sans-serif;
font-size: 60px;
font-weight: bold;
}
/* clearer fix */
div#content {
overflow: auto;
}
/* always show scrollbar to the right */
body {
overflow-y: scroll;
}
/* a links
--------------------------------------------------------
*/
a {
color: black;
}
a:hover {
text-decoration: none;
color: #cc2222;
}
/* navigation menu
--------------------------------------------------------
*/
nav.navmenu {
font-family: arial;
font-weight: bold;
padding: 12px 12px;
background: #656565;
border: 2px solid #858585;
}
nav.navmenu a {
padding: 10px 12px;
text-decoration: none;
border: 2px solid transparent;
color: #fff;
}
nav.navmenu a:hover {
background: rgba(150, 150, 150, 1.0);
border: 2px solid #fff;
}
/* figure & figcaption
--------------------------------------------------------
*/
figure {
border: 1px solid #E6E6E6;
padding: 4px;
margin: 1em;
background-color: white;
}
figcaption {
font-style: italic;
font-size: smaller;
padding-left: 1em;
}
figure.right {
margin-right: 1em;
}
figure.top {
margin-top: 0;
}
/* Misc classes
--------------------------------------------------------
*/
.right {
float: right;
}
.left {
float: left;
}
/* highlight current choice in navigation menu
--------------------------------------------------------
*/
body#start a#start-,
body#comments a#comments-,
body#exercises a#exercises-,
body#viewsource a#viewsource- {
background: rgba(255, 255, 255, 1.0);
border: 2px solid #656565;
color: #000;
}