-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.css
127 lines (126 loc) · 2.05 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
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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
*{
padding: 0;
margin:0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
div.din-a4{
height: 297mm;
width:210mm;
display: flex;
}
body{
height: 100vh;
width: 100vw;
}
main{
width: calc(100%*7/12);
background-color: rgb(255, 255, 255);
padding: 2rem;
}
h2{
margin-top: 1rem;
margin-bottom: 1rem;
padding: 1rem;
background-color: #0e77a836;
}
.year,.concept{
font-weight: bold;
}
.task{
display: block;
}
.exp-lab li{
margin: 1rem;
}
aside{
width: calc(100%*5/12);
background-color:rgb(9, 142, 186);
padding:1rem;
color: white;
font-size: larger;
text-shadow: 2px 2px 2px #0e76a8;
}
div.photo{
display: flex;
justify-content: center;
margin: auto;
}
svg#Layer_1{
width: 32px;
height: auto;
}
svg#email-icon {
width: 18px;
height: auto;
}
svg#phone-icon {
width: 18px;
height: auto;
}
.contact, .email, .phone, .git {
display: flex;
}
.contact-icon{
display: flex;
overflow: auto;
width: auto;
margin: 0.1rem;
}
.email-icon {
display: flex;
overflow: auto;
width: auto;
margin: 0.1rem;
background-color: #0e76a8;
padding: 7px;
border-radius: 50%;
}
.git-icon {
display: flex;
overflow: auto;
width: auto;
margin: 0.1rem;
background-color: #0e76a8;
padding: 4px;
border-radius: 50%;
}
.contact-url, .email-url, .git-url{
display: flex;
overflow: auto;
width: auto;
align-items: center;
margin-left: 1rem;
}
.name{
margin-top: 2rem;
margin-bottom: 2rem;
font-size: 26px;
font-weight: bold;
}
.studies {
margin-top: 2rem;
margin-bottom: 2rem;
}
section ul{
display: flex;
justify-content: space-between;
margin-top: 2rem;
}
li{
list-style: none;
}
section li {
width: 32px;
height: 32px;
border: 1rem black;
}
section span{
display: none;
}
a {
color: rgb(255, 255, 255);
text-decoration: none;
/* no underline */
}