76 lines
1.5 KiB
CSS
Raw Normal View History

2025-08-02 20:21:55 -04:00
2025-08-01 00:44:04 -04:00
/* Main layout container */
body {
margin: 0;
padding: 0;
display: flex;
min-height: 100vh;
2025-08-02 20:21:55 -04:00
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
letter-spacing: 0.03em;
2025-08-01 00:44:04 -04:00
}
2025-08-02 20:21:55 -04:00
/* Optional: Add to headings for contrast */
h1, h2, h3, h4, h5, h6 {
font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
font-weight: 400; /* Classic book style often uses lighter weights */
letter-spacing: 0.03em;
}
p {
padding: 20px;
line-height: 1.2;
font-size: 20px;
}
/* Side banners */
.banner-left {
2025-08-02 19:07:01 -04:00
position: fixed;
2025-08-02 20:21:55 -04:00
left: 0;
2025-08-02 19:07:01 -04:00
top: 0;
bottom: 0;
2025-08-02 20:21:55 -04:00
width: calc((100% - 1100px) / 2);
background-image: url('./banner-left.jpg');
background-size: cover;
background-position: center right;
background-repeat: no-repeat;
2025-08-01 00:44:04 -04:00
}
.banner-right {
2025-08-02 20:21:55 -04:00
position: fixed;
right: 0;
top: 0;
bottom: 0;
width: calc((100% - 1100px) / 2);
2025-08-01 00:44:04 -04:00
background-image: url('./banner-right.jpg');
2025-08-02 20:21:55 -04:00
background-size: cover;
background-position: center left;
background-repeat: no-repeat;
2025-08-01 00:44:04 -04:00
}
2025-08-02 20:21:55 -04:00
/* Centered content box */
2025-08-01 00:44:04 -04:00
.content-wrapper {
2025-08-02 20:21:55 -04:00
position: relative;
min-height: 20%;
min-width: 5%;
width: 1100px;
margin: 0 auto;
2025-08-01 00:44:04 -04:00
padding: 20px;
background: #ffffff;
box-shadow: 0 0 30px rgba(0,0,0,0.9);
2025-08-02 20:21:55 -04:00
z-index: 1;
}
.content-wrapper img {
max-width: 100%;
height: auto;
display: block;
margin: 20px auto;
2025-08-01 00:44:04 -04:00
}
/* Language switcher */
.language-switcher {
text-align: center;
2025-08-02 20:21:55 -04:00
padding: 20px 0;
margin-top: 40px;
2025-08-02 19:07:01 -04:00
}