5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-03 22:15:45 +00:00

tema verdecito

This commit is contained in:
f 2018-02-24 19:40:31 -03:00
parent 03ea2351ef
commit 7d79f13619
No known key found for this signature in database
GPG key ID: F3FDAB97B5F9F7E7
2 changed files with 41 additions and 2 deletions

View file

@ -6,13 +6,52 @@
$footer-height: 60px;
/* Colores */
$purpura: #67103d;
$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);
}
}
.turbolinks-progress-bar {
height: 3px;
background-color: $purpura;
}
.background-cover {
background: image-url("background.jpg") no-repeat center center fixed;
-webkit-background-size: cover;

View file

@ -39,7 +39,7 @@
%br
%td= post.date.strftime('%F')
%td= link_to t('post.edit'),
%td= link_to t('posts.edit'),
edit_site_post_path(@site, post),
class: 'btn btn-info'
- else