2018-01-29 18:09:30 +00:00
|
|
|
@import "bootstrap";
|
2018-02-03 14:02:21 +00:00
|
|
|
@import "bootstrap-markdown/css/bootstrap-markdown.min";
|
|
|
|
@import "font-awesome";
|
2018-02-03 23:41:02 +00:00
|
|
|
@import "select2/dist/css/select2";
|
2018-01-29 18:09:30 +00:00
|
|
|
|
|
|
|
$footer-height: 60px;
|
|
|
|
|
2018-02-03 14:02:21 +00:00
|
|
|
/* Colores */
|
|
|
|
$purpura: #67103d;
|
|
|
|
|
|
|
|
.turbolinks-progress-bar {
|
2018-02-03 22:35:14 +00:00
|
|
|
height: 3px;
|
2018-02-03 14:02:21 +00:00
|
|
|
background-color: $purpura;
|
|
|
|
}
|
|
|
|
|
2018-01-29 18:09:30 +00:00
|
|
|
.background-cover {
|
|
|
|
background: image-url("background.jpg") no-repeat center center fixed;
|
|
|
|
-webkit-background-size: cover;
|
|
|
|
-moz-background-size: cover;
|
|
|
|
-o-background-size: cover;
|
|
|
|
background-size: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.full-height {
|
|
|
|
height: calc(100vh - #{$footer-height});
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
position: relative;
|
|
|
|
min-height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin-bottom: $footer-height;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: $footer-height;
|
|
|
|
line-height: $footer-height;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
textarea.post-content {
|
|
|
|
min-height: 80vh;
|
|
|
|
font-family: monospace;
|
2018-01-31 20:29:27 +00:00
|
|
|
font-size: 90%;
|
2018-01-29 18:09:30 +00:00
|
|
|
}
|