44 lines
1.2 KiB
CSS
44 lines
1.2 KiB
CSS
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;700&display=swap');
|
|
@import url('https://fonts.cdnfonts.com/css/bender');
|
|
@import url('https://fonts.cdnfonts.com/css/geometos');
|
|
|
|
:root {
|
|
--text-color: rgba(255, 255, 255, 0.87);
|
|
--date-color: rgba(255, 255, 255, 0.2);
|
|
--border-color: #707070;
|
|
--link-highlight-color: #33b5e5;
|
|
--drawer-background-color: rgba(0, 0, 0, 0.88);
|
|
--root-background-color: #131313;
|
|
--home-item-hover-background-color: rgba(67, 67, 67, 0.3);
|
|
--home-item-background-linear-gradient-color: rgba(255, 255, 255, 0.1);
|
|
--home-item-outline-color: rgba(214, 214, 214, 0.3);
|
|
--button-color: #666;
|
|
|
|
font-family: "Geometos", "Noto Sans SC", sans-serif;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
font-weight: 400;
|
|
|
|
color: var(--text-color);
|
|
background-color: var(--root-background-color);
|
|
min-height: 100vh;
|
|
|
|
font-synthesis: none;
|
|
text-rendering: optimizeLegibility;
|
|
|
|
}
|
|
|
|
#root {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
align-content: flex-start;
|
|
justify-content: flex-start;
|
|
align-items: stretch;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
a {
|
|
color: var(--text-color);
|
|
text-decoration: none;
|
|
} |