2019-12-19 23:09:23 +01:00
|
|
|
@import '../../../node_modules/bulma/bulma';
|
|
|
|
|
2020-07-07 22:16:13 +02:00
|
|
|
@import 'fonts';
|
|
|
|
|
2020-06-17 21:44:44 +02:00
|
|
|
@import 'variables-derived';
|
|
|
|
|
2020-05-09 21:46:28 +02:00
|
|
|
*, *:hover, *:active, *:focus {
|
2019-12-19 23:09:23 +01:00
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
2020-11-22 17:47:47 +01:00
|
|
|
:focus {
|
|
|
|
box-shadow: 0 0 0 2px rgba($primary, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
:focus:not(:focus-visible) {
|
|
|
|
outline: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
:focus-visible, :-moz-focusring {
|
|
|
|
box-shadow: 0 0 0 2px rgba($primary, 0.5);
|
|
|
|
}
|
|
|
|
|
2019-12-19 23:09:23 +01:00
|
|
|
body {
|
|
|
|
background: url('../../public/images/llama.svg') no-repeat bottom left fixed $light-background;
|
|
|
|
min-height: 100vh;
|
2020-05-09 21:46:28 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: $tablet) {
|
|
|
|
&:not(.has-llama) {
|
|
|
|
background: $light-background;
|
|
|
|
}
|
|
|
|
}
|
2019-12-19 23:09:23 +01:00
|
|
|
}
|
|
|
|
|
2020-05-09 21:46:28 +02:00
|
|
|
h1, h2, h3, h4, h5, h6 {
|
2019-12-19 23:09:23 +01:00
|
|
|
font-family: $vikunja-font;
|
|
|
|
font-weight: 400 !important;
|
|
|
|
}
|
2020-05-09 21:46:28 +02:00
|
|
|
|
2019-12-19 23:09:23 +01:00
|
|
|
.logo {
|
|
|
|
|
|
|
|
padding-left: 2rem !important;
|
|
|
|
|
|
|
|
img {
|
|
|
|
max-height: 3rem !important;
|
|
|
|
margin-right: 1rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.progress {
|
|
|
|
border-radius: $radius-large;
|
|
|
|
}
|
2020-01-22 21:18:39 +01:00
|
|
|
|
2020-05-09 21:46:28 +02:00
|
|
|
.has-no-border {
|
2020-01-22 21:18:39 +01:00
|
|
|
border: none !important;
|
|
|
|
}
|
2020-02-25 21:11:36 +01:00
|
|
|
|
|
|
|
.has-rounded-corners {
|
|
|
|
border-radius: $radius;
|
|
|
|
}
|
|
|
|
|
2020-05-09 21:46:28 +02:00
|
|
|
.image.is-avatar {
|
2020-02-25 21:11:36 +01:00
|
|
|
border-radius: 100%;
|
|
|
|
}
|
2020-03-26 22:21:09 +01:00
|
|
|
|
|
|
|
button.table {
|
|
|
|
margin-bottom: 0 !important;
|
2020-04-26 01:11:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.dropdown-item.is-disabled {
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
}
|
2020-05-31 21:17:10 +02:00
|
|
|
|
|
|
|
.pagination {
|
|
|
|
padding-bottom: 1em;
|
2020-08-11 20:32:17 +02:00
|
|
|
|
|
|
|
.pagination-previous, .pagination-next {
|
|
|
|
&:not(:disabled):hover {
|
|
|
|
background: $button-background-color;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2020-05-31 21:17:10 +02:00
|
|
|
}
|
2020-07-03 19:37:20 +02:00
|
|
|
|
|
|
|
.is-max-width-desktop {
|
|
|
|
width: 100%;
|
|
|
|
max-width: $desktop;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
2020-07-25 16:52:04 +02:00
|
|
|
|
|
|
|
.has-no-shadow {
|
|
|
|
box-shadow: none !important;
|
|
|
|
}
|