-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.css
114 lines (94 loc) · 1.43 KB
/
portfolio.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
.header {
margin-top: 50px;
text-align: center;
}
header a {
color: rgb(34,34,34);
}
nav {
text-align: right;
}
.header-link {
padding: 5px;
display: inline-block;
transition: border .2s;
border-bottom: 2px solid #999;
margin: 15px;
}
.header-link.active,
.header-link:hover {
border-bottom: 4px solid rgb(34, 34, 34);
}
img.circle {
max-width: 150px;
border-radius: 50%;
}
div.tech-examples {
display: flex;
margin: 50px 0;
align-content: space-between;
flex-wrap: wrap;
align-items: center;
}
div.tech-examples > img {
max-width: 60px;
max-height: 60px;
margin: 20px;
}
@media (min-width: 750px) {
div.tech-examples > img {
max-width: 75px;
max-height: 75px;
}
}
@media (min-width: 1350px) {
div.tech-examples > img {
max-width: 100px;
max-height: 100px;
}
}
img.work-snapshot {
display: block;
width: 100%;
cursor: pointer;
}
.work-example {
margin-bottom: 40px;
box-shadow: 1px 1px 2px #555;
}
.site-description {
display: none;
padding: 25px;
}
a.work-link {
text-decoration: none;
}
button {
display: block;
margin: 0 auto;
}
footer {
position: relative;
height: 75px;
}
footer > div {
width: 100%;
}
footer > div > div {
text-align: center;
}
.footer-link {
margin-bottom: 25px;
}
.footer-link.three.columns {
width: 100%;
margin-left: 0;
}
@media (min-width: 1350px) {
.footer-link.three.columns {
width: 22%;
}
.footer-link.three.columns:not(:first-child) {
margin-left: 4%;
}
}