85 lines
1.1 KiB
CSS
85 lines
1.1 KiB
CSS
@font-face {
|
|
font-family: 'font';
|
|
src: url('/font/font.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
@font-face {
|
|
font-family: 'font';
|
|
src: url('/font/font-Bold.ttf') format('truetype');
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
body {
|
|
background: #101210;
|
|
color: #e0e0e0;
|
|
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
|
|
max-width: 800px;
|
|
margin: auto;
|
|
font-family: font;
|
|
font-weight: normal;
|
|
line-height: 1.2rem;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
footer {
|
|
padding: 0 0 1.5rem 0;
|
|
text-align: center;
|
|
margin-top: auto;
|
|
}
|
|
|
|
main {
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
}
|
|
|
|
strong, b {
|
|
font-weight: bold;
|
|
}
|
|
|
|
|
|
h1 {
|
|
color: #00ff00;
|
|
text-decoration: underline yellow;
|
|
text-align: center;
|
|
}
|
|
|
|
h2 {
|
|
color: #00ff00;
|
|
}
|
|
|
|
h3 {
|
|
color: #00ff00;
|
|
}
|
|
|
|
a {
|
|
color: #ffff00;
|
|
}
|
|
|
|
a:hover {
|
|
color: #ffffff;
|
|
}
|
|
|
|
summary {
|
|
color: #008800;
|
|
background: #101210;
|
|
}
|
|
|
|
details {
|
|
background: #222;
|
|
}
|
|
|
|
summary:hover {
|
|
color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.service {
|
|
padding: 0.5rem;
|
|
border: solid thin #ffff00;
|
|
}
|