-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
131 lines (109 loc) · 1.62 KB
/
style.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
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
body {
font-family: "DejaVu Sans";
line-height: 18px;
font-size: small;
padding: 0px;
margin: 0px;
background: dimgrey;
}
#wrapper {
background: white;
margin: 0px;
padding: 0px;
width: 900px;
margin: 0px auto;
box-shadow: 2px 2px 10px 0px;
}
header h1 {
font-family: "Atlantic Inline";
margin: 0px;
padding: 20px;
text-align: center;
font-size: xx-large;
text-shadow: 2px 2px #ccc;
}
section header h2 {
margin-top: 0px;
font-size: x-large;
font-family: "Francois One";
}
nav {
background: black;
color: white;
}
nav ul {
list-style: none;
margin: 0px;
padding: 0px;
overflow: auto;
}
nav ul li {
float: left;
padding: 0px;
}
nav a {
font-family: tahoma;
text-decoration: none;
color: #ccc;
font-size: medium;
padding: 10px 15px;
display: block;
font-weight: bold;
}
nav a:hover {
color: #eee;
}
body#home nav li a#home,
body#as nav li a#as,
body#ktm nav li a#ktm,
body#projects nav li a#projects,
body#contact nav li a#contact {
font-weight: bold;
color: white;
}
section#main {
padding: 20px;
}
figure#as {
float: right;
margin: 10px;
}
figure#coverpic {
margin: 10px;
}
figure#coverpic img {
width: 100%;
}
footer {
background: silver;
text-align: center;
padding: 10px;
}
textarea.commentbox {
width: 300px;
height: 100px;
}
textarea {
font-family: sans-serif;
font-size: small;
}
a {
text-decoration: underline;
color: blue;
}
a:hover {
text-decoration: none;
}
form#contactform label {
display: block;
}
form#contactform div {
margin-top: 10px;
}
form#contactform input[type="email"] {
width: 300px;
}
form#contactform textarea#message {
width: 300px;
height: 200px;
}