wip: refacto qss, new assets
This commit is contained in:
@@ -1,8 +1,27 @@
|
||||
QPushButton#connexion_btn {
|
||||
border-radius: 15px;
|
||||
background-color: rgb(255, 120, 0);
|
||||
#main_container {
|
||||
border-radius: 30px;
|
||||
background-image: url(:/assets/background.png);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
||||
|
||||
QLabel#maintitle_label {
|
||||
font-size: 38px;
|
||||
}
|
||||
|
||||
QLabel#subtitle_label {
|
||||
color: rgb(163, 177, 198);
|
||||
}
|
||||
|
||||
QLabel#queue_position {
|
||||
font-size: 36px;
|
||||
color: rgb(17, 248, 183);
|
||||
}
|
||||
|
||||
QPushButton#connexion_btn {
|
||||
border-radius: 15px;
|
||||
background-color: rgb(255, 120, 0);
|
||||
}
|
||||
|
||||
QPushButton#connexion_btn:hover {
|
||||
background: #ffad66;
|
||||
@@ -10,89 +29,83 @@ QPushButton#connexion_btn:hover {
|
||||
|
||||
QPushButton#discord_btn,
|
||||
QPushButton#intranet_btn
|
||||
{
|
||||
border-radius: 15px;
|
||||
background-color: #203a43;
|
||||
{
|
||||
border-radius: 15px;
|
||||
background-color: rgb(32, 58, 67);
|
||||
}
|
||||
|
||||
QPushButton#discord_btn:hover,
|
||||
QPushButton#intranet_btn:hover {
|
||||
background: rgb(68, 124, 143);
|
||||
}
|
||||
|
||||
QPushButton#volume_btn {
|
||||
border-radius: 15px;
|
||||
background-color: rgb(255, 120, 0);
|
||||
}
|
||||
|
||||
QPushButton#close_btn {
|
||||
border : 0;
|
||||
background: transparent;
|
||||
border : 0;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
QPushButton#minimize_btn {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
border-bottom: 5px solid white;
|
||||
color: white;
|
||||
font-size: 18px;
|
||||
padding: 0px;
|
||||
padding-top: 0
|
||||
border: none;
|
||||
border-bottom: 5px solid white;
|
||||
color: white;
|
||||
font-size: 18px;
|
||||
padding: 0px;
|
||||
padding-top: 0
|
||||
}
|
||||
|
||||
QFrame#info_frame{
|
||||
background: qlineargradient(
|
||||
x1:0, y1:0,
|
||||
x2:0, y2:1,
|
||||
stop:0 rgba(255,255,255,30),
|
||||
stop:1 rgba(255,255,255,30)
|
||||
);
|
||||
border-radius: 20px;
|
||||
border: 1px solid rgba(255,255,255,140);
|
||||
}
|
||||
|
||||
QTextEdit#info_text {
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/*
|
||||
QSlider::groove:horizontal {
|
||||
border: 1px solid #262626;
|
||||
height: 10px;
|
||||
}
|
||||
QSlider::handle:horizontal {
|
||||
background: rgb(236, 127, 43);
|
||||
border: 1px solid rgb(236, 127, 43);
|
||||
width: 23px;
|
||||
border-radius: 3px;
|
||||
height: 100px;
|
||||
margin: -24px -12px;
|
||||
}
|
||||
|
||||
QSlider::sub-page:horizontal{
|
||||
border:0px;
|
||||
border-radius:6px;
|
||||
background:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 #12b9ff, stop: 1.0 #015eea);
|
||||
}
|
||||
|
||||
QSlider::add-page:horizontal{
|
||||
border:0px;
|
||||
border-radius:6px;
|
||||
background:qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,stop: 0 rgb(146, 149, 150), stop: 1.0 rgb(253, 254, 254));
|
||||
}
|
||||
*/
|
||||
|
||||
QSlider::groove:horizontal {
|
||||
border: 1px inset #1C1C1C;
|
||||
height: 6px;
|
||||
border-radius: 3px;
|
||||
background-color: transparent;
|
||||
border: none;
|
||||
}
|
||||
|
||||
QSlider::groove:horizontal {
|
||||
border: 1px inset #1C1C1C;
|
||||
height: 6px;
|
||||
border-radius: 3px;
|
||||
border: 1px inset #1C1C1C;
|
||||
height: 6px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
QSlider::groove:horizontal {
|
||||
border: 1px inset #1C1C1C;
|
||||
height: 6px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
QSlider::sub-page:horizontal {
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #12b9ff, stop: 1.0 #015eea);
|
||||
border: 1px inset #1C1C1C;
|
||||
border-radius: 3px;
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #12b9ff, stop: 1.0 #015eea);
|
||||
border: 1px inset #1C1C1C;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
/* groove background on right of slider */
|
||||
QSlider::add-page:horizontal {
|
||||
background: #7D7D7D;
|
||||
border: 1px outset #1C1C1C;
|
||||
border-radius: 3px;
|
||||
background: #7D7D7D;
|
||||
border: 1px outset #1C1C1C;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
QSlider::handle:horizontal {
|
||||
background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 rgb(241, 160, 61), stop:1 rgb(233, 111, 29));
|
||||
border: 1px solid rgb(213, 125, 2);
|
||||
width: 12px;
|
||||
height: 10px;
|
||||
margin-top: -8px;
|
||||
margin-bottom: -8px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 rgb(78, 195, 146), stop:1 rgb(57, 144, 107));
|
||||
border: 1px solid rgb(78, 195, 146);
|
||||
width: 12px;
|
||||
height: 10px;
|
||||
margin-top: -8px;
|
||||
margin-bottom: -8px;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user