Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
275 changes: 127 additions & 148 deletions index.html

Large diffs are not rendered by default.

128 changes: 92 additions & 36 deletions main.css
Original file line number Diff line number Diff line change
@@ -1,14 +1,27 @@
:root {
--blue: rgba(52, 81, 166, 0.5);
--darkblue: rgba(27, 42, 88, 0.5);
--blue: rgba(52, 81, 166, 0.5);
--darkblue: rgba(27, 42, 88, 0.5);
}

h1, h2, h3, h4, h5, p, a, li, span {
h1,
h2,
h3,
h4,
h5,
p,
a,
li,
span {
font-family: "Open Sans", sans-serif;
font-optical-sizing: auto;
font-style: normal;
font-variation-settings:
"wdth" 100;
color: #fff;
}

h2, h3 {
h2,
h3 {
font-weight: 200;
}

Expand All @@ -28,29 +41,45 @@ body {
margin: 0;
}

.mainBody {
padding-top: .5em;
padding-bottom: 0.5em;
grid-area: head;
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('static/images/gb.webp');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}

button {
background-color: var(--blue);
font-size: 1.5em;
padding: 0.5em;
border: none;
border-radius: .1em;
background-color: var(--blue);
font-size: 1.5em;
padding: 0.5em;
border: none;
border-radius: .1em;
}

button:hover {
background-color: rgba(52, 81, 166, 1);
box-shadow: 5px 5px 8px 0px rgba(0,0,0,0.5);
background-color: rgba(52, 81, 166, 1);
box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.5);
}

p {
text-align: justify;
text-align: justify;
}

main {
min-width: 0;
min-width: 0;
}

.headshot {
width:5em;
width: 5em;
border-radius: 50%;
}

Expand All @@ -66,7 +95,7 @@ main {
margin: 0 auto;
grid-template-areas:
'head'
'testemonial'
'testimonial'
'nmi'
'benefits'
'socials'
Expand All @@ -87,26 +116,26 @@ main {

.floating {
border-radius: 0.1em;
box-shadow: 5px 5px 8px 0px rgba(0,0,0,0.5);
box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.5);
-webkit-border-radius: 0.1em;
-moz-border-radius: 0.1em;
-ms-border-radius: 0.1em;
-o-border-radius: 0.1em;
}

.testemonial-quote {
.testimonial-quote {
width: 100%;
background-color: var(--darkblue);
}

.testemonial-quote>h3 {
.testimonial-quote>h3 {
margin-left: 0.5em;
margin-right: 0.5em;
}

.header {
border-radius: 0.1em;
box-shadow: 5px 5px 8px 0px rgba(0,0,0,0.5);
box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.5);
background-color: var(--blue);
padding: 0.5em;
}
Expand All @@ -115,40 +144,47 @@ main {
text-decoration: none;
}

#contact {
.contact {
display: flex;
flex-wrap: nowrap;
justify-content: space-evenly;
}

#socialimg {
.socialimg {
width: 100%;
height: auto;
}

#testemonial-grid {
#testimonial-grid {
display: grid;
grid-template-columns: min-content auto;
justify-items: center;
align-items: center;
grid-gap: .5em;
}

#signup>* {
text-align: center
.signup {
margin-top: 5em;

>* {
text-align: center
}
}

#header-background {
.header-background {
display: flex;
flex-wrap: nowrap;
justify-content: center;
padding: 0;
padding-top: 0.2em;
padding-left: 0.5em;
background-image: url('static/images/flash.jpg');
background-image: url('static/images/flash.webp');
background-size: cover;
}

.header {
border-radius: 0.1em;
box-shadow: 5px 5px 8px 0px rgba(0,0,0,0.5);
box-shadow: 5px 5px 8px 0px rgba(0, 0, 0, 0.5);
background-color: rgba(52, 81, 166, 0.5);
padding: 0.5em;
}
Expand All @@ -158,7 +194,12 @@ main {
flex-direction: column;
align-items: center;
background-color: #212129;
box-shadow: inset 0px 0px 10px rgba(0,0,0,0.5);
box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);

h3 {
text-align: center;
font-size: 20px;
}
}

.header-text * {
Expand All @@ -171,23 +212,27 @@ main {
grid-column-gap: 3em;
width: 85%;
grid-template-areas:
'head head'
'testemonial nmi'
'benefits socials'
'moose moose';
'head head'
'testimonial nmi'
'benefits socials'
'moose moose';
}
#nmi {

.nmi {
align-self: start;
}

#why {
align-self: center;
justify-self: center;
}
#socialimg {

.socialimg {
margin-left: 20%;
margin-right: 20%;
width: 60%;
}

#header-background {
background-position-y: -450px;
}
Expand All @@ -201,6 +246,18 @@ main {
}
}

