Files
php-pdo/cv/style.css
2025-10-16 16:08:44 +02:00

59 lines
858 B
CSS

body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: auto;
background-color: white;
padding: 30px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
font-size: 36px;
margin-bottom: 10px;
}
h2 {
font-size: 24px;
color: #555;
margin-bottom: 30px;
}
h3 {
font-size: 20px;
color: #222;
margin-top: 40px;
border-bottom: 2px solid #007BFF;
display: inline-block;
padding-bottom: 5px;
}
.skills ul {
list-style-type: none;
padding: 0;
}
.skills li {
background-color: #5ca2ec;
color: white;
padding: 10px;
margin-bottom: 8px;
border-radius: 5px;
width: fit-content;
}
main p {
font-size: 16px;
margin-bottom: 10px;
}
strong {
color: #007BFF;
}