parsley/app/javascript/styles/index.scss

51 lines
980 B
SCSS
Raw Normal View History

2018-03-30 14:31:09 -05:00
@import "./variables";
@import "~bulma/sass/utilities/_all";
@import "~bulma/sass/base/_all";
2018-08-28 16:52:56 -05:00
@import "~bulma/sass/components/dropdown";
2018-03-30 14:31:09 -05:00
@import "~bulma/sass/components/navbar";
2018-04-01 21:43:23 -05:00
@import "~bulma/sass/components/level";
@import "~bulma/sass/components/message";
2018-03-30 17:08:09 -05:00
@import "~bulma/sass/components/modal";
2018-04-03 18:31:20 -05:00
@import "~bulma/sass/components/pagination";
2018-03-30 14:31:09 -05:00
@import "~bulma/sass/elements/_all";
@import "~bulma/sass/grid/columns";
@import "~bulma/sass/layout/section";
2018-04-01 21:43:23 -05:00
@import "./responsive_controls";
2018-05-01 10:55:57 -05:00
@import "./wide_modal";
2018-08-29 16:58:07 -05:00
@import "./iconic";
2018-04-01 21:43:23 -05:00
2018-04-02 00:10:06 -05:00
html {
height: 100%;
}
body {
2018-04-01 22:32:13 -05:00
min-height: 100%;
}
2018-03-30 14:31:09 -05:00
body {
background-color: $grey-dark;
2018-04-01 22:32:13 -05:00
padding-bottom: 2rem;
2018-03-30 14:31:09 -05:00
}
2018-04-01 21:43:23 -05:00
#app {
padding-top: 1rem;
.container {
padding: 1rem;
background-color: $white;
}
2018-04-07 10:54:56 -05:00
}
.title, .subtitle, .navbar, .button, .pagination, .modal-card-title, th {
font-family: $family-sans-serif;
}
.pagination:not(:last-child) {
margin-bottom: 1em;
}
2018-04-17 09:59:38 -05:00
.is-strikethrough {
text-decoration: line-through;
}