init
This commit is contained in:
+93
@@ -0,0 +1,93 @@
|
||||
@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;
|
||||
}
|
||||
Reference in New Issue
Block a user