-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d56be37
commit 24cfbe9
Showing
12 changed files
with
298 additions
and
30 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<section> | ||
<h1>{{ title }}</h1> | ||
</section> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
@import "base"; | ||
|
||
section { | ||
height: 100%; | ||
width: 20rem; | ||
background: linear-gradient(0deg, $black 20%, $valencia50 50%, $zest75 90%, $zest 100%); | ||
border-radius: 3.5rem 0 0 0; | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
box-shadow: $drop-shadow; | ||
z-index: 100; | ||
|
||
h1 { | ||
background: -webkit-linear-gradient(90deg, $white00 0%, $white 30%, $white 70%, $white00 100%); | ||
-webkit-background-clip: text; | ||
-webkit-text-fill-color: transparent; | ||
font-size: 1.25rem; | ||
margin: 2.75rem 3rem; | ||
letter-spacing: 1px; | ||
} | ||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Component, Input } from "@angular/core"; | ||
import { CommonModule } from "@angular/common"; | ||
|
||
@Component({ | ||
selector: 'side-bar', | ||
standalone: true, | ||
imports: [CommonModule], | ||
templateUrl: './side-bar.component.html', | ||
styleUrl: './side-bar.component.scss' | ||
}) | ||
export class SideBarComponent { | ||
|
||
@Input() title: string = ''; | ||
|
||
} |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
<section> | ||
<div id="background-image"></div> | ||
<div id="wallet-item"> | ||
<ng-content></ng-content> | ||
</div> | ||
</section> |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,41 @@ | ||
<landing title="Fit Track" [content]="content"></landing> | ||
<standards></standards> | ||
<main> | ||
<fit-track-admin (newWeek)="onWeekAdded($event)"></fit-track-admin> | ||
<container> | ||
<accordion title="General"> | ||
<general></general> | ||
</accordion> | ||
</container> | ||
<container> | ||
<accordion title="Resistance"> | ||
<resistance></resistance> | ||
</accordion> | ||
</container> | ||
<container> | ||
<accordion title="Running"> | ||
<running [weeks]="weeks"></running> | ||
</accordion> | ||
</container> | ||
</main> | ||
<!--<landing title="Fit Track" [content]="content"></landing>--> | ||
<!--<standards></standards>--> | ||
<!--<main>--> | ||
<!-- <fit-track-admin (newWeek)="onWeekAdded($event)"></fit-track-admin>--> | ||
<!-- <container>--> | ||
<!-- <accordion title="General">--> | ||
<!-- <general></general>--> | ||
<!-- </accordion>--> | ||
<!-- </container>--> | ||
<!-- <container>--> | ||
<!-- <accordion title="Resistance">--> | ||
<!-- <resistance></resistance>--> | ||
<!-- </accordion>--> | ||
<!-- </container>--> | ||
<!-- <container>--> | ||
<!-- <accordion title="Running">--> | ||
<!-- <running [weeks]="weeks"></running>--> | ||
<!-- </accordion>--> | ||
<!-- </container>--> | ||
<!--</main>--> | ||
<wallet> | ||
<side-bar title="Fit Track"></side-bar> | ||
<section> | ||
<fit-track-admin (newWeek)="onWeekAdded($event)"></fit-track-admin> | ||
<container> | ||
<accordion title="General"> | ||
<general></general> | ||
</accordion> | ||
</container> | ||
<container> | ||
<accordion title="Resistance"> | ||
<resistance></resistance> | ||
</accordion> | ||
</container> | ||
<container> | ||
<accordion title="Running"> | ||
<running [weeks]="weeks"></running> | ||
</accordion> | ||
</container> | ||
</section> | ||
</wallet> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
@import 'base'; | ||
|
||
main { | ||
background: $alabaster; | ||
|
||
section { | ||
margin: 4rem 0; | ||
} | ||
section { | ||
background-color: $alabaster; | ||
left: 20rem; | ||
width: calc(100% - 20rem); | ||
border-radius: 0 3.5rem 0 0; | ||
position: absolute; | ||
} |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,123 @@ | ||
<!--<landing title="Cardinal" [content]="content"></landing>--> | ||
<!-- TODO :: rename landing, now defunct... --> | ||
|
||
<wallet></wallet> | ||
<wallet> | ||
<section> | ||
<div id="hero"> | ||
<h1>Cardinal</h1> | ||
<h2>/ˈkɑːdɪnəl/ Of the greatest importance; <br/> fundamental.</h2> | ||
|
||
|
||
|
||
|
||
|
||
<div id="content"> | ||
<div class="row"> | ||
<div class="item"> | ||
<fa-icon class="icon" [icon]="faPersonRunning"></fa-icon> | ||
<div class="item-description"> | ||
<p class="item-header">Fit Track</p> | ||
<p class="item-body">Track completed training and progress towards goals</p> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<fa-icon class="icon" [icon]="faPersonRunning"></fa-icon> | ||
<div class="item-description"> | ||
<p class="item-header">Fit Track</p> | ||
<p class="item-body">Track completed training and progress towards goals</p> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<fa-icon class="icon" [icon]="faPersonRunning"></fa-icon> | ||
<div class="item-description"> | ||
<p class="item-header">Fit Track</p> | ||
<p class="item-body">Track completed training and progress towards goals</p> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<fa-icon class="icon" [icon]="faPersonRunning"></fa-icon> | ||
<div class="item-description"> | ||
<p class="item-header">Fit Track</p> | ||
<p class="item-body">Track completed training and progress towards goals</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="row"> | ||
<div class="item"> | ||
<fa-icon class="icon" [icon]="faPersonRunning"></fa-icon> | ||
<div class="item-description"> | ||
<p class="item-header">Fit Track</p> | ||
<p class="item-body">Track completed training and progress towards goals</p> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<fa-icon class="icon" [icon]="faPersonRunning"></fa-icon> | ||
<div class="item-description"> | ||
<p class="item-header">Fit Track</p> | ||
<p class="item-body">Track completed training and progress towards goals</p> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<fa-icon class="icon" [icon]="faPersonRunning"></fa-icon> | ||
<div class="item-description"> | ||
<p class="item-header">Fit Track</p> | ||
<p class="item-body">Track completed training and progress towards goals</p> | ||
</div> | ||
</div> | ||
<div class="item"> | ||
<fa-icon class="icon" [icon]="faPersonRunning"></fa-icon> | ||
<div class="item-description"> | ||
<p class="item-header">Fit Track</p> | ||
<p class="item-body">Track completed training and progress towards goals</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<!-- <div id="content1">--> | ||
<!-- <div class="item">--> | ||
<!-- <fa-icon class="icon" [icon]="faPersonRunning"></fa-icon>--> | ||
<!-- <div class="item-description">--> | ||
<!-- <p class="item-header">Fit Track</p>--> | ||
<!-- <p class="item-body">Track completed training and progress towards goals</p>--> | ||
<!-- </div>--> | ||
<!-- </div>--> | ||
|
||
<!-- <div class="item">--> | ||
<!-- <fa-icon class="icon" [icon]="faPersonRunning"></fa-icon>--> | ||
<!-- <div class="item-description">--> | ||
<!-- <p class="item-header">Fit Track</p>--> | ||
<!-- <p class="item-body">Track completed training and progress towards goals</p>--> | ||
<!-- </div>--> | ||
<!-- </div>--> | ||
<!-- <div class="item">--> | ||
<!-- <fa-icon class="icon" [icon]="faPersonRunning"></fa-icon>--> | ||
<!-- <div class="item-description">--> | ||
<!-- <p class="item-header">Fit Track</p>--> | ||
<!-- <p class="item-body">Track completed training and progress towards goals</p>--> | ||
<!-- </div>--> | ||
<!-- </div>--> | ||
<!-- <div class="item">--> | ||
<!-- <fa-icon class="icon" [icon]="faPersonRunning"></fa-icon>--> | ||
<!-- <div class="item-description">--> | ||
<!-- <p class="item-header">Fit Track</p>--> | ||
<!-- <p class="item-body">Track completed training and progress towards goals</p>--> | ||
<!-- </div>--> | ||
<!-- </div>--> | ||
<!-- </div>--> | ||
</div> | ||
</section> | ||
</wallet> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
@import 'base'; | ||
|
||
section { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100%; | ||
|
||
h1 { | ||
margin-top: -8rem; | ||
color: $white; | ||
text-transform: uppercase; | ||
font-size: 10rem; | ||
letter-spacing: 1.5rem; | ||
font-weight: $semi-bold; | ||
background: -webkit-linear-gradient(90deg, $white00 0%, $white 30%, $white 70%, $white00 100%); | ||
-webkit-background-clip: text; | ||
-webkit-text-fill-color: transparent; | ||
opacity: .85; | ||
|
||
@media (max-width: $small-screen) { | ||
font-size: 8.5rem; | ||
letter-spacing: 1rem; | ||
} | ||
} | ||
|
||
h2 { | ||
margin-top: -1rem; | ||
background: -webkit-linear-gradient(90deg, $white00 0%, $white 30%, $white 90%, $white00 100%); | ||
-webkit-background-clip: text; | ||
-webkit-text-fill-color: transparent; | ||
margin-left: 1rem; | ||
font-weight: $regular; | ||
font-size: 1.5rem; | ||
letter-spacing: 3px; | ||
line-height: 2rem; | ||
opacity: .85; | ||
} | ||
|
||
#hero { | ||
width: min-content; | ||
|
||
#content { | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap; | ||
width: 100%; | ||
margin-top: 4rem; | ||
|
||
.item { | ||
color: $white; | ||
display: flex; | ||
gap: 1rem; | ||
flex-direction: column; | ||
flex: 1; | ||
width: 320px; | ||
|
||
.item-description { | ||
.item-header { | ||
letter-spacing: 2px; | ||
} | ||
|
||
.item-body { | ||
font-size: $default-text; | ||
font-weight: $light; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains 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