.moose {
width: 500px;
margin: 1em;
}

.footer {
background-image: url('static/images/background.webp');
background-size: cover;
padding-top: 0.5em;
padding-bottom: 0.5em
}

@media only screen and (max-width: 800px) {
h1 {
font-size: 2em;
Expand All @@ -219,7 +276,7 @@ main {
padding-left: 0;
}

#moose {
.moose {
flex-direction: column !important;
align-items: center;
}
Expand All @@ -230,4 +287,3 @@ main {
width: 70%;
}
}

81 changes: 0 additions & 81 deletions popup.css

This file was deleted.

Binary file modified static/favicons/android-chrome-144x144.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/android-chrome-192x192.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/android-chrome-36x36.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/android-chrome-48x48.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/android-chrome-72x72.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/android-chrome-96x96.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/apple-touch-icon-114x114.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/apple-touch-icon-120x120.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/apple-touch-icon-144x144.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/apple-touch-icon-152x152.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/apple-touch-icon-180x180.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/apple-touch-icon-57x57.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/apple-touch-icon-60x60.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/apple-touch-icon-72x72.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/apple-touch-icon-76x76.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/apple-touch-icon-precomposed.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/apple-touch-icon.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/favicon-16x16.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/favicon-32x32.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/favicon-96x96.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/mstile-144x144.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/mstile-150x150.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/mstile-310x150.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/mstile-310x310.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/favicons/mstile-70x70.png
100755 → 100644
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed static/images/background.jpg
Diff not rendered.
Binary file added static/images/background.webp
Binary file removed static/images/campus_portland.jpeg
Diff not rendered.
Binary file removed static/images/flash.jpg
Diff not rendered.
Binary file added static/images/flash.webp
Binary file removed static/images/gb.jpg
Diff not rendered.
Binary file added static/images/gb.webp
Binary file removed static/images/jess.jpg
Diff not rendered.
Binary file added static/images/jess.webp
Binary file removed static/images/liv.jpg
Diff not rendered.
Binary file added static/images/liv.webp
Binary file removed static/images/mattsface.jpeg
Diff not rendered.
Binary file added static/images/mattsface.webp
Binary file removed static/images/portland_studio.jpg
Diff not rendered.
Binary file added static/images/portland_studio.webp
Binary file removed static/images/poster.png
Diff not rendered.
Binary file added static/images/poster.webp
Binary file removed static/images/sam.jpg
Diff not rendered.
Binary file added static/images/sam.webp
Binary file removed static/images/social.jpg
Diff not rendered.
Binary file added static/images/social.webp
Binary file removed static/images/tec_logo_full.png
Diff not rendered.
Binary file added static/images/tec_logo_full.webp
Binary file removed static/images/tec_logo_white.png
Diff not rendered.
Binary file added static/images/tec_logo_white.webp
Binary file removed static/images/van.jpg
Diff not rendered.
Binary file added static/images/van.webp
Binary file removed static/images/wa.jpg
Diff not rendered.
Binary file added static/images/wa.webp