-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (64 loc) · 1.09 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
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
background-color: #f4f4f9;
color: #333;
}
header {
background-color: #007acc;
color: white;
padding: 1rem 0;
text-align: center;
}
.container {
max-width: 800px;
margin: 2rem auto;
padding: 1rem;
background: white;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
color: #ffffff;
}
h2 {
color: #007acc;
}
ul {
list-style-type: none;
}
ul li {
margin-bottom: 0.5rem;
}
footer {
text-align: center;
margin-top: 2rem;
color: #555;
}
a {
color: #007acc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.experience-list{
list-style-type: disc;
}
.progress-bar {
width: 50%;
background-color: #e0e0e0;
border-radius: 5px;
overflow: hidden;
height: 10px;
margin-left: 10px;
}
.progress-bar span {
display: block;
height: 100%;
}
.beginner { background-color: #f44336; width: 30%; } /* Rosso */
.intermediate { background-color: #ff9800; width: 60%; } /* Arancione */
.advanced { background-color: #4caf50; width: 90%; } /* Verde */