Browse Source

Applying color style from config

master
bianca-maria 3 years ago
parent
commit
769a771d99
2 changed files with 11 additions and 11 deletions
  1. +10
    -10
      styles/base.less
  2. +1
    -1
      styles/config.less

+ 10
- 10
styles/base.less View File

@ -4,7 +4,7 @@
html {
body {
margin: 0;
background:#e6e6e6;
background:@bgColorBody;
}
@ -17,7 +17,7 @@ html {
body {
header {
background-color: #EAD945;
background-color: @bgColorHeader;
position: fixed;
padding: 24px 40px;
top: 0;
@ -48,7 +48,7 @@ body {
table {
margin: auto;
width: 100%;
background: #edce73;
background: @bgColorTable;
border-radius: 12px;
padding-top: 20px;
padding-bottom: 20px;
@ -58,7 +58,7 @@ body {
//classe do form
.form {
margin-top:50px;
border: 1px solid #007bff5e;
border: @defaultBorderForm;
&__infor {
margin-top: 10px;
@ -68,7 +68,7 @@ body {
//label do checkbox
label:last-child {
font-weight:600;
color:red;
color:@colorLabelCheck;
}
//input do checkbox
@ -85,14 +85,14 @@ body {
&__input {
width: 289px;
height: 30px;
background: whitesmoke;
background: @bgColorInput;
border:none;
margin-top: 3px;
}
}
button {
background: white;
background: @bgColorButton;
font-size: 19px;
letter-spacing: 2.2px;
margin-top: 45px;
@ -107,17 +107,17 @@ body {
margin-top: 20%;
padding:10% 10%;
text-align: center;
background:chocolate;
background:@bgColorFooter;
p, span {
color:#ffd045;
color:@colorFooterP;
font-size: 10px;
}
span {
font-weight: bold;
color:#ffde7c;
color:@colorFooterSp;
}
}
}


+ 1
- 1
styles/config.less View File

@ -15,4 +15,4 @@
//styles-border
@widthBorder: 1px;
@colorBorder:#007bff5e;
@defaultBorder: @widthBorder solid @colorBorder;
@defaultBorderForm: @widthBorder solid @colorBorder;

Loading…
Cancel
Save