Upload
This commit is contained in:
parent
49f0211ee1
commit
c8f8ef975a
14 changed files with 183 additions and 0 deletions
35
css/main.css
Executable file
35
css/main.css
Executable file
|
|
@ -0,0 +1,35 @@
|
|||
html {
|
||||
margin: auto;
|
||||
width: 80%;
|
||||
background-color: #131316;
|
||||
}
|
||||
body {
|
||||
background-color: #1f2024;
|
||||
box-shadow: 0px 0px 15px #000000;
|
||||
padding: 80px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
p, h1, h2, h3, h4, h5, h6, pre, span {
|
||||
font-family: monospace;
|
||||
color: #f8f9f8;
|
||||
font-size: 10pt;
|
||||
}
|
||||
hr {
|
||||
border-color: #fd7717;
|
||||
border-top: none;
|
||||
|
||||
}
|
||||
.logo {
|
||||
font-size: 35pt;
|
||||
}
|
||||
.links {
|
||||
font-size: 10pt;
|
||||
}
|
||||
a {
|
||||
color: #fd7717;
|
||||
text-decoration: none;
|
||||
transition: 0.1s;
|
||||
}
|
||||
a:hover {
|
||||
color: #89cff0;
|
||||
}
|
||||
Reference in a new issue