homepage.veen.world/app/static/css/default.css

82 lines
1.3 KiB
CSS
Raw Normal View History

2025-01-14 17:19:09 +01:00
@import url("navigation.css");
2025-01-10 14:08:21 +01:00
/* General link styles */
2025-01-08 14:59:36 +01:00
a {
2025-01-08 17:09:45 +01:00
text-decoration: none;
color: #000000;
}
2025-01-10 14:08:21 +01:00
/* Header styles */
2025-01-08 17:09:45 +01:00
.header img {
float: right;
width: 100px;
height: 100px;
}
2025-01-08 14:59:36 +01:00
2025-01-08 17:09:45 +01:00
.header h1 {
position: relative;
}
2025-01-10 14:08:21 +01:00
/* Equal-height container using flexbox */
2025-01-08 17:09:45 +01:00
.equal-height {
display: flex;
flex: 1;
}
2025-01-10 14:08:21 +01:00
/* Card styles */
2025-01-10 15:24:51 +01:00
.navbar, .card {
2025-01-10 14:08:21 +01:00
flex: 1; /* Ensures cards fill the height of their container */
border-radius: 5px; /* Rounded corners */
border: 1px solid #ccc; /* Optional border color */
padding: 10px; /* Inner spacing */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Subtle shadow effect */
color: #000000 !important;
background-color: #f9f9f9;
}
2025-01-08 17:09:45 +01:00
.card-body {
display: flex;
flex-direction: column;
2025-01-10 14:08:21 +01:00
align-items: center; /* Center content horizontally */
text-align: center; /* Center text alignment */
2025-01-08 17:09:45 +01:00
}
2025-01-08 14:59:36 +01:00
2025-01-08 17:09:45 +01:00
.card-icon {
display: flex;
2025-01-10 14:08:21 +01:00
justify-content: center; /* Center the icon horizontally */
2025-01-08 17:09:45 +01:00
}
2025-01-08 14:59:36 +01:00
2025-01-08 17:09:45 +01:00
.card-text,
.card ul {
2025-01-10 14:08:21 +01:00
text-align: left; /* Align text to the left */
2025-01-08 17:09:45 +01:00
}
2025-01-08 14:59:36 +01:00
2025-01-10 14:08:21 +01:00
.card-column {
padding-top: 12px;
padding-bottom: 12px;
2025-01-08 17:09:45 +01:00
}
2025-01-08 14:59:36 +01:00
2025-01-10 14:08:21 +01:00
.card .stretched-link {
2025-01-08 17:09:45 +01:00
font-size: 0.7em;
}
2025-01-08 14:59:36 +01:00
2025-01-10 14:08:21 +01:00
h3.card-title {
2025-01-08 17:09:45 +01:00
font-size: 1.3em;
}
2025-01-08 14:59:36 +01:00
2025-01-10 14:08:21 +01:00
/* Footer styles */
2025-01-08 17:09:45 +01:00
.footer {
margin-top: 12px;
text-align: center;
2025-01-10 14:08:21 +01:00
font-size: 0.7em;
}
.footer p,
.footer h3 {
margin: 0;
padding: 0;
2025-01-08 17:09:45 +01:00
}
2025-01-10 14:08:21 +01:00
h3.footer-title {
font-size: 1.3em;
2025-01-14 17:19:09 +01:00
}