This repository has been archived on 2025-02-18. You can view files and clone it, but cannot push or open issues or pull requests.

70 lines
958 B
CSS
Raw Normal View History

2024-12-03 08:42:33 -05:00
body {
2024-12-09 21:00:30 -05:00
font-family: 'EB Garamond', serif;
background-color: #fdf6e3;
color: #333;
padding: 2rem;
2024-12-03 08:42:33 -05:00
}
2024-12-09 21:05:08 -05:00
h1 {
font-weight: bold;
font-size: 3rem;
2024-12-03 08:42:33 -05:00
}
2024-12-09 21:05:08 -05:00
h3 {
color: #7d7d7d;
font-weight: 300;
2024-12-03 08:42:33 -05:00
}
2024-12-09 21:05:08 -05:00
.card {
2024-12-09 21:08:51 -05:00
background: #fff;
border: 1px solid #ddd;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 1rem;
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
2024-12-03 08:42:33 -05:00
}
2024-12-09 21:05:08 -05:00
.card-text {
2024-12-09 21:08:51 -05:00
font-size: 1rem;
color: #555;
2024-12-03 08:42:33 -05:00
}
2024-12-09 21:05:08 -05:00
.card-title {
2024-12-09 21:08:51 -05:00
font-size: 1.25rem;
font-weight: bold;
margin-bottom: 0.75rem;
2024-12-09 20:55:53 -05:00
}
2024-12-09 21:05:08 -05:00
.container {
2024-12-09 21:08:51 -05:00
max-width: 800px;
margin: auto;
text-align: center;
padding: 2rem;
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
2024-12-09 20:55:53 -05:00
}
.il {
2024-12-09 21:00:30 -05:00
font-size: 1.5rem;
display: block;
margin-top: 1rem;
color: #555;
2024-12-03 08:42:33 -05:00
}
.ico {
2024-12-09 21:00:30 -05:00
padding-right: 13px;
font-size: xx-large;
2024-12-03 08:42:33 -05:00
}
.ico-sm {
2024-12-09 21:00:30 -05:00
padding-right: 5px;
2024-12-03 08:42:33 -05:00
}
2024-12-09 20:55:53 -05:00
.text-start {
2024-12-09 21:00:30 -05:00
text-align: left;
}