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

View File

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