blob: d09d76770633f3cf976543ba90d5c6ba204f305e (
plain)
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
|
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
background-color: #FBDEE3;
width: 800px;
margin: auto;
}
.header {
padding: 30px;
text-align: center;
font-size: 36px;
color: #222222;
text-shadow: 2px 2px #ADADAD;
}
#content {
margin-top: 90px;
}
h1 {
font-size: 30px;
margin-bottom: 30px;
margin-left: 10px;
}
h2 {
font-size: 26px;
margin-bottom: 30px;
margin-left: 10px;
text-decoration: underline;
}
p {
margin-bottom: 30px;
text-indent: 30px;
line-height: 24px;
}
img {
border: 1px solid black;
display: block;
margin: auto;
margin-bottom: 30px;
}
ul {
margin-bottom: 30px;
}
li {
list-style-type: square;
margin-left: 30px;
margin-bottom: 5px;
}
a {
text-decoration: none;
color: darkblue;
}
a:hover {
color: #4C4C80;
}
.contact {
background-color: #EEEEEE;
border-radius: 5px;
padding: 30px;
text-align: center;
color: #555555;
}
|