21 lines
263 B
CSS
21 lines
263 B
CSS
@font-face {
|
|
font-family: "times"
|
|
src: url("/assets/fonts/TimesNewerRoman-Regular.otf");
|
|
}
|
|
|
|
* {
|
|
font-family: "times" !important;
|
|
line-height: 2;
|
|
}
|
|
|
|
body {
|
|
max-width: 550px;
|
|
padding-top: 2em;
|
|
background: #fdfdfd;
|
|
color: #222222;
|
|
}
|
|
|
|
a {
|
|
color: #4361ee;
|
|
}
|
|
|