mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-14 17:25:02 +01:00
105 lines
1.2 KiB
CSS
105 lines
1.2 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;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
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);
|
|
}
|
|
|
|
input[type='text'],
|
|
input[type='password'],
|
|
textarea {
|
|
padding: 4px 8px;
|
|
font-size: var(--font-size-normal);
|
|
line-height: 1.8;
|
|
border: 1px solid var(--gray500);
|
|
border-radius: 4px;
|
|
outline: none;
|
|
resize: none;
|
|
flex: 1;
|
|
}
|
|
|
|
input[type='checkbox'] + label {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
label {
|
|
flex: 1;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
label:empty {
|
|
flex: 0;
|
|
}
|
|
|
|
dt {
|
|
font-weight: 600;
|
|
}
|
|
|
|
dd {
|
|
margin: 0 0 10px 0;
|
|
}
|
|
|
|
main {
|
|
flex: 1;
|
|
}
|
|
|
|
.container {
|
|
padding: 0;
|
|
}
|
|
|
|
.row {
|
|
margin-right: 0;
|
|
margin-left: 0;
|
|
}
|
|
.row > .col,
|
|
.row > [class*='col-'] {
|
|
padding-right: 0;
|
|
padding-left: 0;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|