-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.css
86 lines (74 loc) · 1.22 KB
/
cv.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
html, body, div, span,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, img,
small,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas,
figure, figcaption, footer, header,
nav, output, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
html {
box-sizing: border-box;
font-size: 100%;
}
.icon {
display: inline-block;
width: 1em;
height: 1em;
stroke-width: 0;
stroke: currentColor;
fill: currentColor;
}
img{
max-width: 100%;
height: auto;
}
*, *:before, *:after {
box-sizing: inherit;
}
@media (max-width: 650px){
.mobile-hidden{
display: none;
}
}
body{
font-family: 'Open Sans', sans-serif;
color: #333;
}
h1, h2 {
}
h1{
font-size: 4.5rem;
}
@media (max-width: 650px){
h1{
font-size: 3.5rem;
}
}
h2{
font-size: 3rem;
margin: 0 0 .75rem 0;
}
main {
display: flex;
flex-direction: column;
border: 1px solid;
}
@media (min-width: 650px){
main {
background-color: red;
}
}
.sidebar, .intro {
border: 1px solid;
}