-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsarahill.css
41 lines (33 loc) · 990 Bytes
/
sarahill.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
body { background: #fbfbfc; }
.site-title { box-shadow: inset 0 -24px 0 #ffd700; }
.site-title.title-small { box-shadow: inset 0 -11px 0 #ffd700; }
.work-item { box-shadow: inset 0 -11px 0 #ffd700; }
.work-item.dribbble { box-shadow: inset 0 -11px 0 #FF80CC; }
.tracksuit-img {
width: 420px;
height: 420px;
background: transparent url('images/webkit.png') no-repeat 0 0;
background-size: cover;
}
.portfolio {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}
.portfolio-image {
width: 100%;
margin-bottom: 40px;
}
@media (min-width: 768px) {
.portfolio-image { width: 48%; }
}
/* flexbox */
.d-flex { display: flex; }
.d-inline-flex {display: inline-flex; }
.justify-content { justify-content: flex-start; }
.justify-content-center { justify-content: center; }
.align-items { align-items: flex-start; }
.align-items-center { align-items: center;; }
.flex-wrap { flex-wrap: wrap; }
.flex-wrap-nowrap { flex-wrap: nowrap; }