-
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
4afa65a
commit 1bf43c7
Showing
79 changed files
with
29,475 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,3 @@ | ||
# WORK TIME | ||
### 2018 | ||
* **Start** | **Break** |
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,181 @@ | ||
html, body { | ||
/*font-family: 'Audiowide', cursive;*/ | ||
/*font-family: 'Roboto', sans-serif;*/ | ||
font-family: 'Oswald', sans-serif; | ||
} | ||
|
||
a, | ||
a:hover { | ||
color: unset; | ||
text-decoration: none; | ||
} | ||
|
||
.welcomePage { | ||
position: fixed; | ||
width: 100%; | ||
height: 100%; | ||
z-index: 999; | ||
top: 0; left: 0; | ||
background-color: rgba(255,255,255,.7); | ||
overflow: hidden; | ||
animation-name: fade-out; | ||
animation-duration: 1s; | ||
animation-fill-mode: forwards; | ||
} | ||
|
||
@keyframes fade-out { | ||
0% { opacity: 0; z-index: 999; } | ||
50% { opacity: 1; z-index: 999; } | ||
75% { opacity: 1; z-index: 999; } | ||
99% { opacity: 0; z-index: 999; } | ||
100% { opacity: 0; z-index: -9999; visibility: hidden; } | ||
} | ||
|
||
.welcomePage__title { | ||
position: absolute; | ||
top: 50%; left: 50%; | ||
transform: translate(-50%, -50%); | ||
color: #555; | ||
} | ||
|
||
header { | ||
position: fixed; | ||
display: block; | ||
width: 100%; | ||
top: 0; | ||
padding: 10px 0; | ||
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12); | ||
opacity: 0; | ||
font-family: 'Oswald', sans-serif; | ||
z-index: 1; | ||
background-color: rgba(255,255,255,.7); | ||
animation-name: show; | ||
animation-duration: 1s; | ||
animation-fill-mode: forwards; | ||
} | ||
|
||
@keyframes show { | ||
0% { opacity: 0; transform: translateY(-100%);} | ||
100% { opacity: 1; transform: translateX(0%);} | ||
} | ||
|
||
.img-responsive { | ||
width: 100%; | ||
} | ||
|
||
.header__logo { | ||
width: 150px; | ||
} | ||
|
||
.header__logoTitle { | ||
color: #555; | ||
margin-bottom: 0; | ||
} | ||
|
||
.header__logoSubtitle { | ||
color: #666; | ||
font-size: 24px; | ||
} | ||
|
||
.header__list { | ||
position: relative; | ||
list-style: none; | ||
padding-left: 0; | ||
margin: 0; | ||
margin-left: 20px; | ||
} | ||
|
||
.header_listItem { | ||
display: block; | ||
float: left; | ||
margin: 0 10px; | ||
text-transform: uppercase; | ||
} | ||
|
||
.table { | ||
display: table; | ||
margin: 0; | ||
} | ||
|
||
.table-row { | ||
display: table-row; | ||
} | ||
|
||
.table-cell { | ||
display: table-cell; | ||
vertical-align: bottom; | ||
} | ||
|
||
section { | ||
position: relative; | ||
display: block; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
.section__backgroundImage { | ||
width: 100%; | ||
} | ||
|
||
.box { | ||
margin: 20px 0; | ||
} | ||
|
||
.aboutUs { | ||
position: relative; | ||
display: block; | ||
padding: 20px 0; | ||
width: 100%; | ||
font-family: 'Oswald', sans-serif; | ||
} | ||
|
||
header, | ||
section, | ||
.box { | ||
/*display: none;*/ | ||
} | ||
|
||
footer { | ||
position: relative; | ||
width: 100%; | ||
background-color: #3c3c3c; | ||
padding: 20px 0; | ||
text-align: center; | ||
color: #fff; | ||
} | ||
|
||
footer a { | ||
transition: .5s; | ||
opacity: 0.5; | ||
} | ||
|
||
footer a:hover { | ||
opacity: 1; | ||
} | ||
|
||
@media (max-width: 410px) { | ||
header { | ||
position: relative; | ||
} | ||
|
||
header .table-cell { | ||
display: block; | ||
} | ||
|
||
header .table-cell.logo { | ||
text-align: center; | ||
padding-bottom: 10px; | ||
} | ||
|
||
header .header__list { | ||
display: inline-block; | ||
margin-left: 0; | ||
width: 100%; | ||
} | ||
|
||
header .header_listItem:first-child { | ||
margin-left: 0; | ||
} | ||
|
||
|
||
} |
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,18 @@ | ||
$(document).ready(function() { | ||
function goToByScroll(link){ | ||
// Remove "link" from the ID | ||
// id = link.replace("link", ""); | ||
// Scroll | ||
$('html, body').animate({scrollTop: $("#"+link).offset().top},'slow'); | ||
} | ||
$(".navLinkItem").click(function(e) { | ||
// Prevent a page reload when a link is pressed | ||
e.preventDefault(); | ||
// Call the scroll function | ||
goToByScroll(this.title); | ||
}); | ||
|
||
// setTimeout(function(){ | ||
// $('header, section, .box').css("display","block"); | ||
// }, 1000); | ||
}); |
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.
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.