74 lines
1.2 KiB
CSS
74 lines
1.2 KiB
CSS
@font-face {
|
|
font-family: mononoki;
|
|
src: url("/fonts/mononoki-Regular.ttf");
|
|
font-weight: regular;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: mononoki;
|
|
src: url("/fonts/mononoki-Bold.ttf");
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: mononoki;
|
|
src: url("/fonts/mononoki-Italic.ttf");
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: mononoki;
|
|
src: url("/fonts/mononoki-BoldItalic.ttf");
|
|
font-weight: bold;
|
|
font-style: italic;
|
|
}
|
|
|
|
|
|
body {
|
|
background-size: 10px 10px;
|
|
background-color: #282828;
|
|
background-image:
|
|
linear-gradient(to right, #3c3836 1px, transparent 1px),
|
|
linear-gradient(to bottom, #3c3836 1px, transparent 1px);
|
|
color: #f9f5d7;
|
|
font-family: mononoki, monospace;
|
|
}
|
|
|
|
.index-container {
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
background-color: #1d202199;
|
|
padding: 16px;
|
|
}
|
|
|
|
.container {
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.nav {
|
|
text-align: center;
|
|
}
|
|
|
|
a {
|
|
color: #8ec07c
|
|
}
|
|
|
|
.index-container h1 {
|
|
margin-bottom: 0;
|
|
margin-top: none;
|
|
text-align: center;
|
|
display: block;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
img {
|
|
border-radius: 4px;
|
|
width: 100%;
|
|
}
|
|
|
|
.tc {
|
|
text-align: center;
|
|
}
|