umami/styles/index.css
2020-08-05 23:03:07 -07:00

85 lines
1.1 KiB
CSS

html,
body {
font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
font-size: var(--font-size-normal);
font-weight: 400;
line-height: 1.8;
padding: 0;
margin: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
color: var(--gray900);
background: var(--gray75);
}
*,
*:before,
*:after {
box-sizing: inherit;
}
h2 {
font-weight: 400;
}
#__next {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
}
button,
input,
select {
font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}
a,
a:active,
a:visited {
color: var(--primary400);
}
form label {
display: inline-block;
min-width: 100px;
}
input,
textarea {
padding: 4px 8px;
margin-right: 10px;
margin-bottom: 20px;
font-size: var(--font-size-normal);
line-height: 1.8;
border: 1px solid var(--gray500);
border-radius: 4px;
outline: none;
}
select {
padding: 4px 8px;
border: 1px solid var(--gray500) !important;
border-radius: 4px;
}
main {
flex: 1;
}
.container {
padding: 0;
}
.row {
margin-right: 0;
margin-left: 0;
}
.row > .col,
.row > [class*='col-'] {
padding-right: 0;
padding-left: 0;
}