-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
163 lines (133 loc) · 2.76 KB
/
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
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap'); /* Headings */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap'); /* Paragraphs */
/* Meta */
html, body { margin: 20px; }
/* Text and Basic Decoration */
h1 { font-family: 'Oswald', sans-serif; color: #000;
font-size: 8mm;
text-align: center;
}
h2 { font-family: 'Oswald', sans-serif; color: #000; font-size: 8mm }
p { font-family: 'Open Sans', sans-serif; color: #000; }
ul li { font-family: 'Open Sans', sans-serif; color: #000; list-style: none; }
/* Article Decoration */
article {
margin-left: 2%;
margin-right: 2%;
}
body{
background: repeating-linear-gradient(114deg, #209a01, #00a6f5 2px)
}
/* Navigation Bar */
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
border: 1px solid #000000;
background-color: #a5ffd5;
display: flex;
justify-content: space-around;
}
li a {
display: block;
color: black;
text-align: center;
padding: 14px 60px;
text-decoration: none;
font-family: 'Aleo', serif;
text-emphasis-style: strong;
border-radius: 5px;
}
li a:hover {
text-decoration: underline;
transition: all ease 0.7s;
border-radius: 10px;
color: black;
}
nav ul li {
float: left;
}
nav ul li a {
display: block;
color: black;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-family: 'Open Sans', sans-serif;
}
nav ul li a:hover { text-decoration: underline; }
.active { text-decoration: underline; }
/* Gonna organize */
article{
text-align: center;
padding-bottom: 5px;
/* background-color: lightgray; */
max-width: 1000px;
align-self: center;
margin-right: -150px;
display: contents;
}
/* Heading */
.brand {
font-size: 45px;
}
.header-text{
font-size: 5rem;
color: white;
background-color:rgba(0,0,0,0.5);
text-shadow: black 0px 5px 0;
text-align: center;
}
.header-bg{
background-image: url(Images/Rutland_headerTXT.jpg);
background-position: center center;
display: block;
background-size: cover;
padding: 20px;
margin: 40px;
}
/* Distribution Schedule Table */
table, th, td {
border: 1px solid black;
border-collapse: collapse;
padding: 5px;
max-width: 1000px;
min-width: 50%;
}
#t01 {
border-spacing: 15px;
margin: auto;
}
#t01 tr:nth-child(even) {
background-color: #eee;
}
#t01 tr:nth-child(odd) {
background-color: #fff;
}
#t01 th {
color: white;
background-color: black;
}
#t02 {
background-color: #f1f1c1;
text-align: center;
}
#t03 {
background-color: gray;
text-align: center;
}
googleMap{
margin: auto;
}
img{
max-width: 800px;
margin: auto;
display: block;
}
footer{
background-color: #3FD491;
margin: auto;
width: fit-content;
}