-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (76 loc) · 1.51 KB
/
Copy pathstyle.css
File metadata and controls
86 lines (76 loc) · 1.51 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body{
/* Change background color */
background-color: #808080;
}
#content {
/* Change content color */
background-color: #e5e0e0;
/* Make content pop out */
border-style: outset;
/* Add space between content and navigation bar */
margin-top: 10px;
}
/* Change outline when hovering */
#content:hover{
border-style: inset;
margin-top: 10px;
}
/* Create a margin between text and content div*/
#content p{
margin-left: 5px;
}
#header{
/* Put the header div in the middle */
text-align: center;
}
#header iframe{
/* Hide iframe border and set width and height */
margin: 0;
padding: 0;
border: none;
height: 60px;
width: 100%;
}
#navigation ul{
/* Remove styles from ul in div navigation */
list-style-type: none;
margin: 0;
padding: 0;
/* Change navigation background color */
background-color: #333;
}
#navigation li{
/* Hide list styles*/
float: left;
padding: 14px 16px;
}
#navigation a{
/* Change the styles of links */
display: block;
color: white;
text-align: center;
text-decoration: none;
}
#navigation li:hover {
/* Change background color of p.outline{
60
border-style: outset;
61
}links when hovering over them */
background-color: #111;
}
/* Created a title outline using outset; Created a paragraph outline using outset */
p.outline {
font-family: Courier;
font-weight: bold;
/*border-style: outset;
border-top-color: #ff0000*/
}
/* Make all links blue*/
a:visited {
color: blue;
}
/* Change link color when hovering*/
a:hover{
color: red;
}