-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
35 lines (34 loc) · 925 Bytes
/
style.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
/* first container on the page, covers the main heading and sub heading */
header {
background-color: #012a4a;
margins: 5px;
border-radius: 5%;
padding: 2%;
}
/* heading 1 and 3 will have the same formatting */
h1, h3 {
text-align: center;
color: #a9d6e5;
font-family: Arial, Helvetica, sans-serif;
height: 40px;
}
/* headings 2, organized lists, unorganized lists, list items, and the main container will have the same formatting */
h2, ol, ul, li, main {
text-align: center;
background-color: #e3f2fd;
color: #012a4a;
list-style-position: inside;
}
/* the footer is small and centered with credit to the author */
footer {
background-color: #012a4a;
text-align: center;
color: #a9d6e5;
font-size: 12px;
padding: 2%;
}
/* pseudo links that apply to the links in the contact section of the HTML page */
a:link { color: #001233; }
a:visited { color: #64b5f6; }
a:hover { color: #0ead69; }
a:active { color: #03045e; }