You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
1.2 KiB
CSS
94 lines
1.2 KiB
CSS
@import url("./letter.css");
|
|
|
|
body {
|
|
font-family: "EB Garamond", serif;
|
|
font-optical-sizing: auto;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.lg {
|
|
font-size: 1.5em;
|
|
}
|
|
|
|
.sm {
|
|
font-size: 0.75em;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.italic {
|
|
font-style: italic;
|
|
}
|
|
|
|
.right {
|
|
text-align: right;
|
|
}
|
|
|
|
.no-bullet {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.fit-content {
|
|
width: fit-content;
|
|
}
|
|
|
|
section.header {
|
|
text-align: center;
|
|
}
|
|
|
|
section.contact-info {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
section.sections {
|
|
margin-top: 3em;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
|
|
gap: 2em;
|
|
}
|
|
|
|
section.sections > section {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
section.sections > section > label {
|
|
width: 25%;
|
|
}
|
|
|
|
section.sections > section > div {
|
|
width: 75%;
|
|
}
|
|
|
|
ul.inline {
|
|
padding-inline-start: 0px;
|
|
margin-block-start: 0px;
|
|
margin-block-end: 0px;
|
|
}
|
|
ul.inline li {
|
|
list-style: none;
|
|
display: inline;
|
|
}
|
|
ul.inline li:after {
|
|
content: " \00b7";
|
|
}
|
|
ul.inline li:last-child:after {
|
|
content: none;
|
|
}
|
|
|
|
a {
|
|
color: cadetblue;
|
|
font-weight: 500;
|
|
text-decoration: none;
|
|
}
|