173 lines
2.8 KiB
Plaintext
173 lines
2.8 KiB
Plaintext
/*Copyright (c) DevSec Studio. All rights reserved.
|
|
|
|
MIT License
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
/*-----QWidget-----*/
|
|
QWidget
|
|
{
|
|
background-color: #292f45;
|
|
color: #000000;
|
|
border-color: #000000;
|
|
|
|
}
|
|
|
|
|
|
/*-----QLabel-----*/
|
|
QLabel
|
|
{
|
|
background-color: #292f45;
|
|
color: #b9b9bb;
|
|
border-color: #000000;
|
|
|
|
}
|
|
|
|
|
|
/*-----QPushButton-----*/
|
|
QPushButton
|
|
{
|
|
background-color: #f0742f;
|
|
color: #fff;
|
|
font-weight: bold;
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
border-radius: 17px;
|
|
border-color: #f0742f;
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
QPushButton::hover
|
|
{
|
|
background-color: #fc7c11;
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
QPushButton::pressed
|
|
{
|
|
background-color: #ff6b35;
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
/*-----QToolButton-----*/
|
|
QToolButton
|
|
{
|
|
background-color: #292f45;
|
|
color: #000000;
|
|
border-style: solid;
|
|
border-color: #000000;
|
|
|
|
}
|
|
|
|
|
|
QToolButton::hover
|
|
{
|
|
background-color: #fc7c11;
|
|
color: #000000;
|
|
padding: 2px;
|
|
border-radius: 15px;
|
|
border-color: #fc7c11;
|
|
|
|
}
|
|
|
|
|
|
QToolButton::pressed
|
|
{
|
|
background-color: #fc7c11;
|
|
color: #000000;
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
|
|
}
|
|
|
|
|
|
/*-----QLineEdit-----*/
|
|
QLineEdit{
|
|
background-color: #292f45;
|
|
color: #b9b9bb;
|
|
font-weight: bold;
|
|
border-style: solid;
|
|
border-width: 2px;
|
|
border-top: 0px;
|
|
border-left: 0px;
|
|
border-right: 0px;
|
|
border-color: #b9b9bb;
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
/*-----QCheckBox-----*/
|
|
QCheckBox
|
|
{
|
|
background-color: transparent;
|
|
color: #b9b9bb;
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
QCheckBox::indicator
|
|
{
|
|
color: #b1b1b1;
|
|
background-color: #00111d;
|
|
border: 1px solid #f0742f;
|
|
width: 12px;
|
|
height: 12px;
|
|
|
|
}
|
|
|
|
|
|
QCheckBox::indicator:checked
|
|
{
|
|
image:url("./ressources/check.png"); /*To replace*/
|
|
background-color: #1f2b2b;
|
|
border: 1px solid #f0742f;
|
|
|
|
}
|
|
|
|
|
|
QCheckBox::indicator:unchecked:hover
|
|
{
|
|
border: 1px solid #f0742f;
|
|
|
|
}
|
|
|
|
|
|
QCheckBox::disabled
|
|
{
|
|
color: #656565;
|
|
|
|
}
|
|
|
|
|
|
QCheckBox::indicator:disabled
|
|
{
|
|
background-color: #656565;
|
|
color: #656565;
|
|
border: 1px solid #656565;
|
|
|
|
}
|