mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 03:31:42 +00:00
mejoras en la seleccion y temas oscuros
This commit is contained in:
parent
f8c50e6515
commit
e62dc1b115
1 changed files with 23 additions and 48 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue