-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
121 lines (96 loc) · 1.56 KB
/
styles.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
/* Main site */
#social {
text-align: center;
}
#social ul {
padding: 0;
}
#social ul li {
display: inline-block;
list-style: none;
}
#avatar img {
width: 80%;
display: block;
margin: auto;
border-radius: 50px;
}
.container {
padding: 2em;
}
/* CV */
* {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Liberation Sans", sans-serif;
}
h4 a {
text-decoration: none;
}
p {
font-size: 1rem;
}
ul {
list-style-type: none;
padding-left: 0;
}
.cv-logo {
width: 48px;
height: 48px;
}
.cv-logo-container {
margin: 8px;
}
.cv-image {
width: 100%;
height: auto;
max-height: 48px;
}
.flex {
display: flex;
}
.section {
margin-top: 0;
}
.section > h2 {
border-top: 1px solid hsl(210, 8%, 85%);
}
.section .position-title {
margin: 0 0 2px 0;
}
.section .company-url,
.section .dates {
margin: 0 0 8px 0;
}
.section .technologies {
margin: 8px 0 16px 0;
}
.section-info > h1,
.section-info > p {
margin: 10px 0;
}
.tag:hover {
color: rgb(44, 88, 119);
background-color: rgb(208, 227, 241);
text-decoration: rgb(44, 88, 119);
}
.tag {
color: rgb(57, 115, 157);
background-color: rgb(225, 236, 244);
text-decoration: rgb(57, 115, 157);
display: inline-block;
margin: 2px 2px 2px 0;
padding: .4em .5em;
vertical-align: center;
text-align: center;
line-height: 1;
border: 1px solid #FFF;
border-radius: 3px;
font-size: 12px;
}
.tag-link:hover {
color: rgb(10, 149, 255);
text-decoration: rgb(10, 149, 255);
}
.tag-link {
color: rgb(0, 116, 204);
text-decoration: rgb(0, 116, 204);
}