forked from philippejlyu/Programming-Club-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle404.css
91 lines (77 loc) · 1.27 KB
/
style404.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
body {
background-color: #FFF;
font-family: Helvetica, sans-serif;
}
/* Navigation Bar */
.navigation li {
margin-left: 0px;
margin-right: 0px;
padding: 10px 2px;
text-transform: uppercase;
display: inline;
float: right;
}
.navigation ul {
margin: 0;
padding: 0;
list-style-type: none;
}
.navigation a {
display: block;
text-align: center;
color: black;
padding: 14px 16px;
}
.navigation .logo {
display: block;
text-align: center;
padding: 0px 0px;
}
.navigation {
height: 60px;
width: 100%;
top: 0px;
left: 0px;
position: fixed;
z-index: 9999;
background-color: rgba(255, 255, 255, 0.99);
border-bottom: 1px solid darkgray;
}
/* change the color when the mouse hovers over a navigation bar button */
.navigation .button:hover {
background-color: lightgray;
}
/* Make the title go on the left side of the navi bar */
#title li {
float: left;
padding-left: 8px;
padding-top: 2px;
}
/* Empty Space */
.emptySpace {
height: 60px;
}
/* lost message */
.lostMessage h1 {
font-size: 100px;
margin-bottom: 0px;
}
.lostMessage h3 {
}
/* Footer */
.footer {
background-color: black;
height: 200px;
color: white;
width: 100%;
}
.footer a {
color: white;
}
.footer a:visited {
color: white;
}
.footer h3 {
padding-top: 30px;
padding-bottom: 20px;
}