-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.css
138 lines (115 loc) · 1.59 KB
/
homepage.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
132
133
134
135
136
137
138
body{
font-family: sans-serif;
}
a{
text-decoration: none;
}
#logo{
position: absolute;
left: 0;
top: 0;
}
nav ul{
position: fixed;
box-shadow: 0px 1px 4px #DEDEDE;
background-color: white;
left: 0;
right: 0;
top: 0;
z-index: 2;
}
#main-nav{
z-index: 1;
list-style: none;
margin: 0;
padding: 0;
position: fixed;
top: 0;
right: 0;
left: 0;
overflow: hidden;
}
#main-nav li{
letter-spacing: 1px;
float: left;
margin: 20px;
font-size: 17px;
padding-bottom: 1px;
}
nav ul a{
text-decoration: none;
color: black;
}
nav ul a:hover{
color: grey;
}
#homepage{
color: #004E64;
border-bottom: solid #00A5CF;
}
#nav{
width: 740px;
margin: 0 auto;
}
#vertical-nav{
position: fixed;
left: 0;
top: 0;
bottom: 0;
width: 20%;
background-color: #004E64;
}
#vertical-nav ul{
padding: 80px 10px;
list-style-type: none;
color: white;
}
#vertical-nav ul li a{
display: block;
text-decoration: none;
color: #00A5CF;
}
#vertical-nav ul li a:hover{
color: #9FFFCB;
}
p{
line-height: 1.6em;
margin-top: 30px;
margin-bottom: 30px;
font-size: 20px;
}
.indented{
margin-top: 5px;
margin-left: 20px;
}
.double-indented{
margin-left: 40px;
}
#container{
border: solid white;
width: 80%;
margin-left: 20%;
margin-top: 70px;
}
#container a{
color: #00A5CF;
}
#container a:hover{
color: #9FFFCB;
}
.buttons{
padding: 8px;
border: solid 1px;
color: #00A5CF;
}
#content{
//border: solid;
margin: 10px 100px 0 20px;
}
#content h1{
letter-spacing: 1px;
}
p{
line-height: 1.4em;
margin-bottom: 30px;
}