103 lines
1.6 KiB
CSS
103 lines
1.6 KiB
CSS
|
:root {
|
||
|
font-family: Inter, "Segoe UI", system-ui, Avenir, Helvetica, Arial, sans-serif;
|
||
|
line-height: 1.5;
|
||
|
|
||
|
color: rgba(255, 255, 255, 0.87);
|
||
|
background-color: #242424;
|
||
|
|
||
|
font-synthesis: none;
|
||
|
text-rendering: optimizeLegibility;
|
||
|
-webkit-font-smoothing: antialiased;
|
||
|
-moz-osx-font-smoothing: grayscale;
|
||
|
-webkit-text-size-adjust: 100%;
|
||
|
}
|
||
|
|
||
|
h1, h2, h3, h4, h5, h6, p {
|
||
|
margin: 0;
|
||
|
}
|
||
|
|
||
|
ul, ol {
|
||
|
margin-top: 0;
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
font-weight: 500;
|
||
|
color: #646cff;
|
||
|
text-decoration: inherit;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #535bf2;
|
||
|
}
|
||
|
|
||
|
summary:hover {
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
main {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: 1rem;
|
||
|
}
|
||
|
|
||
|
main > div {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: 1rem;
|
||
|
}
|
||
|
|
||
|
.notices {
|
||
|
border: #fafafa solid 1px;
|
||
|
padding: .5rem;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.notice {
|
||
|
margin: 1rem 0;
|
||
|
}
|
||
|
|
||
|
.expected-status, .affected-services, .expected-duration {
|
||
|
padding-left: 1rem;
|
||
|
}
|
||
|
|
||
|
.services {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(3, 1fr);
|
||
|
gap: 1rem;
|
||
|
}
|
||
|
|
||
|
.service, .status {
|
||
|
border: #fafafa solid 1px;
|
||
|
padding: 1rem;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.contact, .statuses {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
gap: 1rem;
|
||
|
}
|
||
|
|
||
|
.individual-contact {
|
||
|
border: #fafafa solid 1px;
|
||
|
padding: 1rem;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
|
||
|
.contact-metadata, .contact-links {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
gap: 1rem;
|
||
|
}
|
||
|
|
||
|
.contact-metadata img {
|
||
|
border-radius: 99999px;
|
||
|
}
|
||
|
|
||
|
@media only screen and (max-width: 1000px) {
|
||
|
.services {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
}
|
||
|
}
|