diff options
Diffstat (limited to 'css')
-rw-r--r-- | css/maps.css | 10 | ||||
-rw-r--r-- | css/page.css | 65 |
2 files changed, 72 insertions, 3 deletions
diff --git a/css/maps.css b/css/maps.css index 7bad117..48d3ab5 100644 --- a/css/maps.css +++ b/css/maps.css @@ -1,3 +1,11 @@ +
+.green {
+ color:#22FF22;
+}
+.red {
+ color:#FF2222;
+}
+
.grid_dsp_data {
padding:1px;
font-weight:bold;
@@ -80,7 +88,7 @@ }
.grid_td,
.grid_td_rocks, .grid_td_gray, .grid_td_path, .grid_td_blanks, .grid_td_walls,
-.grid_td_start, .grid_td_finish,
+.grid_td_start, .grid_td_startB, .grid_td_finish,
.grid_td_cpa, .grid_td_cpb, .grid_td_cpc,
.grid_td_cpd, .grid_td_cpe,
.grid_td_animate, .grid_td_animate_pre,
diff --git a/css/page.css b/css/page.css index fa4f24b..7ff617c 100644 --- a/css/page.css +++ b/css/page.css @@ -30,6 +30,66 @@ form { display: inline;
}
+.footerArea {
+ width:100%;
+ text-align:center;
+}
+
+.footerArea hr {
+ height: 12px;
+ border: 0;
+ box-shadow: inset 0 12px 12px -12px rgba(220,220,120,0.5);
+}
+.footerArea ul{
+ margin: 0px auto;
+ width:760px;
+ margin-bottom:20px;
+ overflow:hidden;
+}
+.footerArea li{
+ line-height:1.5em;
+ float:left;
+ display:inline;
+}
+.divide {
+ font-weight:bold;
+ padding: 15px 15px;
+ margin: 12px auto;
+ text-align: center;
+ position: relative;
+ min-width: 900px;
+ z-index: -10;
+
+background: #272727;
+background: -moz-linear-gradient(top, #272727 0%, #111111 100%);
+background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#272727), color-stop(100%,#111111));
+background: -webkit-linear-gradient(top, #272727 0%,#111111 100%);
+background: -o-linear-gradient(top, #272727 0%,#111111 100%);
+background: -ms-linear-gradient(top, #272727 0%,#111111 100%);
+background: linear-gradient(to bottom, #272727 0%,#111111 100%);
+filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#272727', endColorstr='#111111',GradientType=0 );
+
+}
+
+#countdown {
+ text-align: center;
+ margin-top: 5px;
+ position:fixed;
+ bottom:20px;
+ left:20px;
+ border:1px solid #777;
+ padding:4px;
+}
+
+
+#double li { width:50%;} /* 2 col */
+#triple li { width:33.333%; } /* 3 col */
+#quad li { width:25%; } /* 4 col */
+#six li { width:16.666%; } /* 6 col */
+
+
+
+
a:link, a:visited, a:active {
text-decoration: underline;
color: #FFFFCC;
@@ -88,7 +148,7 @@ position:absolute;color:#333;left:25px;bottom:20px; text-align: left;
left:50%;
top:120px;
- width:550px;
+ width:530px;
margin-left:-275px;
display:inline;
}
@@ -273,8 +333,9 @@ table.score th { #copy {
text-align: center;
- margin: 40px auto 0;
+ margin: 0px auto 0;
width: 400px;
+ font-size: 80%;
}
#copy iframe {
border: none;
|