umami/styles/index.css

83 lines
1.1 KiB
CSS
Raw Normal View History

2020-07-17 10:03:38 +02:00
html,
body {
font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
2020-08-06 04:04:02 +02:00
font-size: var(--font-size-normal);
2020-07-24 04:56:55 +02:00
font-weight: 400;
2020-07-17 10:03:38 +02:00
line-height: 1.8;
padding: 0;
margin: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
2020-08-06 04:04:02 +02:00
color: var(--gray900);
background: var(--gray75);
2020-07-17 10:03:38 +02:00
}
*,
*:before,
*:after {
box-sizing: inherit;
}
2020-08-06 04:04:02 +02:00
h2 {
font-weight: 400;
}
2020-07-17 10:03:38 +02:00
#__next {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
2020-07-24 04:56:55 +02:00
}
button,
input,
select {
font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}
2020-08-04 03:12:28 +02:00
a,
a:active,
a:visited {
2020-08-06 04:04:02 +02:00
color: var(--primary400);
2020-07-24 04:56:55 +02:00
}
form label {
display: inline-block;
min-width: 100px;
}
2020-08-06 04:04:02 +02:00
form input,
form textarea {
padding: 4px 8px;
2020-07-24 04:56:55 +02:00
margin-right: 10px;
2020-08-06 04:04:02 +02:00
margin-bottom: 20px;
border: 1px solid var(--gray500);
border-radius: 4px;
outline: none;
2020-07-24 04:56:55 +02:00
}
2020-07-31 05:11:43 +02:00
select {
padding: 4px 8px;
2020-08-06 04:04:02 +02:00
border: 1px solid var(--gray500);
2020-07-31 05:11:43 +02:00
border-radius: 4px;
}
2020-08-02 06:20:52 +02:00
2020-08-04 03:12:28 +02:00
main {
flex: 1;
2020-08-04 03:12:28 +02:00
}
.container {
2020-08-05 07:45:05 +02:00
padding: 0;
2020-08-04 03:12:28 +02:00
}
2020-08-02 06:20:52 +02:00
.row {
margin-right: 0;
margin-left: 0;
}
.row > .col,
.row > [class*='col-'] {
padding-right: 0;
padding-left: 0;
}