-
Notifications
You must be signed in to change notification settings - Fork 4
/
mw_styles.css
112 lines (86 loc) · 1.54 KB
/
mw_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
@charset "utf-8";
/*
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 2
Case Problem 2
Bike the Mountains Tour Style Sheet
Author: Hesbon Osoro
Date: 12/6/22
Filename: mw_styles.css
*/
/* Structural Styles */
html {
background-color: rgb(173, 189, 227);
}
body {
background-color: rgb(227, 210, 173);
font-family: "Century Gothic", sans-serif;
}
footer {
background-color: rgb(208, 184, 109);
padding: 5px 0;
}
address {
font-style: normal;
font-size: 0.9em;
text-align: center;
padding: 10px 0;
}
/* Heading Styles */
h1,
h2 {
font-weight: normal;
}
/* Navigation Styles */
nav > ul {
list-style-type: none;
line-height: 2em;
font-size: 0.9em;
}
nav > ul > li > a:link,
nav > ul > li > a:visited {
text-decoration: none;
color: rgb(43, 59, 125);
}
nav > ul > li > a:hover,
nav > ul > li > a:active {
color: rgb(212, 35, 35);
}
/* Article Styles */
article h1 {
font-size: 2.2em;
letter-spacing: 0.2em;
}
article p {
font-size: 1.1em;
}
#tour_summary > p:first-of-type:first-line {
font-size: 1.2em;
font-variant: small-caps;
}
/* Aside Styles */
#tour_itinerary h1 {
font-size: 1.2em;
}
#tour_itinerary h2 {
font-size: 0.9em;
}
#tour_itinerary p {
font-size: 0.8em;
}
h2:nth-of-type(2n-1),
p:nth-of-type(2n-1) {
color: rgb(79, 91, 40);
}
h2:nth-of-type(2n),
p:nth-of-type(2n) {
color: rgb(81, 95, 175);
}
/* Blockquote Styles */
blockquote {
background-color: rgb(173, 189, 227);
color: rgba(255, 255, 255, 0.65);
}
blockquote p {
padding: 2.5px 10px;
}