added files after removing them 5 times on accident
This commit is contained in:
commit
b026d00bd9
6 changed files with 194 additions and 0 deletions
86
src/static/style.css
Normal file
86
src/static/style.css
Normal file
|
|
@ -0,0 +1,86 @@
|
|||
@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: #111011;
|
||||
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: #ffffff;
|
||||
text-decoration: underline #FF00FF;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2 {
|
||||
text-align: center;
|
||||
color: #ff00ff;
|
||||
}
|
||||
|
||||
h3 {
|
||||
color: #ff00ff;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0000ff;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
summary {
|
||||
color: #ff00ff;
|
||||
background: #111011;
|
||||
}
|
||||
|
||||
details {
|
||||
background: #222;
|
||||
}
|
||||
|
||||
summary:hover {
|
||||
color: #fff;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.service {
|
||||
padding: 0.5rem;
|
||||
border: solid thin #ffff00;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue