umami/styles/index.css

105 lines
1.2 KiB
CSS
Raw Permalink Normal View History

2020-07-17 08:03:38 +00:00
html,
body {
font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
2020-08-06 02:04:02 +00:00
font-size: var(--font-size-normal);
2020-07-24 02:56:55 +00:00
font-weight: 400;
2020-07-17 08:03:38 +00:00
line-height: 1.8;
padding: 0;
margin: 0;
width: 100%;
height: 100%;
box-sizing: border-box;
2020-08-06 02:04:02 +00:00
color: var(--gray900);
background: var(--gray75);
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-07-17 08:03:38 +00:00
#__next {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
2020-07-24 02:56:55 +00:00
}
button,
input,
select {
font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
}
2020-08-04 01:12:28 +00:00
a,
a:active,
a:visited {
2020-08-06 02:04:02 +00:00
color: var(--primary400);
2020-07-24 02:56:55 +00:00
}
2020-08-15 08:17:15 +00:00
input[type='text'],
input[type='password'],
2020-08-06 06:03:07 +00:00
textarea {
2020-08-06 02:04:02 +00:00
padding: 4px 8px;
2020-08-06 06:03:07 +00:00
font-size: var(--font-size-normal);
line-height: 1.8;
2020-08-06 02:04:02 +00:00
border: 1px solid var(--gray500);
border-radius: 4px;
outline: none;
2020-08-08 03:36:57 +00:00
resize: none;
flex: 1;
}
2020-08-15 08:17:15 +00:00
input[type='checkbox'] + label {
margin-left: 10px;
}
label {
flex: 1;
margin-right: 20px;
2020-07-24 02:56:55 +00:00
}
2020-07-31 03:11:43 +00:00
2020-08-15 08:17:15 +00:00
label:empty {
flex: 0;
}
2020-08-09 06:48:43 +00:00
dt {
font-weight: 600;
}
dd {
margin: 0 0 10px 0;
2020-07-31 03:11:43 +00:00
}
2020-08-02 04:20:52 +00:00
2020-08-04 01:12:28 +00:00
main {
flex: 1;
2020-08-04 01:12:28 +00:00
}
.container {
2020-08-05 05:45:05 +00:00
padding: 0;
2020-08-04 01:12:28 +00:00
}
2020-08-02 04:20:52 +00:00
.row {
margin-right: 0;
margin-left: 0;
}
.row > .col,
.row > [class*='col-'] {
padding-right: 0;
padding-left: 0;
}
2020-08-08 03:36:57 +00:00
.center {
text-align: center;
}