umami/styles/index.css

92 lines
1.3 KiB
CSS
Raw Normal View History

2020-07-17 08:03:38 +00:00
html,
body {
2023-04-03 06:12:43 +00:00
font-family: Inter, sans-serif;
2023-01-10 07:59:26 +00:00
font-size: 14px;
font-weight: normal;
line-height: 1.5rem;
2020-07-17 08:03:38 +00:00
padding: 0;
margin: 0;
box-sizing: border-box;
2020-09-22 04:34:55 +00:00
min-height: 100%;
2020-09-20 08:33:39 +00:00
display: flex;
flex-direction: column;
2020-09-22 04:34:55 +00:00
flex: 1;
2022-12-13 04:46:43 +00:00
color: var(--font-color100);
background: var(--base50);
2020-07-17 08:03:38 +00:00
}
*,
*:before,
*:after {
box-sizing: inherit;
}
2020-08-07 05:03:02 +00:00
h1,
h2,
h3,
h4,
h5,
h6 {
2020-08-06 02:04:02 +00:00
font-weight: 400;
2020-10-10 03:37:24 +00:00
line-height: 30px;
padding: 0;
margin: 0;
2020-08-06 02:04:02 +00:00
}
2020-08-04 01:12:28 +00:00
a,
a:active,
a:visited {
color: var(--primary400);
2023-01-02 20:26:10 +00:00
text-decoration: none;
2020-07-24 02:56:55 +00:00
}
2023-02-04 16:59:52 +00:00
p {
line-height: 1.8rem;
}
2020-08-04 01:12:28 +00:00
main {
flex: 1;
2020-09-22 04:34:55 +00:00
display: flex;
flex-direction: column;
2020-08-04 01:12:28 +00:00
}
2020-09-20 22:42:01 +00:00
svg {
shape-rendering: geometricPrecision;
}
#__next {
display: flex;
flex-direction: column;
2023-03-22 04:28:36 +00:00
flex: 1;
width: 100%;
height: 100%;
}
2023-04-01 04:31:58 +00:00
::-webkit-scrollbar {
2023-04-02 03:40:01 +00:00
width: 15px;
background: var(--base50);
2023-04-01 04:31:58 +00:00
}
::-webkit-scrollbar-track {
2023-04-02 03:40:01 +00:00
border: 7px solid rgba(0, 0, 0, 0);
background-color: var(--base300);
background-clip: padding-box;
2023-04-01 04:31:58 +00:00
}
2023-04-02 03:40:01 +00:00
body::-webkit-scrollbar-track,
main::-webkit-scrollbar-track {
background-color: var(--base50);
2023-04-01 04:31:58 +00:00
}
::-webkit-scrollbar-thumb {
2023-04-02 03:40:01 +00:00
border: 7px solid rgba(0, 0, 0, 0);
background-color: var(--base600);
background-clip: padding-box;
2023-04-01 04:31:58 +00:00
}
::-webkit-scrollbar-thumb:hover {
2023-04-02 03:40:01 +00:00
border: 4px solid rgba(0, 0, 0, 0);
background-color: var(--base800);
background-clip: padding-box;
2023-04-01 04:31:58 +00:00
}