-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
126 lines (107 loc) · 2.1 KB
/
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
:root {
--backcolor: #3c4c86;
}
body {
background-color: var(--backcolor);
font-family: Verdana, Geneva, Tahoma, Arial, sans-serif;
}
.header,
.header img {
font-family: pacifico;
text-align: center;
color: white;
margin: 0 auto;
}
.navigation {
padding: 10px;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
}
.navigation a {
margin-right: 10px;
color: white;
/* text-decoration: none; */
}
.navigation a:hover {
color: red;
}
.content {
margin: 20px auto;
padding: 20px;
margin: auto;
line-height: 1.5;
max-width: 920px;
/* Match header Image */
/* min-width: 5in; */
background-color: rgb(251, 250, 249);
font: black;
/* margin: 5px; */
}
.visage {
float: right;
margin-top: 90px;
width: 300;
height: 407;
}
.director {
color: blue;
cursor: pointer;
}
.dirmap {
border: 0;
}
#wpgmza_map {
display: block;
overflow: auto;
width: 400px;
height: 250px;
margin-left: auto;
margin-right: auto;
text-align: center;
}
/* For the table */
/* style.css */
.custom-table {
border-collapse: collapse;
/* border: 2px solid black; */
/* Adds a box around the table */
}
.custom-table td {
padding: 1px 4px;
/* Adjust padding as needed */
}
.custom-table th {
font-weight: bold;
/* Makes left column headers bold */
font-size: medium;
text-align: left;
}
.ed-title {
font-size: 1.0em;
font-style: italic;
font-weight: 300;
}
.content-head,
.content-phone {
color: #3c4c86;
font-size: 1.17em;
}
.hide {
display: none;
}
#site-info {
text-align: center;
color: white;
background-color: var(--backcolor);
padding: 10px;
font-size: 0.8em;
}
@media (max-width: 5in) {
.visage {
width: 25%;
height: 25%
}
}