5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-03 23:45:45 +00:00
panel/app/assets/stylesheets/application.scss

95 lines
1.5 KiB
SCSS
Raw Normal View History

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";
@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 */
2018-02-24 22:40:31 +00:00
$purpura: #5c004d;
$turquesa: #009389;
$azul: #0b2660;
$fucsia: #e9193e;
$celeste: #91f0ff;
$verde: #96d643;
/* Tema */
ol.breadcrumb {
background-color: white;
}
.breadcrumb-item {
color: black;
}
.form-control {
&:focus {
border-color: transparentize($verde, 0.25);
box-shadow: 0 0 0 0.2rem transparentize($verde, 0.75);
}
}
.btn-info {
background-color: $turquesa;
border-color: $turquesa;
&:focus {
box-shadow: 0 0 0 0.2rem transparentize($turquesa, 0.5);
}
}
.btn-success {
background-color: $verde;
border-color: $verde;
&:focus {
box-shadow: 0 0 0 0.2rem transparentize($verde, 0.5);
}
}
2018-02-03 14:02:21 +00:00
.turbolinks-progress-bar {
height: 3px;
2018-02-03 14:02:21 +00:00
background-color: $purpura;
}
2018-02-24 22:40:31 +00:00
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
}
2018-02-10 16:09:42 +00:00
.rtl {
direction: rtl;
text-align: right;
}