-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
154 lines (150 loc) · 2.87 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
148
149
150
151
152
153
154
body {
background: black;
color: white;
}
.headshot img {
width: 200px;
height: 200px;
border-radius: 50%;
}
body .body-container .body-column, .body-block {
margin-top: 5px;
margin-bottom: 5px;
padding: 15px;
border-radius: 4px;
background: black;
box-shadow: 2px 2px 2px yellow;
}
.gallery {
max-width: 200px;
max-height: 390px;
}
@media (min-width: 768px) {
body .body-container, .body-block {
display: flex;
justify-content: space-between;
}
body .body-container .body-column {
margin: 60px 90px 60px;
padding: 30px;
flex-basis: 44%;
}
body .body-block {
flex-basis: 90%;
}
.headshot img {
width: 400px;
height: 400px;
border-radius: 50%;
}
.gallery {
max-width: 400px;
max-height: 390px;
}
}
header {
background-color: green;
}
nav {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
}
nav .logo-container {
max-width: 130px;
}
@media (min-width: 768px) {
nav .logo-container {
max-width: 250px;
}
}
nav .logo-container a img {
margin: 15px 5px;
}
nav .navigation-container {
width: 100%;
}
nav .navigation-container ul {
padding: 0;
margin: 0;
display: flex;
justify-content: flex-end;
align-items: center;
}
nav .navigation-container ul li {
list-style: none;
padding: 0;
margin: 0;
}
nav .navigation-container ul li a {
text-decoration: none;
text-transform: uppercase;
font-weight: 700;
font-size: .75rem;
font-style: italic;
color: white;
padding: 10px 5px;
transition: all 0.9s ease-out;
}
nav .logo-container h2 {
font-style: italic;
}
@media (min-width: 768px) {
nav .navigation-container ul li a {
font-size: 1.125rem;
padding: 30px 15px;
}
}
nav .navigation-container ul li a:hover {
background-color: yellow;
color: black;
}
footer {
background-color: green;
padding: 90px 0 0;
}
footer .footer-container {
max-width: 1200px;
margin: 0, auto;
}
footer .footer-container p, a, h4 {
color: white;
}
footer .footer-container h4 {
margin: 0 0 10px;
}
footer .footer-container p, a {
font-size: .875rem;
}
footer .footer-container img {
max-width: 200px;
}
footer .footer-container .footer-column {
margin: 0 7px 7px;
padding: 15px;
border-radius: 4px;
background: black;
box-shadow: 2px 2px 2px yellow;
}
footer .footer-container .footer-column ul li {
list-style: none;
}
@media (min-width: 768px) {
footer .footer-container {
display: flex;
justify-content: space-between;
}
footer .footer-container .footer-column {
margin: 0 15px 60px;
padding: 30px;
flex-basis: 32%;
}
}
footer .copyright {
padding: 20px 15px;
background-color: black;
text-align: center;
font-style: italic;
color: white;
}