diff --git a/styles/base.less b/styles/base.less index c1a1ea2..7f5decf 100644 --- a/styles/base.less +++ b/styles/base.less @@ -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; } } } diff --git a/styles/config.less b/styles/config.less index ef62cc5..9ad6802 100644 --- a/styles/config.less +++ b/styles/config.less @@ -15,4 +15,4 @@ //styles-border @widthBorder: 1px; @colorBorder:#007bff5e; -@defaultBorder: @widthBorder solid @colorBorder; \ No newline at end of file +@defaultBorderForm: @widthBorder solid @colorBorder; \ No newline at end of file