73 lines
1.4 KiB
CSS
73 lines
1.4 KiB
CSS
/* stylesheet.css - Styles pour l'extension ASUS Keyboard RGB */
|
|
|
|
/* Titre du menu */
|
|
.rgb-title {
|
|
font-weight: bold;
|
|
font-size: 1.1em;
|
|
padding: 8px 0;
|
|
}
|
|
|
|
/* Boutons d'intensité */
|
|
.brightness-button {
|
|
background-color: rgba(255, 255, 255, 0.05);
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
border-radius: 6px;
|
|
padding: 8px 16px;
|
|
font-weight: normal;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.brightness-button:hover {
|
|
background-color: rgba(255, 255, 255, 0.1);
|
|
border-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.brightness-button.active {
|
|
background-color: rgba(53, 132, 228, 0.8);
|
|
border-color: rgba(53, 132, 228, 1);
|
|
font-weight: bold;
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* Ligne d'information */
|
|
.info-line {
|
|
font-family: monospace;
|
|
font-size: 0.9em;
|
|
color: rgba(255, 255, 255, 0.7);
|
|
padding: 4px 0;
|
|
}
|
|
|
|
/* Boutons preset */
|
|
.preset-button {
|
|
border: 2px solid rgba(255, 255, 255, 0.2);
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
.preset-button:hover {
|
|
border-color: rgba(255, 255, 255, 0.6);
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.preset-button:active {
|
|
transform: scale(0.95);
|
|
}
|
|
|
|
/* Boîte d'erreur */
|
|
.error-box {
|
|
padding: 12px;
|
|
margin: 8px;
|
|
}
|
|
|
|
.error-title {
|
|
font-weight: bold;
|
|
font-size: 1.1em;
|
|
color: #ff6b6b;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.error-message {
|
|
font-size: 0.9em;
|
|
color: rgba(255, 255, 255, 0.8);
|
|
line-height: 1.4;
|
|
}
|