-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
134 lines (112 loc) · 1.79 KB
/
index.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
html {
font-size: 16px;
}
@media (min-width: 800px) {
body {
font-size: 20px;
}
}
body {
background-color: #111;
color: #eee;
font-family: 'Source Sans Pro', sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Source Serif Pro', serif;
}
body > div {
margin: 0 20px;
max-width: 700px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
@media (min-width: 800px) {
body > div {
margin: 40px;
}
}
@media (min-width: 800px) {
body > div {
margin: 80px;
}
}
hr {
width: 100%;
}
ul, li {
margin: 0;
padding: 0;
}
img {
max-width: 100%;
height: auto;
}
a {
color: inherit;
font-weight: 700;
}
a:hover {
color: red;
}
.project-list {
padding-left: 24px;
}
.project-list li {
margin-bottom: 8px;
}
.hero-social-container {
margin-top: 20px;
margin-bottom: 20px;
}
@media (min-width: 800px) {
.hero-social-container {
margin-top: 40px;
margin-bottom: 40px;
}
}
.hero-social {
display: flex;
flex-direction: column;
list-style: none;
justify-content: space-between;
align-items: flex-start;
}
@media (min-width: 800px) {
.hero-social {
flex-direction: row;
}
}
.hero-social li a {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
mix-blend-mode: screen;
padding: 10px 10px 10px 0;
}
@media (min-width: 800px) {
.hero-social li a {
padding: 14px;
}
.hero-social li:first-child a {
padding: 14px 14px 14px 0;
}
.hero-social li:last-child a {
padding: 14px 0 14px 14px;
}
}
.hero-social li a img {
height: 30px;
margin-right: 8px;
}
@media (min-width: 800px) {
.hero-social li a img {
height: 40px;
margin-right: 12px;
}
}