sp-hydra-veil-gui/gui/resources/styles/look.css
2025-05-16 23:23:33 +01:00

72 lines
1.6 KiB
CSS

QLabel {
/* background-color: rgba(255, 255, 0, 0.2); */
font-family: Retro Gaming;
font-size: 18px;
color: rgb(0, 255, 255);
}
QLineEdit {
background-color:transparent;
font-family: Retro Gaming;
font-size: 18px;
color: rgb(0, 255, 255);
}
QLineEdit:focus {
border: none;
outline: none;
}
QTextEdit {
background-color:transparent;
font-family: Retro Gaming;
font-size: 18px;
color: rgb(0, 255, 255);
padding: 4px;
}
.browser-version {
font-family: "Retro Gaming";
font-size: 10px;
color: #888888;
}
.browser-version-large {
font-family: "Retro Gaming";
font-size: 25px;
color: rgb(0, 255, 255);
}
QLabel#label_profiles {
background-color: rgba(128, 128, 128, 0.5); /* Gray color with 50% opacity */
border-radius: 25px; /* Ajusta el valor según lo desees */
}
QComboBox {
background-color: transparent;
padding: 3px;
color: rgb(0, 255, 255);
border: none; /* Elimina los bordes */
font-family: "Retro Gaming"; /* Define el tipo de letra como Retro Gaming */
}
QPushButton {
border: none;
border-radius: 5px;
padding: 5px 10px;
background-color: rgba(20, 13, 19, 0.288);
color: rgb(255, 255, 255); /* Color del texto */
}
/* Cambios al pasar el mouse sobre el botón */
QPushButton:hover, QPushButton:checked {
background-color: rgba(67, 62, 87, 0.8);
}
/* Cambios al presionar el botón */
QPushButton:pressed, QPushButton:checked:pressed {
background-color: rgba(200, 200, 200, 1.0);
border: 1px solid #000fff; /* Borde al presionar el botón */
}