76 lines
1.1 KiB
CSS
76 lines
1.1 KiB
CSS
:root {
|
|
--text: #000;
|
|
--bg: #fff;
|
|
|
|
--item_bg: rgb(248, 246, 243);
|
|
--second_text: #6e6d6d;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
:root {
|
|
--text: #fff;
|
|
--bg: #222226;
|
|
|
|
--item_bg: #333336;
|
|
--second_text: #828282;
|
|
}
|
|
}
|
|
|
|
html {
|
|
padding: 10px;
|
|
}
|
|
|
|
body {
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-family: 'Roboto', sans-serif;
|
|
font-size: 16px;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
background-color: var(--bg);
|
|
color: var(--text);
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
background-color: var(--bg);
|
|
color: var(--text);
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: var(--bg);
|
|
color: var(--text);
|
|
}
|
|
|
|
.title {
|
|
text-align: center;
|
|
}
|
|
|
|
.item {
|
|
padding: 20px;
|
|
width: 400px;
|
|
color: var(--text);
|
|
background-color: var(--item_bg);
|
|
border-bottom: 1px solid var(--text);
|
|
}
|
|
|
|
.item_title {
|
|
font-weight: 600;
|
|
text-align: center;
|
|
}
|
|
|
|
.item_status {
|
|
text-align: end;
|
|
font-weight: 300;
|
|
color: var(--second_text);
|
|
}
|
|
|
|
.item_icon {
|
|
width: 25px;
|
|
}
|