42 lines
1.3 KiB
CSS
42 lines
1.3 KiB
CSS
/* ==========================================================
|
||
SOLAR NET HUB – GTK3 Theme (YAD) – OASIS simple (fluido)
|
||
========================================================== */
|
||
|
||
@define-color bg #000000;
|
||
@define-color fg #E6E6E6;
|
||
@define-color accent #FF4E00;
|
||
@define-color accent_hover #27D980;
|
||
|
||
/* Tipografía y color global: tamaño moderado (mejor en HiDPI) */
|
||
* {
|
||
color: @fg;
|
||
font-family: "Dune Rise", "Cantarell", "Ubuntu", "DejaVu Sans", sans-serif;
|
||
font-size: 11pt; /* antes 13pt */
|
||
}
|
||
|
||
window, dialog, grid, box, scrolledwindow, viewport {
|
||
background-color: @bg;
|
||
}
|
||
grid { padding: 16px; } /* un poco menos de padding */
|
||
|
||
/* Botones sin tamaños rígidos: usa padding, no min-width/height */
|
||
button {
|
||
background: #000000;
|
||
color: @accent;
|
||
border: 2px solid @accent;
|
||
border-radius: 14px;
|
||
padding: 10px 14px; /* sustituye min-width/height por padding */
|
||
margin: 8px 0;
|
||
letter-spacing: 0.5px;
|
||
}
|
||
button:hover { background: @accent_hover; color: #000; }
|
||
button:active { background: @accent; color: #000; }
|
||
|
||
/* Limpieza de fondos parásitos en textos dentro de botones */
|
||
label, accellabel,
|
||
button label, button accellabel,
|
||
button * {
|
||
background: transparent;
|
||
background-color: transparent;
|
||
}
|
||
|