-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathc4_main.css
More file actions
48 lines (41 loc) · 720 Bytes
/
Copy pathc4_main.css
File metadata and controls
48 lines (41 loc) · 720 Bytes
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
/* global-color-1*/
:root{
--global-color-1: #800000;
}
/* the styles for the elements */
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 100%;
}
/* the styles for the header */
header img {
float: left;
}
/* the styles for the main content */
main {
clear: left;
}
main h1 {
font-size: 150%;
}
main h2 {
color: var(--global-color-1);
font-size: 170%;
text-indent: 30px;
}
main h3 {
font-size: 130%;
font-style: italic;
text-indent: 30px;
}
/* q7 italizes links when hovered over*/
header nav a:hover{font-style: italic;}
/* the styles for the footer */
footer p {
text-align: center;
margin-left: auto;
margin-right: auto;
}
.shadow{
text-shadow: 1px 1px var(--global-color-1);
}