new file: Files/flashplayer_32_sa.exe new file: favicon.ico new file: globe.gif new file: imgs/download.png new file: imgs/zuck.jpg new file: index.html new file: other.ico new file: script.js new file: site.webmanifest new file: sitemap.html new file: styles/backround.css new file: styles/border.css new file: styles/fonts/Titillium_Web/OFL.txt new file: styles/fonts/Titillium_Web/TitilliumWeb-Black.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-Bold.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-BoldItalic.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-ExtraLight.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-ExtraLightItalic.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-Italic.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-Light.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-LightItalic.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-Regular.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-SemiBold.ttf new file: styles/fonts/Titillium_Web/TitilliumWeb-SemiBoldItalic.ttf new file: styles/fonts/webfontkit-20221027-163353/generator_config.txt new file: styles/fonts/webfontkit-20221027-163353/specimen_files/grid_12-825-55-15.css new file: styles/fonts/webfontkit-20221027-163353/specimen_files/specimen_stylesheet.css new file: styles/fonts/webfontkit-20221027-163353/stylesheet.css new file: styles/fonts/webfontkit-20221027-163353/titilliumweb-extralight-demo.html new file: styles/fonts/webfontkit-20221027-163353/titilliumweb-extralight-webfont.woff new file: styles/fonts/webfontkit-20221027-163353/titilliumweb-extralight-webfont.woff2 new file: styles/fonts/webfontkit-20221027-165950/generator_config.txt new file: styles/fonts/webfontkit-20221027-165950/specimen_files/grid_12-825-55-15.css new file: styles/fonts/webfontkit-20221027-165950/specimen_files/specimen_stylesheet.css new file: styles/fonts/webfontkit-20221027-165950/stylesheet.css new file: styles/fonts/webfontkit-20221027-165950/titilliumweb-bold-demo.html new file: styles/fonts/webfontkit-20221027-165950/titilliumweb-bold-webfont.woff new file: styles/fonts/webfontkit-20221027-165950/titilliumweb-bold-webfont.woff2 new file: styles/style.css new file: tools/2048/.gitignore new file: tools/2048/.jshintrc new file: tools/2048/CONTRIBUTING.md new file: tools/2048/LICENSE.txt new file: tools/2048/README.md new file: tools/2048/Rakefile new file: tools/2048/favicon.ico new file: tools/2048/index.html new file: tools/2048/js/animframe_polyfill.js new file: tools/2048/js/application.js new file: tools/2048/js/bind_polyfill.js new file: tools/2048/js/classlist_polyfill.js new file: tools/2048/js/game_manager.js new file: tools/2048/js/grid.js new file: tools/2048/js/html_actuator.js new file: tools/2048/js/keyboard_input_manager.js new file: tools/2048/js/local_storage_manager.js new file: tools/2048/js/tile.js new file: tools/2048/meta/apple-touch-icon.png new file: tools/webretro/cores/neocd_libretro.js new file: tools/webretro/cores/neocd_libretro.wasm new file: tools/webretro/cores/nestopia_libretro.js new file: tools/webretro/cores/nestopia_libretro.wasm new file: tools/webretro/cores/o2em_libretro.js new file: tools/webretro/cores/o2em_libretro.wasm new file: tools/webretro/cores/opera_libretro.js new file: tools/webretro/cores/opera_libretro.wasm
295 lines
6.1 KiB
CSS
295 lines
6.1 KiB
CSS
/*-- GLOBAL STYLES --*/
|
|
body.game-page {
|
|
text-align: center;
|
|
font-family: 'Roboto', sans-serif;
|
|
background: url("../assets/web/full-bg.jpg") #000 50% 0px;
|
|
background-size: 2958px 1310px;
|
|
background-repeat: no-repeat;
|
|
color: #FFF;
|
|
margin: 0;
|
|
}
|
|
html, body {
|
|
height: 100%;
|
|
margin: 0;
|
|
}
|
|
.wrapper {
|
|
min-height: 100%;
|
|
margin-bottom: -150px;
|
|
padding-top: 160px;
|
|
}
|
|
footer,
|
|
.push {
|
|
height: 150px;
|
|
}
|
|
footer {
|
|
background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* FF3.6-15 */
|
|
background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* Chrome10-25,Safari5.1-6 */
|
|
background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
|
|
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */
|
|
text-align: center;
|
|
font-family: 'Roboto', sans-serif;
|
|
padding-top: 20px;
|
|
}
|
|
footer h1 {
|
|
font-size: 23px;
|
|
font-weight: 500;
|
|
opacity: 0.85;
|
|
margin: 0;
|
|
}
|
|
footer p {
|
|
margin: 0;
|
|
padding: 0;
|
|
opacity: 0.85;
|
|
}
|
|
footer ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
opacity: 0.85;
|
|
}
|
|
footer ul li {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
footer ul li a {
|
|
color: #6CBDFF;
|
|
}
|
|
footer .jami a {
|
|
color: #C1B1FF;
|
|
font-weight: 500;
|
|
}
|
|
footer .renee a {
|
|
color: #B2FBFF;
|
|
font-weight: 500;
|
|
}
|
|
footer .ardan a {
|
|
color:#FFA488;
|
|
font-weight: 500;
|
|
}
|
|
/*-- GAME SCREEN STYLES --*/
|
|
canvas{
|
|
image-rendering: -moz-crisp-edges;
|
|
image-rendering: -webkit-crisp-edges;
|
|
image-rendering: pixelated;
|
|
margin: 50px auto 0;
|
|
}
|
|
#phaser-wrapper {
|
|
position: relative;
|
|
height: 432px;
|
|
width: 100%;
|
|
}
|
|
#phaser-wrapper img {
|
|
display: block;
|
|
margin: 0 auto;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
#phaser-wrapper canvas {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 50%;
|
|
margin-left: -300px;
|
|
border-radius: 10px;
|
|
margin-top: 0px;
|
|
}
|
|
|
|
/*-- LEADERBOARD SCREEN --*/
|
|
body.leaderboard-page {
|
|
font-family: 'Patua One', cursive;
|
|
background: url("../assets/web/arcade-bg.jpg") #000;
|
|
background-size:cover;
|
|
background-repeat: no-repeat;
|
|
color: #FFF;
|
|
}
|
|
.ardan-sticker {
|
|
height: 60px;
|
|
width: 130px;
|
|
display: block;
|
|
position: absolute;
|
|
top: 693px;
|
|
left: 50%;
|
|
margin-left: -65px;
|
|
border-radius: 100%;
|
|
transition: all 0.1s ease;
|
|
}
|
|
.ardan-sticker:hover {
|
|
background: rgba(255,255,255,0.1);
|
|
box-shadow: 0px 1px 30px rgba(255,255,255,0.2);
|
|
-webkit-filter: blur(10px);
|
|
-moz-filter: blur(10px);
|
|
-o-filter: blur(10px);
|
|
-ms-filter: blur(10px);
|
|
filter: blur(10px);
|
|
}
|
|
.github-sticker {
|
|
height: 90px;
|
|
width: 110px;
|
|
display: block;
|
|
position: absolute;
|
|
top: 30px;
|
|
left: 50%;
|
|
margin-left: 205px;
|
|
border-radius: 100%;
|
|
transition: all 0.1s ease;
|
|
}
|
|
.github-sticker:hover {
|
|
background: rgba(255,255,255,0.1);
|
|
box-shadow: 0px 1px 30px rgba(255,255,255,0.2);
|
|
-webkit-filter: blur(10px);
|
|
-moz-filter: blur(10px);
|
|
-o-filter: blur(10px);
|
|
-ms-filter: blur(10px);
|
|
filter: blur(10px);
|
|
}
|
|
body.leaderboard-page h1 {
|
|
color: #04fcdc;
|
|
text-align: center;
|
|
}
|
|
@keyframes fade {
|
|
from {opacity: 0;}
|
|
to {opacity: 1;}
|
|
}
|
|
.leaderboard-list dl {
|
|
border: 3px solid rgba(255,255,255,0.10);
|
|
opacity: 0;
|
|
padding: 5px 25px;
|
|
border-radius: 5px;
|
|
}
|
|
.leaderboard-list dl:nth-child(1) {
|
|
color: #fcfc04;
|
|
opacity: 1;
|
|
border: none;
|
|
}
|
|
.leaderboard-list dl:nth-child(2) {
|
|
color: #dcdcdc;
|
|
animation: fade 1s normal forwards ease-in-out;
|
|
animation-delay: 0.2s;
|
|
}
|
|
.leaderboard-list dl:nth-child(3) {
|
|
color: #fc0404;
|
|
animation: fade 1s normal forwards ease-in-out;
|
|
animation-delay: 0.4s;
|
|
}
|
|
.leaderboard-list dl:nth-child(4) {
|
|
color: #fcb444;
|
|
animation: fade 1s normal forwards ease-in-out;
|
|
animation-delay: 0.8s;
|
|
}
|
|
.leaderboard-list dl:nth-child(5) {
|
|
color: #fcb494;
|
|
animation: fade 1s normal forwards ease-in-out;
|
|
animation-delay: 1.2s;
|
|
}
|
|
.leaderboard-list dl:nth-child(6) {
|
|
color: #f4cc34;
|
|
animation: fade 1s normal forwards ease-in-out;
|
|
animation-delay: 1.4s;
|
|
}
|
|
.leaderboard-list dl:nth-child(7) {
|
|
color: #fcfc04;
|
|
animation: fade 1s normal forwards ease-in-out;
|
|
animation-delay: 1.8s;
|
|
}
|
|
.leaderboard-list dl:nth-child(8) {
|
|
color: #14b42c;
|
|
animation: fade 1s normal forwards ease-in-out;
|
|
animation-delay: 2.2s;
|
|
}
|
|
.leaderboard-list dl:nth-child(9) {
|
|
color: #04fcdc;
|
|
animation: fade 1s normal forwards ease-in-out;
|
|
animation-delay: 2.4s;
|
|
}
|
|
.leaderboard-list dl:nth-child(10) {
|
|
color: #149cb4;
|
|
animation: fade 1s normal forwards ease-in-out;
|
|
animation-delay: 2.8s;
|
|
}
|
|
.leaderboard-list dl:nth-child(11) {
|
|
color: #0cd424;
|
|
animation: fade 1s normal forwards ease-in-out;
|
|
animation-delay: 3.2s;
|
|
}
|
|
.leaderboard-list dl dd{
|
|
display: inline-block;
|
|
font-size: 25px;
|
|
width: 32.5%;
|
|
margin: 0;
|
|
}
|
|
.leaderboard-list dl dd:last-child{
|
|
text-align: right;
|
|
}
|
|
|
|
.mobile-wrapper {
|
|
background: url("../assets/mobile-bg.png") #000 50% 0px;
|
|
border-radius: 10px;
|
|
height: 432px;
|
|
width: 600px;
|
|
display: none;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 50%;
|
|
margin-left: -300px;
|
|
border-radius: 10px;
|
|
margin-top: 0px;
|
|
z-index: 300;
|
|
color: #000;
|
|
}
|
|
.mobile-wrapper h1 {
|
|
display: block;
|
|
}
|
|
.mobile-wrapper img.mobile-gopher {
|
|
bottom: 10px !important;
|
|
display: block !important;
|
|
position: absolute !important;
|
|
left: 50% !important;
|
|
margin-left: -68.5px !important;
|
|
image-rendering: pixelated !important;
|
|
|
|
}
|
|
.mobile-wrapper img.mobile-title {
|
|
position: absolute !important;
|
|
top: 30px !important;
|
|
left: 50% !important;
|
|
margin-left: -150px !important;
|
|
image-rendering: pixelated !important;
|
|
}
|
|
.mobile-wrapper img.mobile-info {
|
|
position: absolute !important;
|
|
top: 110px !important;
|
|
left: 50% !important;
|
|
margin-left: -150px !important;
|
|
image-rendering: pixelated !important;
|
|
}
|
|
|
|
@media(max-width:767px){
|
|
body{
|
|
overflow-x: hidden;
|
|
}
|
|
.mobile-wrapper {
|
|
display: block;
|
|
}
|
|
canvas {
|
|
display: none !important;
|
|
}
|
|
}
|
|
@media(max-width:576px){
|
|
.mobile-wrapper {
|
|
border-radius: 0;
|
|
margin: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
}
|
|
canvas {
|
|
display: none !important;
|
|
}
|
|
body{
|
|
overflow-x: hidden;
|
|
}
|
|
.mobile-wrapper {
|
|
display: block;
|
|
}
|
|
canvas {
|
|
display: none !important;
|
|
}
|
|
} |