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


+ 1
- 1
styles/config.less View File

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

Loading…
Cancel
Save