forked from twlevelup/levelup-website
-
Notifications
You must be signed in to change notification settings - Fork 1
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
3b6f801
commit 36ff9a3
Showing
17 changed files
with
289 additions
and
109 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 |
---|---|---|
@@ -1,96 +1,80 @@ | ||
@mixin small-text { | ||
font-size: 14px; | ||
line-height: 18px; | ||
} | ||
|
||
@mixin normal-text { | ||
font-size: 16px; | ||
line-height: 22px; | ||
} | ||
//@import "temp"; | ||
@import "mixin"; | ||
|
||
body { | ||
@include normal-text; | ||
|
||
font-family: "Open Sans","Helvetica Neue",Arial,sans-serif; | ||
color: rgb(102, 102, 102); | ||
padding: 0px; | ||
} | ||
|
||
a { | ||
color: #2b9ea6; | ||
} | ||
|
||
.header { | ||
margin: 20px 0; | ||
} | ||
|
||
.upcoming { | ||
margin-top: 40px; | ||
color: #e30066; | ||
} | ||
|
||
.session-small { | ||
margin-bottom: 20px; | ||
|
||
h2 { | ||
@include normal-text; | ||
margin-bottom: 0; | ||
.top-alert { | ||
background: #f6ee4b; | ||
color: black; | ||
text-align: center; | ||
padding: 10px 0; | ||
p { | ||
font-weight: bold; | ||
margin: 0; | ||
span { | ||
font-weight: normal; | ||
} | ||
} | ||
|
||
h3 { | ||
@include small-text; | ||
margin-top: 0; | ||
color: rgb(182, 182, 182); | ||
} //.top-alert | ||
|
||
header, .header { | ||
} //header | ||
|
||
#sky { | ||
position: relative; | ||
padding-bottom: 30px; | ||
.sky { | ||
@include bg-absolute; | ||
background: #b8f9ff url('/assets/img/page-structure/sky/sky.png') repeat-x top left; | ||
top: 0; | ||
} | ||
|
||
.date { | ||
@include small-text; | ||
margin-left: 10px; | ||
.hill-back { | ||
@include bg-absolute; | ||
height: 476px; | ||
background: transparent url('/assets/img/page-structure/sky/hill-back.png') repeat-x top left; | ||
} | ||
} | ||
|
||
.session { | ||
h2 { | ||
color: black; | ||
margin-bottom: 0; | ||
.hill-front { | ||
@include bg-absolute; | ||
height: 636px; | ||
background: transparent url('/assets/img/page-structure/sky/hill-front.png') repeat-x top left; | ||
} | ||
|
||
h3 { | ||
font-size: 18px; | ||
margin-top: -10px; | ||
} //#sky | ||
|
||
#ground { | ||
padding-bottom: 30px; | ||
position: relative; | ||
.grass { | ||
background: transparent url('/assets/img/page-structure/ground/grass.png') repeat-x top left; | ||
height: 50px; | ||
} | ||
|
||
.video { | ||
margin-bottom: 15px; | ||
|
||
h3 { | ||
@include small-text; | ||
color: rgb(182, 182, 182); | ||
} | ||
.ground { | ||
@include bg-absolute; | ||
top: 0; | ||
background: #f1e0b6 url('/assets/img/page-structure/ground/ground.png') repeat top left; | ||
} | ||
} | ||
|
||
.links { | ||
list-style-type: none; | ||
margin-left: 0; | ||
} //#ground | ||
|
||
h4 { | ||
@include small-text; | ||
#water { | ||
.wave { | ||
background: transparent url('/assets/img/page-structure/water/wave.png') repeat-x top left; | ||
height: 55px; | ||
margin-top: -20px; | ||
} | ||
|
||
li { | ||
float: left; | ||
margin: 5px; | ||
.water { | ||
background: #92e1fe; | ||
} | ||
} | ||
} //#water | ||
|
||
.btn.btn-primary { | ||
background-color: #2b9ea6; | ||
background-image: none; | ||
footer, .footer { | ||
color: white; | ||
border: none; | ||
|
||
&:hover { | ||
background-color: #61ced6; | ||
.blueblock { | ||
background: transparent url('/assets/img/page-structure/footer/block.png') repeat-x top left; | ||
height: 100px; | ||
margin-top: -10px; | ||
} | ||
} | ||
.dark { | ||
background: #242c3a; | ||
} | ||
} //footer | ||
|
||
} |
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,7 @@ | ||
@mixin bg-absolute { | ||
position: absolute; | ||
left: 0; | ||
bottom: 0; | ||
width: 100%; | ||
z-index: -1; | ||
} |
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,96 @@ | ||
@mixin small-text { | ||
font-size: 14px; | ||
line-height: 18px; | ||
} | ||
|
||
@mixin normal-text { | ||
font-size: 16px; | ||
line-height: 22px; | ||
} | ||
|
||
body { | ||
@include normal-text; | ||
|
||
font-family: "Open Sans","Helvetica Neue",Arial,sans-serif; | ||
color: rgb(102, 102, 102); | ||
padding: 0px; | ||
} | ||
|
||
a { | ||
color: #2b9ea6; | ||
} | ||
|
||
.header { | ||
margin: 20px 0; | ||
} | ||
|
||
.upcoming { | ||
margin-top: 40px; | ||
color: #e30066; | ||
} | ||
|
||
.session-small { | ||
margin-bottom: 20px; | ||
|
||
h2 { | ||
@include normal-text; | ||
margin-bottom: 0; | ||
} | ||
|
||
h3 { | ||
@include small-text; | ||
margin-top: 0; | ||
color: rgb(182, 182, 182); | ||
} | ||
|
||
.date { | ||
@include small-text; | ||
margin-left: 10px; | ||
} | ||
} | ||
|
||
.session { | ||
h2 { | ||
color: black; | ||
margin-bottom: 0; | ||
} | ||
|
||
h3 { | ||
font-size: 18px; | ||
margin-top: -10px; | ||
} | ||
|
||
.video { | ||
margin-bottom: 15px; | ||
|
||
h3 { | ||
@include small-text; | ||
color: rgb(182, 182, 182); | ||
} | ||
} | ||
} | ||
|
||
.links { | ||
list-style-type: none; | ||
margin-left: 0; | ||
|
||
h4 { | ||
@include small-text; | ||
} | ||
|
||
li { | ||
float: left; | ||
margin: 5px; | ||
} | ||
} | ||
|
||
.btn.btn-primary { | ||
background-color: #2b9ea6; | ||
background-image: none; | ||
color: white; | ||
border: none; | ||
|
||
&:hover { | ||
background-color: #61ced6; | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.