-
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
Jan-Willem van Bremen
authored and
Jan-Willem van Bremen
committed
Mar 28, 2017
0 parents
commit da1aa89
Showing
17 changed files
with
3,168 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# https://git-scm.com/docs/gitignore | ||
# https://help.github.com/articles/ignoring-files | ||
# Example .gitignore files: https://github.com/github/gitignore | ||
/bower_components/ | ||
/node_modules/ |
Binary file not shown.
Binary file not shown.
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,333 @@ | ||
@font-face { | ||
font-family: 'TradeGothic'; | ||
src: url('.//fonts/268FDD_0_0.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'TradeGothic_2'; | ||
src: url('.//fonts/268FD8_0_0.woff') format('woff'); | ||
} | ||
|
||
body { | ||
font-family: Arial, sans-serif !important; | ||
width: 1280px !important; | ||
height: 720px !important; | ||
overflow: hidden; | ||
background-color: white; | ||
} | ||
|
||
#main_content { | ||
width: 1280px !important; | ||
height: 720px !important; | ||
margin-top: -8px; | ||
margin-left: -8px; | ||
overflow: auto; | ||
} | ||
|
||
/* | ||
.active.focus_highlight { | ||
text-decoration: underline; | ||
} | ||
*/ | ||
|
||
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */ | ||
|
||
#page_content { | ||
transition: margin-left .5s, padding-left .5s; | ||
padding-left: 70px; | ||
position: relative; | ||
width: auto; | ||
height: auto; | ||
} | ||
|
||
#content_wrapper { | ||
margin: 10px; | ||
} | ||
|
||
.loader { | ||
position: static; | ||
margin-top: 10%; | ||
margin-left: 25%; | ||
background-color: inherit; | ||
} | ||
|
||
#log_div { | ||
background-color: gray; | ||
/* margin-left: 25%;*/ | ||
opacity: 0.75; | ||
color: black !important; | ||
position: fixed; | ||
left: 48%; | ||
width: 50%; | ||
border-radius: 5px; | ||
z-index: 998; | ||
max-height: 720px; | ||
max-width: 1280px; | ||
overflow: auto; | ||
font-size: 12; | ||
} | ||
|
||
.focus_highlight { | ||
color: #f1f1f1 !important; | ||
background-color: inherit !important; | ||
text-decoration: underline !important; | ||
} | ||
|
||
.menu_icon { | ||
height: 48px; | ||
width: 48px; | ||
padding: 5px; | ||
cursor: pointer; | ||
position: fixed; | ||
z-index: 1; | ||
margin: 5px; | ||
} | ||
|
||
.advert { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.ad { | ||
width: 1px; | ||
height: 1px; | ||
} | ||
|
||
/*Menu logo size*/ | ||
|
||
.menu_logo { | ||
width: 85%; | ||
height: auto; | ||
} | ||
|
||
|
||
/* The side navigation menu */ | ||
|
||
.menu_side { | ||
height: 670px; | ||
/* 100% Full-height 720 - 50 padding = 670px */ | ||
width: 0; | ||
/* 0 width - change this with JavaScript */ | ||
position: fixed; | ||
/* Stay in place */ | ||
z-index: 2; | ||
/* Stay on top */ | ||
top: 0; | ||
left: 0; | ||
background-color: #111; | ||
/* Black*/ | ||
overflow-x: hidden; | ||
/* Disable horizontal scroll */ | ||
padding-top: 50px; | ||
/* Place content 60px from the top */ | ||
transition: 0.5s; | ||
/* 0.5 second transition effect to slide in the sidenav */ | ||
} | ||
|
||
|
||
/* The navigation menu links */ | ||
|
||
.menu_side a { | ||
padding: 8px 8px 8px 32px; | ||
text-decoration: none; | ||
font-size: 25px; | ||
color: #818181; | ||
display: block; | ||
transition: 0.3s | ||
} | ||
|
||
|
||
/* When you mouse over the navigation links, change their color */ | ||
|
||
.menu_side a:hover, | ||
.offcanvas a:focus { | ||
color: #f1f1f1; | ||
} | ||
|
||
|
||
/* Position and style the close button (top right corner) */ | ||
|
||
.menu_side .close_btn { | ||
position: absolute; | ||
top: 0; | ||
right: 25px; | ||
font-size: 36px; | ||
margin-left: 50px; | ||
} | ||
|
||
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */ | ||
|
||
@media screen and (max-height: 450px) { | ||
|
||
.menu_side a { | ||
font-size: 18px; | ||
} | ||
} | ||
|
||
.active { | ||
transition: border-radius 0.5s; | ||
background-color: #f1f1f1; | ||
border-radius: 25px; | ||
} | ||
|
||
.move.active { | ||
color: #f1f1f1 !important; | ||
background-color: inherit !important; | ||
} | ||
|
||
/*Current standings table style*/ | ||
|
||
.current_header { | ||
font-family: 'TradeGothic_2' ,'sans-serif' !important; | ||
color: #757575 !important; | ||
text-transform: uppercase; | ||
font-size: 24px; | ||
} | ||
|
||
.current_standings { | ||
font-family: 'TradeGothic_2' ,'sans-serif' !important; | ||
font-size: 24px; | ||
width: 100%; | ||
color: #000; | ||
} | ||
|
||
.solid_bar { | ||
background: #d7d7d7; | ||
height: 3px; | ||
width: 100%; | ||
margin: 0 0 10px 0; | ||
} | ||
|
||
.current_standings .score_heading { | ||
text-align: right; | ||
padding-right: 70px; | ||
} | ||
|
||
.heading > :first-child { | ||
text-align: left; | ||
} | ||
|
||
.current_standings .score { | ||
text-align: right; | ||
padding-right: 90px; | ||
} | ||
|
||
.current_standings .heading { | ||
background: #f7f7f7; | ||
} | ||
|
||
.current_standings td { | ||
border-bottom: 1px solid #d7d7d7; | ||
} | ||
|
||
/*News browse page style*/ | ||
|
||
article { | ||
color: #959595 !important; | ||
} | ||
|
||
.two-third-block{ | ||
margin: 5px; | ||
border-bottom: solid 1px #ccc; | ||
width: 100%; | ||
padding: 0; | ||
margin-right: 20px; | ||
float: left; | ||
} | ||
|
||
.entry-body h2 { | ||
margin: 0px; | ||
margin-bottom: 20px; | ||
text-transform: uppercase; | ||
} | ||
|
||
h2 a { | ||
font-family: 'TradeGothic_2' ,'sans-serif' !important; | ||
color: #000; | ||
font-size: 100%; | ||
text-decoration: none; | ||
} | ||
|
||
.image-post-format.standard-thumbnail { | ||
display: block; | ||
height: auto; | ||
overflow: visible; | ||
position: relative; | ||
width: 280px; | ||
float: left; | ||
margin-right: 15px; | ||
} | ||
|
||
/*Pro's pagina style*/ | ||
|
||
.page-title-heading { | ||
font-family: 'TradeGothic_2' ,'sans-serif' !important; | ||
margin-top: 0; | ||
margin-bottom: 0; | ||
color: #757575 !important; | ||
text-transform: uppercase; | ||
} | ||
|
||
.title-border { | ||
height: 3px; | ||
position: relative; | ||
width: 100%; | ||
margin: -15px 0 5px 0; | ||
border-top: 2px solid #ccc; | ||
} | ||
|
||
.portfolio-container { | ||
width: 100%; | ||
float: left; | ||
clear: both; | ||
position: relative; | ||
} | ||
|
||
ul#portfolio-items-one-fourth { | ||
width: 100%; | ||
overflow: hidden; | ||
margin: 0 0 20px 0; | ||
position: relative; | ||
float: left; | ||
padding: 0 0 15px 0; | ||
} | ||
|
||
ul.portfolio-items-one-fourth li.item.photo { | ||
height: auto !important; | ||
} | ||
|
||
ul.portfolio-items-one-fourth li { | ||
width: 216px; | ||
margin: 15px 0 0 15px; | ||
float: left; | ||
height: 250px; | ||
overflow: hidden; | ||
} | ||
|
||
.pro-name .full { | ||
color: #000; | ||
font-size: 24px; | ||
text-align: left; | ||
font-family: 'TradeGothic_2' ,'sans-serif' !important; | ||
text-transform: uppercase; | ||
} | ||
|
||
/*About page style*/ | ||
|
||
.about_text { | ||
|
||
font-family: 'TradeGothic_2' ,'sans-serif' !important; | ||
font-size: 18px; | ||
|
||
} | ||
#splash_image { | ||
position: fixed; | ||
width: 100%; | ||
z-index: 999; | ||
|
||
} | ||
|
||
#splash { | ||
width: inherit; | ||
height: inherit; | ||
} |
Oops, something went wrong.