This repository has been archived on 2024-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
damaj.tech.old/css/main.css

46 lines
636 B
CSS
Raw Normal View History

2022-12-19 21:22:15 +00:00
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;
2022-12-21 12:28:55 +00:00
text-align: center;
display: block;
color: #FFFFFF;
2022-12-19 21:22:15 +00:00
}
.links {
font-size: 10pt;
2022-12-21 12:28:55 +00:00
text-align: center;
display: block;
2022-12-19 21:22:15 +00:00
}
2022-12-27 13:43:05 +00:00
.code {
text-align: center;
display: block;
color: #ffffff;
}
2022-12-19 21:22:15 +00:00
a {
color: #fd7717;
text-decoration: none;
transition: 0.1s;
}
a:hover {
color: #89cff0;
}