-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
92 lines (75 loc) · 1.39 KB
/
style.css
File metadata and controls
92 lines (75 loc) · 1.39 KB
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
html {
font-family: Roboto, sans-serif;
--primary-color: #2f80ed;
--secondary-color: #333333;
--bg-color: #ffffff;
}
body {
background-color: var(--bg-color);
}
* {
color: var(--secondary-color);
}
h1 {
color: var(--primary-color);
margin-bottom: 0.25em;
}
h2 {
color: var(--secondary-color);
font-size: 1em;
margin-top: 0;
margin-bottom: 1em;
}
h3 {
color: var(--primary-color);
}
a {
color: var(--primary-color);
}
section {
margin-bottom: 3em;
position: relative;
}
.cv {
max-width: 900px;
margin: 0 auto;
}
.contacts {
margin-bottom: 2em;
}
.contact {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
}
.contact__type {
min-width: 90px;
}
.education {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
margin-bottom: 2em;
}
.education__date {
min-width: 185px;
margin-bottom: 1em;
}
.education__name {
font-weight: bold;
}
.education__company {
margin-bottom: 0.5em;
}
@media (max-width: 575px) {
.education {
display: block;
}
}
html.transition,
html.transition * {
-webkit-transition: all 750ms !important;
transition: all 750ms !important;
-webkit-transition-delay: 0 !important;
transition-delay: 0 !important;
}