-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
67 lines (57 loc) · 1013 Bytes
/
responsive.css
File metadata and controls
67 lines (57 loc) · 1013 Bytes
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
@media screen and (min-width: 480px) {
/**********************
TWO COLUMN LAYOUT
***********************/
#primary {
width: 50%;
float: left;
}
#secondary {
width: 50%;
float: right;
}
/**********************
PAGE: PORTFOLIO
***********************/
#gallery li {
width: 28.3333%;
}
#gallery li:nth-child(4n) {
clear: left;
}
@media screen and (min-width: 660px) {
}
/**********************
PAGE: ABOUT
***********************/
.profile-photo {
float: left;
margin 0 5% 80px 0;
}
/**********************
HEADER
***********************/
nav {
background: none;
float: right;
font-size: 1.125em;
margin-right: 5%;
width: 45%;
}
#logo {
float: left;
margin-left: 5%;
text-align: left;
width: 45%;
}
h1 {
font-size: 2.5em;
}
h2 {
font-size: 0.825em;
margin-bottom: 20px;
}
header {
border-bottom: 5px solid #599a68;
margin-bottom: 60px;
}