1
0
mirror of https://github.com/mgerb/react-starter synced 2026-01-11 17:42:48 +00:00

refactoring - added font awesome

This commit is contained in:
2017-02-13 21:17:10 +00:00
committed by Mitchell Gerber
parent 5f14578f86
commit ca7abf1def
21 changed files with 5141 additions and 53 deletions

View File

@@ -1,3 +1,4 @@
@import '../assets/font-awesome/css/font-awesome.css';
@import '../assets/normalize.css';
@import './variables.scss';
@import './style.scss';

View File

@@ -1,11 +1,23 @@
body {
background-color: $gray1;
color: $white;
padding-left: $navbarWidth;
html {
font-family: 'Roboto Condensed', sans-serif;
}
.content {
padding: 10px;
height: 100%;
width: 100%;
}
body {
color: $fontPrimary;
background-color: $light2;
}
.fa {
margin-right: 5px;
margin-left: 5px;
}
a {
text-decoration: none;
color: $fontPrimary;
transition: all 0.1s linear;
&:hover {
color: $primaryBlue;
}
}

View File

@@ -1,13 +1,21 @@
$navbarWidth: 200px;
// colors
$primaryBlue: #42adf4;
$white: darken(white, 10%);
$gray1: #686a6e;
$gray2: #424549;
$gray3: #36393e;
$gray1: #2e3136;
$gray2: #2a2d32;
$gray3: #23262a;
$gray4: #2e3136;
$gray5: #282b30;
$gray6: #1e2124;
$light1: #fff;
$light2: #f4f4f4;
$light3: #e3e3e3;
$dark2: #3a3f41;
$dark1: lighten($dark2, 5%);
$dark3: darken($dark2, 5%);
$fontPrimary: darken($light3, 10%);
$fontSecondary: darken($light3, 20%);