A Pen by Hugo Priet on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="top"> | |
<div class="upper section"><img class="image image2" src="marc-steenbeke-664660-unsplash.jpg" alt=""></div> | |
<div class="mid section"><div class="top-title">MOUNTAINS</div> | |
</div> | |
<div class="lower section"><img class="image image1" src="marc-steenbeke-664660-unsplash.jpg" alt=""></div> | |
</div> | |
<div class="bottom"> | |
<div class="bottom-title">Night on the mountain</div> | |
<div class="bottom-body"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="main"> | |
<div class="content-grid"> | |
<div class="content-grid-title"> | |
<h1>Unlock Life</h1> | |
</div> | |
<div class="content-grid__scroll"> | |
<div class="content-grid__sticky"> |
A Pen by Danil Goncharenko on CodePen.
Searching through the archives, I found this. I have a LOT more where these came from. Stay tuned and follow me at https://codepen.io/PickJBennett/ to see new pens, which I will be posting soon!
// Original pen by Simon FREMAUX @ https://codepen.io/dievardump/pen/pyOMeN
A Pen by Jeffrey Bennett 😃 on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="carousel"> | |
<div class="progress-bar progress-bar--primary hide-on-desktop"> | |
<div class="progress-bar__fill"></div> | |
</div> | |
<header class="main-post-wrapper"> | |
<div class="slides"> | |
<article class="main-post main-post--active"> | |
<div class="main-post__image"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyArray { | |
constructor() { | |
this.array = []; | |
} | |
add(data) { | |
this.array.push(data); | |
} | |
remove(data) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Alert} from 'react-native'; | |
import logger from 'logger'; | |
import * as types from 'auth/constants'; | |
import * as endpoints from 'endpoints'; | |
import * as cache from 'utils/cache'; | |
import {AUTH_STATUS} from 'enums/authStatus'; | |
import * as requester from 'services/Requester'; | |
import {clearSurveys} from 'surveys-ballots/actions'; | |
import {clearEvents} from 'events/actions'; | |
import * as repsActions from 'representatives/actions'; |