This repository has been archived on 2023-12-30. You can view files and clone it, but cannot push or open issues or pull requests.
website-legacy/style.css

69 lines
911 B
CSS
Raw Permalink Normal View History

2023-12-25 15:12:01 +00:00
body {
2023-12-25 16:40:39 +00:00
background-color: #151517;
color: #ece5ea;
2023-12-25 19:33:16 +00:00
font-family: monospace;
2023-12-25 20:24:54 +00:00
font-size: 11pt;
2023-12-25 16:40:39 +00:00
}
h3 {
text-align: center;
2023-12-25 16:43:40 +00:00
text-decoration: underline;
2023-12-25 19:33:16 +00:00
font-size: 15pt;
2023-12-25 16:40:39 +00:00
}
.logo {
display: block;
margin-left: auto;
margin-right: auto;
2023-12-25 20:24:54 +00:00
width: 15rem;
}
.center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
2023-12-25 16:40:39 +00:00
}
.devraza {
2023-12-25 19:33:16 +00:00
margin-top: 16px;
2023-12-25 16:40:39 +00:00
margin-bottom: 0;
2023-12-25 20:24:54 +00:00
font-size: 60pt;
2023-12-25 16:40:39 +00:00
text-align: center;
font-weight: 900;
}
.description {
text-align: center;
color: #a292e8;
margin-top: 0;
}
.stack {
text-align: center;
margin-bottom: 40px;
}
.links {
margin-top: 20px;
text-align: center;
}
.hr-sm {
width: 30%;
border-color: #454449;
margin-top: 15px;
}
a {
background-color: #242426;
padding: 10px;
color: #7ee6ae;
2023-12-25 19:33:16 +00:00
line-height: 50px;
2023-12-25 16:40:39 +00:00
}
a:hover {
color: #e887bb;
2023-12-25 15:12:01 +00:00
}