tuxwebror/app/assets/stylesheets/application.scss
2018-12-21 19:06:39 +01:00

53 lines
1.4 KiB
SCSS

/*
* This is a manifest file that'll be compiled into application.css, which will include all the files
* listed below.
*
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
* vendor/assets/stylesheets directory can be referenced here using a relative path.
*
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
* compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
* files in this directory. Styles in this file should be added after the last require_* statement.
* It is generally better to create a new file per style scope.
*
*= require_tree .
*= require bulma/bulma
*= require_self
*/
@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono');
@import url('https://use.fontawesome.com/releases/v5.5.0/css/all.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.2.1/css/flag-icon.min.css');
@import "src/variables";
@import "bulma/_all";
@import "src/pad-mar";
html {
background: $sombre_mais-pas-noir;
}
#app {
min-height: 100vh;
display: flex;
flex-direction: column;
text-align: center;
@import "src/layouts/header";
@import "src/layouts/content";
@import "src/layouts/footer";
}
.turbolinks-progress-bar {
height: 5px;
border-top-right-radius: 2.5px;
border-bottom-right-radius: 2.5px;
background-color: darken($bleu-violet, 10%);
top: auto;
bottom: 0;
}