parsley/app/javascript/styles/index.scss

60 lines
1.1 KiB
SCSS
Raw Normal View History

// coolors.co pallet
$coolors-dark: rgba(29, 30, 24, 1);
$coolors-blue: rgba(67, 127, 151, 1);
$coolors-green: rgba(121, 167, 54, 1);
$coolors-red: #ab4c34;
$coolors-yellow: rgba(240, 162, 2, 1);
$family-serif: Georgia, "Times New Roman", Times, serif;
@use "bulma/sass" as bulma with (
$family-primary: $family-serif,
$green: $coolors-green,
$blue: $coolors-blue,
$red: $coolors-red,
$yellow: $coolors-yellow,
$dark: $coolors-dark,
$primary: $coolors-green,
$modal-content-width: 750px
);
2024-09-29 09:44:40 -05:00
@import "./responsive_controls";
@import "./wide_modal";
2018-08-29 16:58:07 -05:00
@import "./iconic";
2018-09-05 17:49:21 -05:00
@import "./transitions";
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: bulma.$grey-dark;
2018-04-01 22:32:13 -05:00
padding-bottom: 2rem;
2018-03-30 14:31:09 -05:00
}
#main {
2018-04-01 21:43:23 -05:00
padding-top: 1rem;
.container {
padding: 1rem;
background-color: bulma.$white;
2018-09-13 14:51:41 -05:00
min-height: 75vh;
2018-04-01 21:43:23 -05:00
}
2018-04-07 10:54:56 -05:00
}
.title, .subtitle, .navbar, .button, .pagination, .modal-card-title, th {
font-family: bulma.$family-sans-serif;
2018-04-07 10:54:56 -05:00
}
.pagination:not(:last-child) {
margin-bottom: 1em;
}
2018-04-17 09:59:38 -05:00
.is-strikethrough {
text-decoration: line-through;
2019-09-10 17:04:33 -05:00
}