comlib/assets/css/style.css

209 lines
2.2 KiB
CSS
Raw Permalink Normal View History

2024-09-01 17:30:27 +00:00
*,
::before,
::after {
box-sizing: border-box;
}
body {
font-family: 'Verdana', sans-serif;
margin: 0;
}
2023-12-17 03:23:28 +00:00
p {
margin-top: 0;
margin-bottom: 1rem;
}
a {
color: #2a99b6;
}
a:hover {
color: #33bbdf;
}
2024-09-01 17:30:27 +00:00
.fp {
2023-12-17 03:23:28 +00:00
padding: 0 20px 0;
2024-09-18 15:57:30 +00:00
margin-top: 20px;
}
2024-09-01 17:30:27 +00:00
.epub {
padding: 20px 10px;
max-width: 1050px;
margin: 0 auto;
width: 100%;
}
2024-01-03 08:44:32 +00:00
ul {
padding-left: 3vw;
}
header {
background: #D62828;
2023-12-13 04:23:18 +00:00
padding: 2rem 0 0;
}
header h1 {
text-align: center;
color: #eae2b7;
2023-12-13 04:23:18 +00:00
margin: 1rem 0 2rem;
font-weight: normal;
font-size: 42px;
width: 100vw;
}
header nav ul {
list-style: none;
margin: 0;
padding: 0 0 0 1rem;
}
header nav ul li {
display: inline;
margin: 0 8px 0 0;
padding: 0;
}
header nav ul li a {
color: #EAE2B7;
text-decoration: none;
padding: 3px 3px 0;
background: black;
border-width: 1px 1px 0 1px;
border-style: solid;
border-color: black;
border-radius: 5px 5px 0 0;
}
header nav ul li a:hover {
color: #ADD7F6;
}
2023-12-16 10:00:19 +00:00
.p-b-0 p {
margin-bottom: 0;
}
.list-none {
2023-12-16 10:00:19 +00:00
list-style: none;
}
.bib {
2023-12-16 10:00:19 +00:00
margin: 10px 0;
}
.bib-title {
2023-12-16 10:00:19 +00:00
font-weight: bold;
}
.bib-title a {
color: #D62828;
text-decoration: none;
}
2024-03-01 20:38:49 +00:00
.bib-title .selected {
color: #d67f28;
}
2023-12-13 04:51:05 +00:00
.bib-small-txt {
font-size: 0.9em;
}
2023-12-16 10:00:19 +00:00
.subtitle {
text-indent: 2rem;
}
2023-12-13 04:51:05 +00:00
.italics {
2023-12-16 10:00:19 +00:00
font-style: italic;
}
.bold {
font-weight: bold;
}
.text-3xl {
font-size: 1.875rem;
line-height: 2.25rem;
}
.p-1-5 {
padding: 1.5rem;
}
2023-12-17 03:23:28 +00:00
.p-0-10 {
padding: 0 10px;
2023-12-16 10:00:19 +00:00
}
.mb-1 {
margin-bottom: 1rem;
}
.ml-1 {
margin-left: 1rem;
}
.mt-1 {
margin-top: 1rem !important;
}
.mt-2 {
margin-top: 2rem;
}
.m-auto {
margin: 0 auto;
}
.w-full {
width: 100%;
}
.w25 {
width: 25%;
}
.aspect-64 {
aspect-ratio: .64;
}
.rounded {
border-radius: .25rem;
}
.bg-light-grey {
background-color: #0000000d;
}
.bg-grey {
background-color: rgb(209 213 219);
}
.float-right {
float: right;
}
.relative {
position: relative;
}
.overflow-hidden {
overflow: hidden;
}
.mx-width-1050 {
max-width: 1050px;
}
2024-09-18 15:57:30 +00:00
.align-center {
text-align: center;
}
.h1-404 {
font-size: 3.5rem;
margin-top: 4rem;
margin-bottom: 0;
}
.p-404 {
font-size: 1.2rem;
margin-top: 1em;
}