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
204 lines
3.7 KiB
CSS
204 lines
3.7 KiB
CSS
body {
|
|
overflow: hidden;
|
|
font-family: "Ubuntu sans", Arial, sans-serif;
|
|
font-size: 14px;
|
|
color: #ddd;
|
|
line-height: 1em;
|
|
background: #1e1e1e;
|
|
}
|
|
|
|
#panel-center {
|
|
margin: 0;
|
|
position: absolute;
|
|
z-index: 20;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 200px;
|
|
right: 400px;
|
|
}
|
|
|
|
#panel-left {
|
|
margin: 0;
|
|
position: absolute;
|
|
z-index: 10;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 200px;
|
|
|
|
background: #191919;
|
|
}
|
|
|
|
#panel-right {
|
|
margin: 0;
|
|
position: absolute;
|
|
z-index: 30;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 400px;
|
|
|
|
background: #191919;
|
|
}
|
|
|
|
#editor {
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 50%;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 100;
|
|
}
|
|
|
|
#diagram {
|
|
margin: 0;
|
|
position: absolute;
|
|
bottom: 0;
|
|
top: 50%;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 200;
|
|
}
|
|
|
|
#editor-separator, #preview-separator {
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0;
|
|
right: 0;
|
|
height: 3px;
|
|
z-index: 300;
|
|
background: #191919;
|
|
border-top: 1px solid #292929;
|
|
border-bottom: 1px solid #292929;
|
|
}
|
|
#preview-separator {
|
|
z-index: 400;
|
|
left: 3px;
|
|
}
|
|
|
|
#left-separator {
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
width: 3px;
|
|
z-index: 300;
|
|
background: #191919;
|
|
}
|
|
|
|
#right-separator {
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 3px;
|
|
z-index: 300;
|
|
background: #191919;
|
|
}
|
|
|
|
#preview {
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 50%;
|
|
left: 3px;
|
|
width: 396px;
|
|
|
|
background: #1e1e1e;
|
|
border-left: 1px solid #292929;
|
|
z-index: 210;
|
|
}
|
|
|
|
#console {
|
|
margin: 0;
|
|
position: absolute;
|
|
bottom: 0;
|
|
top: 50%;
|
|
left: 0;
|
|
left: 3px;
|
|
width: 396px;
|
|
z-index: 220;
|
|
background: #1e1e1e;
|
|
border-left: 1px solid #292929;
|
|
}
|
|
|
|
#console-text {
|
|
background: transparent;
|
|
border: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #666;
|
|
text-shadow: 0px 1px 1px #000000;
|
|
filter: dropshadow(color=#000000, offx=0, offy=1);
|
|
padding: 6px;
|
|
outline: none;
|
|
overflow: hidden;
|
|
scroll: none;
|
|
}
|
|
|
|
#preview canvas {
|
|
background: #161616;
|
|
}
|
|
|
|
#modules {
|
|
margin: 0;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 196px;
|
|
|
|
font-size: 13px;
|
|
|
|
background: #1e1e1e;
|
|
border-right: 1px solid #292929;
|
|
}
|
|
|
|
#modules ul {
|
|
-webkit-touch-callout: none;
|
|
-webkit-user-select: none;
|
|
-khtml-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
|
|
list-style: none;
|
|
margin: 10px 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#modules li {
|
|
list-style: none;
|
|
line-height: 2.0em;
|
|
padding: 0 20px;
|
|
background: #1e1e1e;
|
|
cursor: pointer;
|
|
|
|
text-shadow: 0px 1px 1px #000000;
|
|
filter: dropshadow(color=#000000, offx=0, offy=1);
|
|
}
|
|
|
|
#modules li:hover {
|
|
background: #434343; /* Old browsers */
|
|
background: -moz-linear-gradient(top, #888 0%, #4e4e4e 4%, #434343 96%, #1e1e1e 100%); /* FF3.6+ */
|
|
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#888), color-stop(4%,#4e4e4e), color-stop(96%,#434343), color-stop(100%,#1e1e1e)); /* Chrome,Safari4+ */
|
|
background: -webkit-linear-gradient(top, #888 0%, #4e4e4e 4%, #434343 96%, #1e1e1e 100%); /* Chrome10+,Safari5.1+ */
|
|
background: -o-linear-gradient(top, #888 0%, #4e4e4e 4%, #434343 96%, #1e1e1e 100%); /* Opera 11.10+ */
|
|
background: -ms-linear-gradient(top, #888 0%, #4e4e4e 4%, #434343 96%, #1e1e1e 100%); /* IE10+ */
|
|
background: linear-gradient(to bottom, #888 0%, #4e4e4e 4%, #434343 96%, #1e1e1e 100%); /* W3C */
|
|
|
|
}
|
|
|
|
#modules li.active {
|
|
background: #292929;
|
|
}
|
|
|
|
#render
|
|
{
|
|
position: absolute;
|
|
z-index: 9999999;
|
|
} |