forked from cs3041-d22/lab1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (59 loc) · 1.26 KB
/
Copy pathstyle.css
File metadata and controls
63 lines (59 loc) · 1.26 KB
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
header {
font-family: Futura, Trebuchet MS;
font-weight: bold condensed;
color: #AC2B37;
font-size: 25px;
padding: 8px;
}
body {
font-family: Times, "Times New Roman", Georgia, serif;
font-weight: bold condensed;
color: #A9B0B7;
font-size: 15px;
}
h1 {
font-family: cursive;
font-weight: bold condensed;
color: #000000;
font-size: 20px;
padding: 2px;
}
#content {
padding:3px;
}
p{
padding: 5px;
}
#WPI{
/*center the image*/
display: block;
width: 50%;
margin-left: auto;
margin-right: auto;
}
#main_nav ul { padding: 0; margin: 0; }
#main_nav li {
list-style-type: none; /* remove bullet points */
}
#main_nav li a {
display: block;
text-decoration: none; /* remove underline */
border-radius: 10px; /* rounded corners */
margin: 6px;
padding: 9px;
color: #222;
font-weight: bold;
/* nice gradient shade on the buttons */
background-image: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
border: 1px solid #666; /* dark outline */
}
nav li:active {
background-color: #ccc;
background-image: none;
box-shadow: inset 0 3px 3px rgba(0, 0, 0, .2);
}
footer{
font-style: italic;
color: black;
font-size: 10px;
}