colors and fontsize

This commit is contained in:
Tolstoevsky 2019-12-07 12:41:33 +03:00
parent 9b37b5429a
commit 28db7b33fd
2 changed files with 21 additions and 20 deletions

View File

@ -19,7 +19,7 @@
body {
font-family: "exo2", sans-serif;
font-weight: 300;
font-size: 14px;
font-size: 16px;
line-height: 1.7;
color: black;
background: #e8e8e8;
@ -53,13 +53,13 @@ body {
}
a {
color: #66D37E;
color: #006699;
-webkit-transition: 0.5s;
-o-transition: 0.5s;
transition: 0.5s;
}
a:hover, a:active, a:focus {
color: #66D37E;
color: #006699;
outline: none;
text-decoration: none;
}
@ -77,17 +77,17 @@ h1, h2, h3, h4, h5, h6, figure {
::-webkit-selection {
color: #fff;
background: #66D37E;
background: #006699;
}
::-moz-selection {
color: #fff;
background: #66D37E;
background: #006699;
}
::selection {
color: #fff;
background: #66D37E;
background: #006699;
}
.container-wrap {
@ -127,7 +127,7 @@ h1, h2, h3, h4, h5, h6, figure {
font-family: "Source Sans Pro", sans-serif;
}
.fh5co-nav #fh5co-logo a span {
color: #66D37E;
color: #006699;
}
.fh5co-nav a {
padding: 5px 10px;
@ -169,7 +169,7 @@ h1, h2, h3, h4, h5, h6, figure {
content: '';
width: 58%;
height: 2px;
background: #66D37E;
background: #006699;
margin: 0 auto;
opacity: 0;
-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
@ -394,7 +394,7 @@ h1, h2, h3, h4, h5, h6, figure {
#fh5co-hero .flexslider .flex-control-nav li a.flex-active {
cursor: pointer;
background: transparent;
border: 2px solid #66D37E;
border: 2px solid #006699;
}
#fh5co-hero .flexslider .flex-direction-nav {
display: none;
@ -957,7 +957,7 @@ input[type="text"] {
display: inline-block;
zoom: 1;
*display: inline;
color: #66D37E;
color: #006699;
padding-left: 10px;
padding-right: 10px;
}
@ -1280,9 +1280,9 @@ input[type="text"] {
}
.btn-primary {
background: #66D37E;
background: #006699;
color: #fff;
border: 2px solid #66D37E;
border: 2px solid #006699;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
background: #7ad98f !important;
@ -1290,11 +1290,11 @@ input[type="text"] {
}
.btn-primary.btn-outline {
background: transparent;
color: #66D37E;
border: 2px solid #66D37E;
color: #006699;
border: 2px solid #006699;
}
.btn-primary.btn-outline:hover, .btn-primary.btn-outline:focus, .btn-primary.btn-outline:active {
background: #66D37E;
background: #006699;
color: #fff;
}
@ -1424,7 +1424,7 @@ input[type="text"] {
.form-control:active, .form-control:focus {
outline: none;
box-shadow: none;
border-color: #66D37E;
border-color: #006699;
}
.row-pb-md {

View File

@ -9,14 +9,15 @@ $grid-gutter-width: 40px !default;
$border-radius-base: 4px !default;
$padding-base-vertical: 14px !default;
$brand-primary: #66D37E !default;
//$brand-primary: #66D37E !default;
$brand-primary: #006699 !default;
$brand-secondary: #007CB9 !default;
$brand-white: #fff;
$brand-black: #000;
$brand-darker: #444;
$brand-gray: #ccc;
$brand-lighter: #e9e9e9;
$brand-darker: #333;
$brand-gray: #aaa;
$brand-lighter: #d9d9d9;
$brand-body-color: #e8e8e8;
$brand-selection-color: #f9f6f0;
$brand-overlay-color: #4c4a8a;