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

mejoras en la seleccion y temas oscuros

This commit is contained in:
f 2019-09-30 14:11:33 -03:00
parent f8c50e6515
commit e62dc1b115
No known key found for this signature in database
GPG key ID: 2AE5A13E321F953D

View file

@ -77,15 +77,10 @@ $fucsia: #e9193e;
$celeste: #91f0ff;
$verde: #96d643;
/* Tema */
ol.breadcrumb {
background-color: transparent;
}
.breadcrumb-item {
color: $black;
}
.form-control {
&:focus {
border-color: transparentize($verde, 0.25);
@ -93,20 +88,17 @@ ol.breadcrumb {
}
}
.btn-info {
background-color: $turquesa;
border-color: $turquesa;
&:focus {
box-shadow: 0 0 0 0.2rem transparentize($turquesa, 0.5);
}
.breadcrumb-item,
.breadcrumb-item.active,
.table,
.form-control,
.custom-file-label {
color: var(--foreground);
}
.btn-success {
background-color: $verde;
border-color: $verde;
&:focus {
box-shadow: 0 0 0 0.2rem transparentize($verde, 0.5);
}
.form-control,
.custom-file-label {
background-color: var(--background);
}
.turbolinks-progress-bar {
@ -114,37 +106,6 @@ ol.breadcrumb {
background-color: $magenta;
}
.background-cover {
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.full-height {
min-height: 80vh;
}
html {
position: relative;
min-height: 100%;
}
.footer {
width: 100%;
height: $footer-height;
line-height: $footer-height;
text-align: center;
}
textarea.post-content {
min-height: 80vh;
font-family: monospace;
font-size: 90%;
}
.rtl {
direction: rtl;
text-align: right;
@ -260,3 +221,17 @@ svg {
color: $white;
}
}
::-moz-selection,
::selection {
background: var(--color);
color: var(--background);
}
.black-bg {
::selection,
::-moz-selection {
background-color: $magenta;
color: $white;
}
}