wip
This commit is contained in:
@@ -1,8 +1,19 @@
|
||||
#main_container {
|
||||
border-radius: 30px;
|
||||
background-image: url(:/assets/background.png);
|
||||
/*background-image: url(:/assets/background.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-position: center; */
|
||||
/*background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
stop: 0 #050a0f,
|
||||
stop: 1 #0f172a);*/
|
||||
background: qradialgradient(cx:0.5, cy:0.5, radius:0.8, fx:0.5, fy:0.5,
|
||||
stop: 0 #16213e,
|
||||
stop: 1 #0a0e14);
|
||||
|
||||
/*background: qlineargradient(x1:0, y1:0, x2:1, y2:1,
|
||||
stop: 0 #0d1117,
|
||||
stop: 0.7 #0d1117,
|
||||
stop: 1 #1e3a8a); /* Une pointe de bleu plus vif en bas à droite */
|
||||
}
|
||||
|
||||
QLabel#maintitle_label {
|
||||
@@ -24,26 +35,65 @@ QLabel#queue_lbl {
|
||||
}
|
||||
|
||||
QPushButton#connexion_btn {
|
||||
border-radius: 15px;
|
||||
/* border-radius: 15px;
|
||||
background-color: rgb(255, 120, 0);
|
||||
color: rgb(255, 255, 255);
|
||||
color: rgb(255, 255, 255); */
|
||||
/* Dégradé chaleureux : Orange vers Orange-Rouge */
|
||||
background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
stop: 0 #ff9d00,
|
||||
stop: 1 #f56100);
|
||||
|
||||
border-radius: 12px;
|
||||
border: 1px solid #b34700;
|
||||
color: white;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
QPushButton#connexion_btn:hover {
|
||||
background: #ffad66;
|
||||
/* background: #ffad66; */
|
||||
background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
stop: 0 #ffb338,
|
||||
stop: 1 #ff7a29);
|
||||
border: 1px solid #ffcc80;
|
||||
/* Un léger halo autour du bouton */
|
||||
outline: none;
|
||||
}
|
||||
|
||||
QPushButton#connexionBtn:pressed {
|
||||
background: #cc5200;
|
||||
padding-top: 12px; /* Effet d'enfoncement */
|
||||
}
|
||||
|
||||
QPushButton#discord_btn,
|
||||
QPushButton#intranet_btn
|
||||
{
|
||||
border-radius: 15px;
|
||||
/*border-radius: 15px;
|
||||
background-color: rgb(32, 58, 67);
|
||||
color: rgb(255, 255, 255);
|
||||
color: rgb(255, 255, 255);*/
|
||||
background-color: rgba(32, 58, 67, 0.6); /* Bleu très sombre semi-transparent */
|
||||
border: 1px solid rgba(255, 255, 255, 0.1);
|
||||
border-radius: 8px;
|
||||
color: #e2e8f0;
|
||||
font-weight: bold;
|
||||
padding: 8px 15px;
|
||||
}
|
||||
|
||||
QPushButton#discord_btn:hover {
|
||||
background-color: rgba(88, 101, 242, 0.4); /* Fond bleu Discord translucide */
|
||||
border: 2px solid #7289da; /* Bordure plus épaisse et claire pour l'éclat */
|
||||
color: white;
|
||||
}
|
||||
|
||||
QPushButton#discord_btn:hover,
|
||||
QPushButton#intranet_btn:hover {
|
||||
background: rgb(68, 124, 143);
|
||||
/* background: rgb(68, 124, 143); */
|
||||
background-color: rgba(0, 242, 255, 0.15); /* Teinte turquoise légère en fond */
|
||||
border: 2px solid #00f2ff; /* Bordure turquoise vive et épaisse */
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
QPushButton#discordBtn:pressed, QPushButton#intranetBtn:pressed {
|
||||
background-color: #0f172a;
|
||||
padding-top: 10px; /* Petit effet d'enfoncement */
|
||||
}
|
||||
|
||||
QPushButton#volume_btn {
|
||||
|
||||
Reference in New Issue
Block a user