Skip to content

Instantly share code, notes, and snippets.

View chrisgriffith's full-sized avatar

Chris Griffith chrisgriffith

View GitHub Profile
@chrisgriffith
chrisgriffith / home.page.html
Created October 26, 2018 22:01
floating ion-input with icon
<ion-header>
<ion-toolbar>
<ion-title>
Ionic Blank
</ion-title>
</ion-toolbar>
</ion-header>
<ion-content padding>
<ion-grid>
@chrisgriffith
chrisgriffith / home.html
Created April 9, 2019 20:00
Ionic Design: Grid
<ion-card>
<ion-card-content>
<ion-grid>
<ion-row>
<ion-col>
<img src="../../assets/avatar.png">
<h1>Chris Griffith</h1>
<p>6W 3D 2L</p>
</ion-col>
<ion-col>
@chrisgriffith
chrisgriffith / home.html
Created April 9, 2019 20:05
Ionic Design: Username
<h1 class="userName>Chris Griffith</h1>
@chrisgriffith
chrisgriffith / home.scss
Created April 9, 2019 20:06
Ionic Design
.userName {
font-size: 16px;
font-weight: bold;
color: #5D5F65;
}
@chrisgriffith
chrisgriffith / home.html
Created April 9, 2019 20:07
Ionic Design: Wins, Draws, Loses
<p class="gameStats>
<span class="wins">6W</span><span class="draws">3D</span><span class="losses">2L</span>
</p>
@chrisgriffith
chrisgriffith / home.scss
Created April 9, 2019 20:08
Ionic Design: Game Stats
.gameStats {
margin-top: .5em;
font-size: 13px;
font-weight: bold;
color: #BBBCBE;
}
.wins {
border-bottom: 6px solid #62f254;
margin-right: .5em;
@chrisgriffith
chrisgriffith / home.html
Created April 9, 2019 20:10
Ionic Design: Avatar
<img class="avatar" src="../../assets/avatar.png" />
@chrisgriffith
chrisgriffith / home.scss
Created April 9, 2019 20:10
Ionic Design: Avatar CSS
.avatar {
border-radius: 10px;
max-width: 45px;
}
@chrisgriffith
chrisgriffith / home.html
Created April 9, 2019 20:11
Ionic Design: CTA button
<ion-button>Register Result</ion-button>
@chrisgriffith
chrisgriffith / home.scss
Created April 9, 2019 20:12
Ionic Design: CTA Button
ion-button {
--border-radius: 10px;
--background: #6765F7;
}