-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
117 lines (97 loc) · 1.73 KB
/
Copy pathstyles.css
File metadata and controls
117 lines (97 loc) · 1.73 KB
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
/* Structure */
body {
background-color: #4169E1;
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
color:deepskyblue;
}
footer {
text-align: center;
}
a {
color:deepskyblue;
text-decoration: none;
}
#main-header {
text-align: center;
background-color: snow;
padding: 5px;
margin: 30px;
border: 5px solid deepskyblue;
}
.assignment {
margin: 10px;
padding: 40px 20px;
background: whitesmoke;
border-radius: 5px;
border: 5px solid deepskyblue;
}
.hidden {
display: none;
}
/* Images */
img {
max-width:80%;
background: lightcoral;
display:block;
margin: auto;
border: 5px solid deepskyblue;
}
/* Navigation */
#main-nav ul {
padding-left: 0px;
list-style: none;
}
#main-nav li {
padding: 10px;
margin: 20px;
border: 4px solid #4169E1;
}
#main-nav a {
text-decoration: none;
color:#4169E1;
}
#menu-items a {
border-bottom: 3px solid transparent;
}
#menu-items a:hover {
border-bottom: 3px solid deepskyblue;
}
#menu-items li {
text-align: center;
}
/* Typography */
h1, h2 {
color:#4169E1;
text-align: center;
}
p {
text-align: center;
}
/* Hamburger Menu */
#menu-toggle div {
width: 35px;
height: 5px;
background-color: black;
margin: 6px 0;
}
/* Larger Resolutions */
@media only screen and (min-width: 900px) {
.flex-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.assignment {
flex: 25%;
flex-grow: 0;
}
#menu-items {
display: flex;
}
#menu-items li {
flex: 1;
}
#menu-toggle {
display: none;
}
}