update
This commit is contained in:
commit
ceda095a39
20 changed files with 1069 additions and 0 deletions
75
src/Template.astro
Normal file
75
src/Template.astro
Normal file
File diff suppressed because one or more lines are too long
143
src/style.css
Normal file
143
src/style.css
Normal file
|
@ -0,0 +1,143 @@
|
|||
|
||||
@import "https://fonts.bunny.net/css?family=poppins:300,700|raleway:400,700|red-hat-text:400,700";
|
||||
body {
|
||||
background: #000;
|
||||
color: #fff;
|
||||
font-family: Poppins, sans-serif;
|
||||
margin: auto;
|
||||
max-width: 600px;
|
||||
}
|
||||
body:before {
|
||||
content: "";
|
||||
background: radial-gradient(at center top, rgba(var(--Theme), 0.5), #010101);
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
a#the-status {
|
||||
padding: 12px 24px;
|
||||
border-radius: 3rem;
|
||||
font-family: Red Hat Text, sans-serif;
|
||||
font-size: 16px;
|
||||
display: flex;
|
||||
gap: 12px;
|
||||
}
|
||||
.LetterV {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 9px;
|
||||
width: 500px !important;
|
||||
margin-right: -150px;
|
||||
}
|
||||
.status-loading svg {
|
||||
width: 24px;
|
||||
fill: #fff;
|
||||
transform: translateY(6px);
|
||||
animation: 1s spin linear infinite;
|
||||
margin: 0 0 -6px;
|
||||
}
|
||||
@keyframes spin {
|
||||
0% {
|
||||
transform: rotate(0);
|
||||
}
|
||||
to {
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
.mbf-start svg {
|
||||
fill: #fff;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border-radius: 50px;
|
||||
padding: 10px;
|
||||
margin: -10px 8px -10px -10px;
|
||||
}
|
||||
.mbf-start svg:hover {
|
||||
background-color: rgba(var(--Theme), 0.5);
|
||||
}
|
||||
.styl-box svg {
|
||||
width: 160px;
|
||||
height: 130px;
|
||||
}
|
||||
.status {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 24px;
|
||||
opacity: 0.5;
|
||||
}
|
||||
content {
|
||||
margin-top: 20%;
|
||||
position: absolute;
|
||||
max-width: 600px;
|
||||
width: 100%;
|
||||
}
|
||||
@media only screen and (max-height: 900px) {
|
||||
content {
|
||||
margin-top: 120px !important;
|
||||
}
|
||||
}
|
||||
@media only screen and (max-width: 600px) {
|
||||
content {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
br {
|
||||
display: none !important;
|
||||
}
|
||||
.styl-box,
|
||||
.message-box {
|
||||
border-radius: 0 !important;
|
||||
}
|
||||
.message-box-footer {
|
||||
border-radius: 0 !important;
|
||||
position: fixed !important;
|
||||
bottom: 0 !important;
|
||||
left: 0 !important;
|
||||
width: calc(100% - 64px) !important;
|
||||
padding: 12px 32px !important;
|
||||
margin: auto !important;
|
||||
}
|
||||
.LetterV {
|
||||
margin-right: -50px;
|
||||
opacity: 0.25;
|
||||
}
|
||||
}
|
||||
.styl-box {
|
||||
background-color: rgb(var(--Theme));
|
||||
display: flex;
|
||||
align-items: center;
|
||||
border-radius: 24px 24px 0 0;
|
||||
justify-content: space-between;
|
||||
padding: 18px 32px;
|
||||
}
|
||||
.sytl-start {
|
||||
font-size: 18px;
|
||||
}
|
||||
.message-box {
|
||||
background: rgba(var(--Theme), 0.32);
|
||||
border-radius: 0 0 24px 24px;
|
||||
padding: 12px 24px;
|
||||
}
|
||||
.message-box-footer {
|
||||
background: #00000040;
|
||||
margin: 32px -32px -24px;
|
||||
border-radius: 0 0 24px 24px;
|
||||
padding: 20px 32px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
font-size: 14px;
|
||||
}
|
||||
a[href="https://status.sudovanilla.org"] img
|
||||
{
|
||||
height: 36px;
|
||||
margin: 0 0 -8px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue