Web/style.css

70 lines
929 B
CSS
Raw Normal View History

2023-12-10 22:40:52 +01:00
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
2024-02-19 20:17:41 +01:00
background-color: #fff;
2023-12-10 22:40:52 +01:00
color: #333;
}
header {
2024-02-19 20:17:41 +01:00
background-color: #293E8C;
2023-12-10 22:40:52 +01:00
color: #fff;
padding: 1em;
text-align: center;
}
nav {
2024-02-19 20:17:41 +01:00
background-color: #1F356F;
2023-12-10 22:40:52 +01:00
color: #fff;
text-align: center;
padding: 0.5em;
}
nav a {
color: #fff;
text-decoration: none;
padding: 1em;
margin: 0 0.5em;
}
section {
padding: 2em;
}
footer {
2024-02-19 20:17:41 +01:00
background-color: #1F356F;
2023-12-10 22:40:52 +01:00
color: #fff;
text-align: center;
padding: 1em;
bottom: 0;
width: 100%;
}
2024-02-19 19:46:49 +01:00
.proyectos {
2024-02-19 20:17:41 +01:00
display: inline-block;
margin: 20px;
width: 200px;
}
2024-02-19 19:46:49 +01:00
.proyectos img {
2024-02-19 20:17:41 +01:00
width: 100%;
height: auto;
display: block;
object-fit: cover;
2024-02-19 19:46:49 +01:00
}
.proyectos h3 {
2024-02-19 20:17:41 +01:00
margin-top: 10px;
font-size: 16px;
2024-02-19 19:46:49 +01:00
}
.proyectos p {
2024-02-19 20:17:41 +01:00
font-size: 14px;
color: #555;
2024-02-19 19:46:49 +01:00
}
2024-02-19 20:17:41 +01:00
.proyectos a {
color: #555;
text-decoration: none;
}