-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
112 lines (96 loc) · 1.59 KB
/
style.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: system-ui;
background: url("cool-background.png");
background-size: cover;
background-position: center top;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.personalia {
background-color: #fff;
height: 150px;
display: flex;
align-items: center;
position: relative;
padding-right: 20%;
margin-bottom: 50px;
}
.name {
margin-left: auto;
}
.container {
height: 10em;
position: relative;
}
.logo {
width: 150px;
height: 150px;
object-fit: scale-down;
background-color: #fff;
border-radius: 10px;
margin: 10px;
padding: 10px;
}
h2 {
padding-bottom: 10px;
}
.cv-list {
padding-right: 30%;
position: relative;
right: 0;
}
.photo {
width: 150px;
height: 150px;
}
.cv {
width: 60%;
margin-left: auto;
padding: 10px;
background-color: #fff;
margin-bottom: 10px;
border-radius: 10px;
}
.cv-header {
width: 60%;
margin-left: auto;
color: #fff;
}
header {
font-size: 10px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
li {
text-align: center;
width: 120px;
float: left;
margin-right: 5px;
background-color: #b4e5ff;
margin-top: 5px;
border-radius: 40px;
font-size: small;
}
.contact {
background-color: #fff;
margin-top: 50px;
padding: 10px;
font-size: 40px;
flex: 1;
}
.contact a:link, .contact a:visited {
color: #000;
}
.contact a:hover {
color: #4b4b4b;
}