-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmedia-min750px.css
76 lines (61 loc) · 1000 Bytes
/
media-min750px.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
@media (min-width: 750px) {
#container {
width: 750px;
}
#header {
grid-template-columns: 200px 550px;
}
#img-div {
width: 200px;
grid-row-end: span 6;
}
#name-div,
#email-div,
#github-div,
#linkedin-div,
#coding-experience-div,
#interested-in-div {
grid-column-end: auto;
margin-left: 140px;
}
#thumbnail {
display: none;
}
#img-lg {
width: 200px;
height: 200px;
border-radius: 50%;
display: inline-block;
}
#email-div i {
display: inline-block;
}
#nav-main {
display: flex;
}
nav {
width: 217px;
}
main {
width: 533px;
}
.main-content-tab:first-of-type {
border-top: 0;
}
.main-content-tab:first-of-type.active {
border-top: 0;
}
.main-content-tab:last-of-type {
border-bottom: 0;
height: 20px;
}
.main-content-tab:last-of-type.active {
border-bottom: 0;
}
#curriculum {
flex-direction: row;
}
h1 {
position: static;
}
}