-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomepage.css
95 lines (78 loc) · 1.69 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
body {
background-color: beige;
font-family: Georgia, "Times New Roman", Times, serif;
font-size: small;
margin: 0px;
margin-top: 0px;
position: relative; /* Jello layout */
}
.header {
margin-top: 0px;
margin: 10px;
}
.header1 {
font-size: 60px;
text-align: center;
text-shadow: 0px 0px 3px #FF0000;
margin-bottom: 0px;
}
#machoheader {
font-size: 20px;
text-align: center;
text-shadow: 0px 0px 3px #FF0000;
margin-bottom: 1%;
}
.header2 {
font-size: 20px;
text-align: center;
text-shadow: 0px 0px 3px #FF0000;
margin-bottom: 40px;
}
.footer {
text-align: center;
margin-top: 1.5%;
margin-bottom: 0.5%;
font-size: 0.75em;
}
#navhome {
margin: 10px 375px 0px 415px; /* All margins are different */
}
nav ul { /* Navigation Bar */
position: relative; /* Most css files will follow this page, meaning nav ul will retain a relative position */
list-style-type: none;
padding: 5px 0px 5px 0px;
}
nav ul li {
display: inline-block;
padding: 5px 25px 5px 20px;
}
a:link, a:visited {
text-decoration: none;
}
nav ul li a:link {
color: tomato; /* Default color for menu on this page */
border-bottom: none;
font-weight: bold;
text-shadow: 1px 1px 3px #e2c2c2;
text-transform: uppercase
}
nav ul li a:visited {
color: green; } /* Changes after visited */
nav ul li a:hover { /* Changes color when mouse hovers over link */
color: teal; }
li.selected, li:hover {
background-color: #c8b99c;
}
#hometransparentbox {
margin: 20px 180px;
padding: 1px;
background-color: #ffffff;
border: 1px solid black;
opacity: 0.8;
filter: alpha(opacity=60); /* For IE8 and earlier */
}
#hometransparentbox p {
margin: 1%;
font-weight: bold;
}
i { text-decoration: underline; }