-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
90 lines (77 loc) · 1.63 KB
/
styles.css
File metadata and controls
90 lines (77 loc) · 1.63 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
body {
font-family: 'Arial', sans-serif;
background-image: url('backgrounds.jpg');
background-repeat:no-repeat;
background-attachment:fixed;
background-size:cover;
margin: 20px;
}
header {
background-image: url('4153480.jpg');
background-repeat: no-repeat;
background-size:cover;
background-attachment:fixed;
color: #fff;
padding: 10px;
text-align: center;
}
section {
background-color: #f2f2f2;
margin: 20px;
padding: 20px;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s, box-shadow 0.3s;
}
section:hover {
box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
transform: scale(1.02); /* Scale up on hover */
}
.job,
.degree {
border-left: 3px solid #333;
padding-left: 10px;
}
.secondary-school {
border-left: 3px solid #333;
padding-left: 10px;
}
.primary-school {
border-left: 3px solid #333;
padding-left: 10px;
}
.skills ul {
list-style-type: none;
padding: 0;
text-align: center;
}
.skills li {
display: inline-block;
background: #f4f4f4;
color: #333;
padding: 5px 10px;
margin: 5px;
border-radius: 5px;
transition: background-color 0.3s;
}
.skills li:hover {
background: black;
color: #fff;
}
.download-button {
display: inline-block;
padding: 10px 20px;
background-color: #333;
color: #fff;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.download-button:hover {
background-color: #555;
}
footer {
text-align: center;
padding: 10px;
background-color: #f0f0f0;
}