-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcv.css
More file actions
98 lines (79 loc) · 1.4 KB
/
cv.css
File metadata and controls
98 lines (79 loc) · 1.4 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
93
94
95
96
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
padding: 20px;
}
main {
background-color: #fff;
max-width: 800px;
margin: 20px auto;
padding: 20px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
border-radius: 10px;
}
section {
margin-bottom: 20px;
}
h1 h2 {
text-align: center;
font-size: 2.5em;
margin-bottom: 20px;
color: #333;
}
p {
font-size: 1.1em;
margin-bottom: 10px;
}
ul {
margin-left: 20px;
padding-left: 20px;
}
ul li {
margin-bottom: 8px;
list-style-type: square;
font-size: 1.1em;
}
/*!* Section Headers *!*/
/*section p:first-of-type {*/
/* font-weight: bold;*/
/* font-size: 1.3em;*/
/* margin-bottom: 10px;*/
/*}*/
ul li:before {
content: "•";
color: #3498db;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: -1em;
}
section ul li {
font-style: italic;
}
img {
display: block;
margin: 0 auto;
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 20px;
/* Animation */
animation: rotatePhoto 5s linear infinite;
}
/* Keyframes for rotation */
@keyframes rotatePhoto {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}