87 lines
1.4 KiB
CSS
87 lines
1.4 KiB
CSS
@font-face {
|
|
font-family: selectric;
|
|
src: url(/assets/fonts/selectric-light.ttf);
|
|
}
|
|
@font-face {
|
|
font-family: selectric;
|
|
src: url(/assets/fonts/selectric-light-italic.ttf);
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: archer;
|
|
src: url(/assets/fonts/archer-thin.otf);
|
|
}
|
|
@font-face {
|
|
font-family: archer;
|
|
src: url(/assets/fonts/archer-thin-italic.otf);
|
|
font-style: italic;
|
|
}
|
|
@font-face {
|
|
font-family: archer;
|
|
src: url(/assets/fonts/archer-book.otf);
|
|
font-weight: bold;
|
|
}
|
|
@font-face {
|
|
font-family: archer;
|
|
src: url(/assets/fonts/archer-book-italic.otf);
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|
|
|
|
body {
|
|
font-family: archer;
|
|
}
|
|
|
|
.container {
|
|
width: 600px;
|
|
margin: 2em auto;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
|
|
border-bottom: 1px solid #000;
|
|
}
|
|
|
|
.header .name {
|
|
font-family: selectric;
|
|
font-style: italic;
|
|
font-size: 4em;
|
|
}
|
|
|
|
.header .contact {
|
|
text-align: right;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.header, .body {
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.section .descriptor {
|
|
font-size: 1.5em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.section .block {
|
|
margin: 0.5em;
|
|
}
|
|
|
|
.section .block .title {
|
|
text-align: right;
|
|
font-style: italic;
|
|
font-weight: bold;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: circle;
|
|
}
|
|
|
|
.proficiencies .block {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-evenly;
|
|
} |