-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
119 lines (98 loc) · 2.36 KB
/
styles.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
P {
font-family:Arial; color:#FF9900; line-height: 150%
}
BODY {
background-color:#999999; padding: 0; margin: 0;
}
TD {
background-color:#FFFFFF; font-size: 15pt; padding-top:5px; padding-left:10px; padding-right:10px
}
TH {
background-color:#FFCC66; color:#FFFFFF; font-size: 20pt; padding-top:5px; padding-left:10px; padding-right:10px
}
TABLE {
margin:auto
}
/*begin special classes*/
p.caps {
text-transform:uppercase; font-weight:bold; font-size:25pt; text-align:center;
}
.indent {
text-indent:50px;
}
/*so far just used in "bio"*/
.first {
margin:auto;
}
.photobanner {
height: 2px;
width: 100%;
text-align: center;
margin-top: 30px;
}
.container1 {
width: 100%;
height:300px; /*sets size of entire "header", coupled with above "photobanner" text-align tag keeps the header centered*/
position:absolute;
top: -2;
left-margin: 50%;
}
.photobanner img {
height: 300px;
border:1.5px solid:#e68a00;
} /* sets size of pictures*/
/* end just used in bio*/
/*begin navigation panel styles*/
#wrap {
width: 100%;
height: 50px;
margin: 0;
z-index: 99;
position: relative;
background-color: #4d4d4d;
}
.navbar {
height: 50px;
padding: 0;
margin: auto;
position: absolute;
border-right: 1.5px solid #e68a00;
border-left: 1.5px solid #e68a00;
}
.navbar li {
height: auto;
width: 200px;
float: left;
text-align: center;
list-style: none;
font: normal bold 12px/1.2em Arial, Verdana, Helvetica;
padding: 0;
margin: 0;
background-color: #4d4d4d;
}
.navbar a {
padding: 18px 0;
border-left: 1px solid #ffa11a;
border-right: 1px solid #e68a00;
text-decoration: none;
color: white;
display: block;
}
.navbar li:hover, a:hover {background-color: #999999;}
.navbar li ul {
display: none;
height: auto;
margin: 0;
padding: 0;
}
.navbar li:hover ul {
display: block;
}
.navbar li ul li {background-color: #4d4d4d;}
.navbar li ul li a {
border-left: 1px solid #e68a00;
border-right: 1px solid #e68a00;
border-top: 1px solid #ffa11a;
border-bottom: 1px solid #e68a00;
}
.navbar li ul li a:hover {background-color: #999999;}