-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
executable file
·105 lines (81 loc) · 1.41 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
@font-face {
font-family: 'vanilla';
src: url('./media/Vanilla-webfont.ttf');
}
@font-face {
font-family: 'whitehall';
src: url('./media/whitehall.otf');
}
body {
background-color: #9ED54C;
}
#wrap {
width: 700px;
margin-left: auto; margin-right: auto;
}
/* Header */
h1 {
font-family: vanilla;
margin-top: 30px;
}
h2 {
font-family: vanilla;
}
#header {
}
/* Navigation */
#navigation {
position: relative;
left: 51px;
bottom: 38px;
float: right;
}
.nav-title div {
position: relative;
float: left;
}
.nav-list a {
text-decoration: none;
color: #515151;
font-size: 14pt;
font-family: whitehall;
position: relative;
bottom: 3px;
right: 21px;
}
.nav-list-footer a {
text-decoration: none;
color: #515151;
font-size: 10pt;
font-family: sans-serif;
}
.nav-list a:hover {
color: #05A9A5;
}
.nav-list-footer a:hover {
color: #05A9A5;
}
.nav-list li {
display: inline;
margin-right: 40px;
border-right: 1px dashed #000000;
}
.nav-list li:last-child {
border: none;
}
.nav-list-footer li {
display: inline;
}
#navigation-footer {
position: relative;
float: right;
margin-right: 10px;
}
#content div {
border-radius: 15px;
border: 2px solid #C4ED68;
padding: 25px;
margin-top: 40px;
background-color: #E2FF9E;
box-shadow: 5px 5px 2px #444;
}