Created
September 14, 2011 17:04
-
-
Save Pistos/1217111 to your computer and use it in GitHub Desktop.
Zero Escort stylesheets
This file contains hidden or 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
| * { | |
| font-family: sans-serif; | |
| } | |
| body { | |
| color: #000000; | |
| background-color: #ffffff; | |
| } | |
| input { | |
| color: #000000; | |
| background-color: #eeeeee; | |
| } | |
| a { | |
| color: #660000; | |
| background-color: #ffeeee; | |
| } | |
| a:hover { | |
| color: #cc6666; | |
| background-color: #fff6ee; | |
| } | |
| .spot { | |
| fill: #FFD28A; | |
| stroke: #000000; | |
| } | |
| .spot.available, .spot.from.available, .spot.to.available { | |
| fill: #FFFFEE; | |
| } | |
| .spot.from { | |
| fill: #BBFFBB; | |
| } | |
| .spot.to { | |
| fill: #FFAAAA; | |
| } | |
| .unit-to-place.selected { | |
| color: #ff0000; | |
| background-color: #ffdddd; | |
| } | |
| .side-1, .side-1 * { | |
| fill: #990000; | |
| color: #990000; | |
| } | |
| .side-2, .side-2 * { | |
| fill: #000099; | |
| color: #000099; | |
| } | |
| .flash { | |
| font-size: 9pt; | |
| } | |
| #flash-error { | |
| border-color: #660000; | |
| color: #660000; | |
| background-color: #ffdddd; | |
| } | |
| #flash-notice { | |
| border-color: #884400; | |
| color: #884400; | |
| background-color: #ffeebb; | |
| } | |
| #flash-achievement { | |
| border-color: #000088; | |
| color: #000088; | |
| background-color: #cceeff; | |
| } | |
| #rules { | |
| border-color: black; | |
| background-color: white; | |
| } | |
| .help.closable { | |
| border-color: #996633; | |
| color: #996633; | |
| background-color: #ffffdd; | |
| } | |
| .game-ending-warning { | |
| color: #660000; | |
| border-color: #660000; | |
| background-color: #ffeeee; | |
| } | |
| #ie-warning { | |
| color: #660000; | |
| border-color: #660000; | |
| background-color: #ffeeee; | |
| } | |
| #message { | |
| border-color: #666666; | |
| } | |
| #chat table tr.highlighted { | |
| background-color: #FFEEDD; | |
| } | |
| #games-waiting { | |
| border-color: black; | |
| background-color: #FFEEDD; | |
| } | |
| #header { | |
| background: url('/images/header.png') repeat-x; | |
| } | |
| #skin-selector { | |
| font-size: 7pt; | |
| } |
This file contains hidden or 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
| @import url(http://fonts.googleapis.com/css?family=Rationale|VT323); | |
| * { | |
| /* font-family: 'Rationale', sans-serif; */ | |
| font-family: 'VT323', sans-serif; | |
| font-size: 14pt; | |
| } | |
| body { | |
| color: #00FF00; | |
| background-color: #000000; | |
| } | |
| input { | |
| color: #00FF00; | |
| background-color: #001100; | |
| } | |
| select, option { | |
| color: #00FF00; | |
| background-color: #001100; | |
| } | |
| a { | |
| color: #00FF00; | |
| background-color: #002200; | |
| text-decoration: underline; | |
| } | |
| a:hover { | |
| color: #002200; | |
| background-color: #00CC00; | |
| } | |
| .spot { | |
| fill: #001100; | |
| stroke: #00CC00; | |
| } | |
| .spot.available, .spot.from.available, .spot.to.available { | |
| fill: #005500; | |
| stroke: #22FF22; | |
| } | |
| .spot.from { | |
| fill: #333366; | |
| } | |
| .spot.to { | |
| fill: #663333; | |
| } | |
| .unit-to-place.selected { | |
| border: 2px solid #00FF00; | |
| } | |
| .side-1, .side-1 * { | |
| fill: #ff8800; | |
| color: #ff8800; | |
| } | |
| .side-2, .side-2 * { | |
| fill: #992200; | |
| color: #992200; | |
| } | |
| .flash { | |
| font-size: 12pt; | |
| } | |
| #flash-error { | |
| border-color: #660000; | |
| color: #660000; | |
| background-color: #ffdddd; | |
| } | |
| #flash-notice { | |
| border-color: #33FF33; | |
| color: #003300; | |
| background-color: #00CC00; | |
| } | |
| #flash-achievement { | |
| border-color: #000088; | |
| color: #000088; | |
| background-color: #cceeff; | |
| } | |
| #rules { | |
| border-color: #00ff00; | |
| background-color: #001800; | |
| } | |
| .help.closable { | |
| border-color: #33FF33; | |
| color: #003300; | |
| background-color: #00CC00; | |
| } | |
| .game-ending-warning { | |
| color: #660000; | |
| border-color: #660000; | |
| background-color: #ffeeee; | |
| } | |
| #ie-warning { | |
| color: #660000; | |
| border-color: #660000; | |
| background-color: #ffeeee; | |
| } | |
| #message { | |
| border-color: #666666; | |
| } | |
| #chat table tr.highlighted { | |
| background-color: #FFEEDD; | |
| } | |
| #games-waiting { | |
| border-color: black; | |
| background-color: #FFEEDD; | |
| } | |
| #header { | |
| background: none; | |
| border-bottom: 1px solid #00CC00; | |
| height: 25px; | |
| } | |
| #skin-selector { | |
| font-size: 12pt; | |
| } |
This file contains hidden or 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
| body { | |
| margin: 0px; | |
| padding: 0px; | |
| } | |
| input { | |
| border: 1px solid; | |
| } | |
| img { | |
| border: none; | |
| } | |
| a { | |
| text-decoration: none; | |
| } | |
| a.image { | |
| background: none; | |
| } | |
| #main { | |
| margin-left: 0px; | |
| margin-right: 0px; | |
| padding: 10px 40px 40px 40px; | |
| } | |
| table#home { | |
| width: 100%; | |
| } | |
| table#home > tbody > tr > td { | |
| vertical-align: top; | |
| width: 50%; | |
| } | |
| #svg { | |
| width: 500px; | |
| height: 500px; | |
| } | |
| .spot { | |
| stroke-width: 2; | |
| } | |
| .spot.available, .spot.from.available, .spot.to.available { | |
| cursor: pointer; | |
| } | |
| .unit { | |
| font-size: 26px; | |
| font-family: sans-serif; | |
| font-weight: bold; | |
| cursor: default; | |
| } | |
| .clickable { | |
| cursor: pointer; | |
| } | |
| .unit.selected { | |
| opacity: 0.4; | |
| } | |
| .unit-to-place { | |
| font-size: 26px; | |
| font-family: sans-serif; | |
| font-weight: bold; | |
| cursor: pointer; | |
| } | |
| .flash { | |
| border: 2px solid; | |
| padding: 1em; | |
| margin-top: 1em; | |
| max-width: 80%; | |
| } | |
| #flash-achievement { | |
| font-size: 11pt; | |
| } | |
| #info { | |
| height: 30px; | |
| font-size: 10pt; | |
| } | |
| #rules { | |
| display: none; | |
| position: absolute; | |
| top: 160px; | |
| left: 100px; | |
| border: 2px solid; | |
| z-index: 2; | |
| padding: 1em; | |
| } | |
| #rules-link { | |
| margin-left: 2em; | |
| } | |
| .closer { | |
| float: right; | |
| cursor: pointer; | |
| } | |
| #game-events { | |
| font-size: 9pt; | |
| } | |
| .event-time { | |
| white-space: nowrap; | |
| vertical-align: top; | |
| } | |
| .event-actor { | |
| vertical-align: top; | |
| text-align: right; | |
| } | |
| #layout-game-log { | |
| width: 300px; | |
| } | |
| #header { | |
| font-size: 13px; | |
| padding: 0.5em; | |
| background: url('/images/header.png') repeat-x; | |
| height: 18px; | |
| } | |
| #login { | |
| float: right; | |
| } | |
| #menu-main { | |
| float: left; | |
| } | |
| #logo { | |
| float: right; | |
| margin-top: 15px; | |
| } | |
| #logo a { | |
| background: transparent; | |
| } | |
| .help.closable { | |
| border: 2px solid; | |
| padding: 1em; | |
| margin: 1em 4em; | |
| font-size: 12pt; | |
| } | |
| .help.closer { | |
| margin-left: 2em; | |
| } | |
| #feedback-link { | |
| position: fixed; | |
| right: 0px; | |
| top: 250px; | |
| } | |
| .game-ending-warning { | |
| border: 2px solid; | |
| padding: 1em; | |
| font-size: 9pt; | |
| margin-bottom: 1em; | |
| } | |
| #ie-warning { | |
| display: none; | |
| border: 2px solid; | |
| padding: 1em; | |
| font-size: 9pt; | |
| margin-top: 1em; | |
| } | |
| td.label { | |
| vertical-align: top; | |
| text-align: right; | |
| } | |
| #message { | |
| border: 2px solid; | |
| margin: 3em; | |
| padding: 2em; | |
| } | |
| form#challenge { | |
| text-align: center; | |
| } | |
| input#accept, input#refuse { | |
| font-size: 16pt; | |
| font-weight: bold; | |
| padding: 0.4em 0.8em; | |
| } | |
| input#refuse { | |
| margin-left: 4em; | |
| } | |
| #last-seen { | |
| margin-bottom: 1em; | |
| } | |
| #chat-includer { | |
| width: 100%; | |
| } | |
| #chat { | |
| overflow-x: visible; | |
| overflow-y: auto; | |
| max-height: 400px; | |
| } | |
| #chat table { | |
| font-size: 9pt; | |
| } | |
| #chat table .chat-time { | |
| width: 90px; | |
| vertical-align: top; | |
| } | |
| #chat table .chat-author { | |
| text-align: right; | |
| vertical-align: top; | |
| } | |
| #chat table .chat-text { | |
| width: 100%; | |
| } | |
| div#gravatar { | |
| margin-top: 10px; | |
| margin-bottom: 10px; | |
| } | |
| h3#username { | |
| margin-bottom: 0px; | |
| } | |
| table.gravatar { | |
| margin-top: 0px; | |
| display: inline; | |
| } | |
| div.current-player { | |
| margin-bottom: 1em; | |
| } | |
| div.current-player * { | |
| font-weight: bold; | |
| font-size: 14pt; | |
| } | |
| .hidden { | |
| display: none; | |
| } | |
| #turn-indicator { | |
| cursor: pointer; | |
| height: 13px; | |
| width: 13px; | |
| } | |
| #games-waiting { | |
| display: none; | |
| position: absolute; | |
| top: 20px; | |
| left: 10px; | |
| border: 1px solid; | |
| padding: 1em; | |
| } | |
| #skin-selector { | |
| float: right; | |
| margin-right: 1em; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment