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.

80 lines
1.1 KiB
CSS

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