Minor fix

This commit is contained in:
Oscar Alvarez 2021-01-17 15:56:36 -05:00
parent ad976670c0
commit 1aa367cbd5
1 changed files with 64 additions and 22 deletions

View File

@ -1,15 +1,34 @@
#standard_button {
border-style: groove;
font: 12pt;
color: rgb(80, 80, 80);
background-color: white;
height: 80px;
font-weight: bold;
border-width: 0px;
border-radius: 5px;
text-align: center;
}
#standard_button::hover {
background-color: rgb(227, 255, 159);
}
#standard_button::pressed {
background-color: rgb(195, 228, 113);
}
#product_button {
font-family: "DejaVu Sans";
border-style: groove;
font: 10pt;
color: rgb(102, 102, 102);
background-color : white;
height: 60px;
color: rgb(80, 80, 80);
background-color: white;
height: 90px;
width : 130px;
border-width: 0px;
border-radius: 10px;
text-align: right;
text-align: center;
}
#product_button::hover {
@ -21,17 +40,19 @@
}
#label_title {
font : 11pt;
font : 12pt;
min-height : 32px;
width: 120px;
color: rgb(102, 102, 102);
color: rgb(70, 70, 70);
padding-left: 0px;
padding-right: 0px;
text-align: center;
}
#label_custom_button {
font : 12pt;
height : 30px;
width: 110px;
color: rgb(152, 152, 152);
font: 14pt;
height: 30px;
color: rgb(70, 70, 70);
text-align: center;
}
#label_icon {
@ -40,15 +61,17 @@
}
#category_button {
font-family: "DejaVu Sans";
border-style: groove;
font: 10pt;
color: rgb(102, 102, 102);
background-color : white;
height: 80px;
color: rgb(80, 80, 80);
font-weight: bold;
background-color: white;
min-height: 130px;
max-height: 160px;
width : 130px;
border-width: 0px;
border-radius: 10px;
text-align: center;
}
#category_button::hover {
@ -59,20 +82,39 @@
background-color: rgb(205, 200, 200);
}
#toolbar_button {
font-family: "DejaVu Sans";
#toolbar {
border-style: groove;
font: 9pt;
background-color : white;
height: 55px;
color: rgb(80, 80, 80);
font: 15pt;
background-color: white;
max-height: 110px;
width : 130px;
border-width: 0px;
}
#toolbar_button::hover {
#toolbar::hover {
background-color: rgb(225, 240, 245);
}
#toolbar_button::pressed {
#toolbar::pressed {
background-color: rgb(204, 227, 235);
}
#mini_button {
border-style: groove;
font: 6pt;
color: rgb(80, 80, 80);
background-color: white;
max-height: 80px;
width: 100%;
border-width: 0px;
text-align: center;
}
#mini_button::hover {
background-color: rgb(255, 230, 160);
}
#mini_button::pressed {
background-color: rgb(246, 232, 192);
}