-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
147 lines (142 loc) · 2.46 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/*Page-wide styling----------------------------------------------*/
* {
box-sizing: border-box;
}
body {
font-family: "Verdana";
background-color: #464646;
padding: 0px;
margin: 0px;
}
/*Styling for title block--------------------------------------*/
header {
background-color: #0d4f77;
padding: 10px;
font-size: 25px;
}
h1 {
padding: 0px;
margin-top: 10px;
margin-bottom: 0px;
}
#title1 {
color: #ee8021;
margin-left: 5px;
}
#title2 {
color: white;
}
#subtitle {
color: white;
font-size: 18px;
margin-left: 5px;
}
/*Styling for main navigation menu--------------------------------*/
aside {
background-color: #0b3650;
color: white;
font-size: 15px;
float: left;
width: 20%;
height: 700px;
font-size: 15px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 100%;
}
li a {
display: block;
padding: 15px;
color:white;
text-decoration: none;
}
li a:hover {
background-color: #2c9acb;
margin-left: 0px;
}
.current_page {
background-color: #2c9acb;
}
/*Styling for body of content----------------------------------------*/
section {
background-color: LightBlue;
color: black;
padding: 15px;
overflow: auto;
float: left;
width: 80%;
font-size: 16px;
}
#home_div {
margin-top: 20px;
margin-bottom: 20px;
}
/*Flex container-------------------------------------------------------*/
.flex-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: baseline;
}
.flex-container > div {
color: LightBlue;
font-size: 15px;
text-align: center;
line-height: auto;
width: 174px;
height: 142px;
margin: 10px;
padding: 0px;
border: 2px solid LightBlue;
}
.flex-container > div:hover {
color: black;
border: 2px solid #2c9acb;
}
.thumbnail {
width: 170px;
}
/*Styling for external links in footer---------------------------------*/
footer {
background-color: #464646;
color: white;
padding: 10px;
text-align: center;
overflow: auto;
font-size: 20px;
}
nav {
background-color: #464646;
}
.bottom_nav_elements {
background-color: #464646;
color: white;
padding-top: 8px;
padding-bottom: 8px;
}
.icon {
height: 21px;
}
/*Media query to change element layout--------------------------------*/
@media (max-width: 2000px) {
aside, section {
height: 800px;
}
}
@media (max-width: 815px) {
aside, section {
height: 1000px;
}
}
.longpage {
height: 1300px;
}
@media (max-width: 600px) {
aside, section, .longpage {
width: 100%;
height: auto;
}
}