remove console log

This commit is contained in:
Brittany Chiang
2018-02-11 21:29:11 -05:00
parent 7b094cf94b
commit 10bedfb574
8 changed files with 52 additions and 49 deletions

View File

@@ -10,12 +10,13 @@
background: $yellow;
}
html, body {
html,
body {
margin: 0;
padding: 0;
background-color: $white;
color: $dark-grey;
font-family: $Apercu, $sans-serif-stack;
font-family: $Apercu;
line-height: 1.5;
a {
@@ -141,7 +142,8 @@ html, body {
transition: height 0.3s, opacity 0.3s, transform 0.3s;
transform: translateY(-5px);
}
&:hover, &:focus {
&:hover,
&:focus {
&:after {
height: 2px;
border-radius: 3px;
@@ -164,7 +166,7 @@ html, body {
position: relative;
bottom: 2px;
margin-left: 15px;
content: "";
content: '';
background: url('../img/arrow.png') no-repeat center;
background-size: 100%;
width: 15px;
@@ -208,7 +210,8 @@ html, body {
right: 3px;
}
&:hover, &:focus {
&:hover,
&:focus {
transform: translateY(-10px);
}
img {
@@ -217,11 +220,11 @@ html, body {
}
}
.waypoint {
opacity: 0;
transform: translate3d(0,20px,0);
transition: opacity .6s cubic-bezier(.694,0,.335,1),transform .6s cubic-bezier(.694,0,.335,1);
transform: translate3d(0, 20px, 0);
transition: opacity 0.6s cubic-bezier(0.694, 0, 0.335, 1),
transform 0.6s cubic-bezier(0.694, 0, 0.335, 1);
}
.in-view {

View File

@@ -2,10 +2,7 @@
display: flex;
align-items: center;
font-size: 1.1rem;
font-family: 'Inconsolata', monospace;
margin-top: 70px;
color: $night;
// background-color: $yellow;
&__light {
width: 30px;
@@ -20,7 +17,7 @@
height: 25px;
animation: pulsate 2s ease-out;
animation-iteration-count: infinite;
opacity: .0;
opacity: 0;
border: 3px solid $green;
border-radius: 30px;
}

View File

@@ -1,21 +1,20 @@
// Colors
$night: #131417;
$black: #36363C;
$night: #191e27;
$black: #36363c;
$dark-grey: #444452;
$grey: #777777;
$blue: #007BFF;
$blue: #007bff;
$slate: #afafbf;
$off-white: #e7e7e7;
$white: #fff;
$green: #BADA55;
$purple: #7D0CE8;
$red: #FF0000;
$orange: #E8850C;
$yellow: #FFF10D;
$green: #bae67e;
$purple: #7d0ce8;
$red: #ff0000;
$orange: #e8850c;
$yellow: #ffcc66;
// Fonts
$Apercu: 'Apercu';
$sans-serif-stack: Source Sans Pro, Helvetica, Arial, sans-serif;
$Apercu: 'Apercu', 'Source Sans Pro', Helvetica, Arial, sans-serif;
// Media queries
$fifteen-inch: 1440px;