2012-02-02 22:47:23 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2012, Andy Janata
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without modification, are permitted
|
|
|
|
* provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above copyright notice, this list of conditions
|
|
|
|
* and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright notice, this list of
|
|
|
|
* conditions and the following disclaimer in the documentation and/or other materials provided
|
|
|
|
* with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
|
|
|
|
* WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2012-01-25 08:03:41 +00:00
|
|
|
body {
|
|
|
|
overflow: hidden;
|
2012-01-30 08:35:27 +00:00
|
|
|
min-height: 640px;
|
2012-12-23 17:48:00 +00:00
|
|
|
background: #eee;
|
|
|
|
color: #000;
|
|
|
|
font-size: 12px;
|
|
|
|
margin: 0;
|
2012-12-21 05:28:12 +00:00
|
|
|
}
|
2012-12-23 17:48:00 +00:00
|
|
|
|
|
|
|
.card, #game_list {
|
2012-12-21 05:28:12 +00:00
|
|
|
font-family: "helvetica neue", helvetica, Arial, sans-serif;
|
2012-01-25 08:03:41 +00:00
|
|
|
}
|
2012-12-23 17:48:00 +00:00
|
|
|
|
|
|
|
h2,h3,h4 {
|
|
|
|
margin: 0 0 .25em;
|
2012-12-21 06:47:43 +00:00
|
|
|
}
|
2012-01-24 07:04:14 +00:00
|
|
|
/*
|
2012-01-24 03:14:29 +00:00
|
|
|
#browser {
|
|
|
|
background: rgba(0, 0, 0, .5);
|
|
|
|
}
|
|
|
|
|
|
|
|
#browser_inner {
|
|
|
|
border: 10px solid red;
|
|
|
|
padding: 15px;
|
|
|
|
background: white;
|
|
|
|
margin: 150px;
|
|
|
|
min-height: 150px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#browser, #browser_inner {
|
|
|
|
position: absolute;
|
|
|
|
top: 0px;
|
|
|
|
right: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 0px;
|
|
|
|
z-index: 9001;
|
|
|
|
}
|
|
|
|
|
|
|
|
#browser_ok {
|
|
|
|
margin: 15px;
|
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
|
|
|
bottom: 0px;
|
|
|
|
}
|
2012-01-24 07:04:14 +00:00
|
|
|
*/
|
2012-01-24 03:14:29 +00:00
|
|
|
|
2012-01-18 01:48:21 +00:00
|
|
|
#menubar {
|
2012-12-21 09:00:46 +00:00
|
|
|
background:#555;
|
|
|
|
border-bottom:1px solid #333;
|
|
|
|
color:#fff;
|
2012-01-23 07:58:36 +00:00
|
|
|
height: 25px;
|
2012-12-21 09:00:46 +00:00
|
|
|
padding:.5em;
|
2012-01-18 01:48:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#menubar_left {
|
2012-01-23 07:58:36 +00:00
|
|
|
float: left;
|
2012-01-18 01:48:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#menubar_right {
|
2012-01-23 07:58:36 +00:00
|
|
|
float: right;
|
2012-01-18 01:48:21 +00:00
|
|
|
}
|
|
|
|
|
2011-12-17 00:39:52 +00:00
|
|
|
#nickbox {
|
2012-01-23 07:58:36 +00:00
|
|
|
border: 1px solid black;
|
|
|
|
display: inline;
|
|
|
|
padding: 5px;
|
2011-12-17 00:39:52 +00:00
|
|
|
}
|
|
|
|
|
2012-01-30 08:35:27 +00:00
|
|
|
#canvas {
|
|
|
|
height: 533px;
|
2012-01-23 07:58:36 +00:00
|
|
|
overflow: none;
|
|
|
|
position: relative;
|
2012-01-25 08:03:41 +00:00
|
|
|
width: 100%;
|
2011-12-17 00:39:52 +00:00
|
|
|
}
|
|
|
|
|
2012-01-18 01:48:21 +00:00
|
|
|
#main {
|
2012-01-30 08:35:27 +00:00
|
|
|
height: 506px;
|
2012-12-23 17:48:00 +00:00
|
|
|
padding: .5em;
|
2012-12-21 09:00:46 +00:00
|
|
|
}
|
2012-12-23 17:48:00 +00:00
|
|
|
|
|
|
|
#welcome {
|
|
|
|
padding: 1em;
|
2012-01-18 01:48:21 +00:00
|
|
|
}
|
2012-12-20 22:35:16 +00:00
|
|
|
|
2012-01-18 01:48:21 +00:00
|
|
|
|
2012-01-23 07:58:36 +00:00
|
|
|
#game_list {
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
overflow: auto;
|
2012-01-18 04:37:09 +00:00
|
|
|
}
|
|
|
|
|
2012-01-18 01:48:21 +00:00
|
|
|
.gamelist_lobby {
|
2012-12-23 17:48:00 +00:00
|
|
|
background: #fff;
|
|
|
|
border-radius: .25em;
|
2013-04-14 01:28:42 +01:00
|
|
|
width: 575px;
|
|
|
|
height: 175px;
|
2012-01-18 01:48:21 +00:00
|
|
|
float: left;
|
2012-12-21 05:28:12 +00:00
|
|
|
border: 1px solid #ccc;
|
2012-01-23 07:58:36 +00:00
|
|
|
margin: 4px;
|
2012-01-18 01:48:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.gamelist_lobby_left {
|
2013-04-14 01:28:42 +01:00
|
|
|
width: 77%;
|
2012-01-23 07:58:36 +00:00
|
|
|
height: 100%;
|
2012-12-23 17:48:00 +00:00
|
|
|
padding: .5em 1.5%;
|
2012-01-23 07:58:36 +00:00
|
|
|
float: left;
|
2012-01-18 01:48:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.gamelist_lobby_right {
|
2013-04-14 01:28:42 +01:00
|
|
|
width: 20%;
|
2012-01-23 07:58:36 +00:00
|
|
|
height: 100%;
|
|
|
|
float: right;
|
2012-01-18 01:48:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.gamelist_lobby_join {
|
2012-01-23 07:58:36 +00:00
|
|
|
width: 100%;
|
2013-06-10 12:36:11 +01:00
|
|
|
height: 75%;
|
|
|
|
border: 1px solid #aaa;
|
|
|
|
background: linear-gradient(#fff, #ddd) #ddd;
|
|
|
|
border-radius: .25em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.gamelist_lobby_spectate {
|
|
|
|
width: 100%;
|
|
|
|
height: 25%;
|
2012-12-23 17:48:00 +00:00
|
|
|
border: 1px solid #aaa;
|
|
|
|
background: linear-gradient(#fff, #ddd) #ddd;
|
|
|
|
border-radius: .25em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
font-weight: 700;
|
2012-01-18 01:48:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.gamelist_lobby_status {
|
2012-01-23 07:58:36 +00:00
|
|
|
float: right;
|
2012-12-23 17:48:00 +00:00
|
|
|
font-weight: 700;
|
2012-01-18 01:48:21 +00:00
|
|
|
}
|
|
|
|
|
2012-01-18 04:37:09 +00:00
|
|
|
.gamelist_lobby_status_joinable {
|
2012-01-23 07:58:36 +00:00
|
|
|
color: green;
|
2012-01-18 04:37:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.gamelist_lobby_status_unjoinable {
|
2012-01-23 07:58:36 +00:00
|
|
|
color: #c0c0c0;
|
|
|
|
}
|
|
|
|
|
2012-01-30 08:35:27 +00:00
|
|
|
#bottom {
|
|
|
|
width: 100%;
|
2012-01-23 07:58:36 +00:00
|
|
|
height: 215px;
|
2012-01-30 08:35:27 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 543px;
|
|
|
|
min-height: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#info_area {
|
|
|
|
width: 250px;
|
2012-12-23 17:48:00 +00:00
|
|
|
height: 100%;
|
2012-01-23 07:58:36 +00:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
2012-01-30 08:35:27 +00:00
|
|
|
min-height: 100px;
|
2012-12-20 22:35:16 +00:00
|
|
|
border: 1px solid #999;
|
2012-01-18 04:37:09 +00:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:23:37 +01:00
|
|
|
#tabs {
|
2012-01-30 08:35:27 +00:00
|
|
|
min-height: 100px;
|
2012-01-23 07:58:36 +00:00
|
|
|
width: 50%;
|
2012-01-30 08:35:27 +00:00
|
|
|
height: 100%;
|
2012-01-23 07:58:36 +00:00
|
|
|
border: 0px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
2012-01-30 08:35:27 +00:00
|
|
|
right: 14px;
|
2011-12-25 03:37:45 +00:00
|
|
|
}
|
|
|
|
|
2012-10-16 04:23:37 +01:00
|
|
|
#tabs .ui-widget {
|
|
|
|
font-height: 16px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tab-button {
|
|
|
|
font-size: 14px !important;
|
|
|
|
}
|
|
|
|
|
2014-01-27 07:22:37 +00:00
|
|
|
.cardset_filter_list {
|
|
|
|
display: inline-block;
|
|
|
|
width: 33%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cardset_filter_list select {
|
|
|
|
height: 150px;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cardset_filter_list span {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
.cardset_filter_list .buttons {
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2012-12-28 03:33:27 +00:00
|
|
|
.log {
|
2012-01-23 07:58:36 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 198px;
|
2012-10-16 04:23:37 +01:00
|
|
|
border-style: none solid solid none;
|
|
|
|
border-color: black;
|
|
|
|
border-width: 1px;
|
2012-01-23 07:58:36 +00:00
|
|
|
position: absolute;
|
2012-01-30 08:35:27 +00:00
|
|
|
bottom: 18px;
|
2012-01-23 07:58:36 +00:00
|
|
|
right: 0px;
|
|
|
|
overflow-y: scroll;
|
2012-10-16 04:23:37 +01:00
|
|
|
min-height: 43px;
|
|
|
|
font-size: 16px;
|
|
|
|
font-family: serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#tab-preferences input[type='button'] {
|
|
|
|
float: right;
|
2011-12-17 00:39:52 +00:00
|
|
|
}
|
|
|
|
|
2012-12-28 03:33:27 +00:00
|
|
|
.chat {
|
2012-01-23 07:58:36 +00:00
|
|
|
border: 1px solid black;
|
2012-10-16 04:23:37 +01:00
|
|
|
left: -1px;
|
2012-01-30 08:35:27 +00:00
|
|
|
bottom: 0px;
|
2012-01-23 07:58:36 +00:00
|
|
|
height: 17px;
|
|
|
|
position: absolute;
|
|
|
|
padding: 0px;
|
2012-01-24 07:02:59 +00:00
|
|
|
width: 90%;
|
2012-10-27 16:51:12 +01:00
|
|
|
font-family: serif;
|
|
|
|
font-size: 12pt;
|
2011-12-25 03:37:45 +00:00
|
|
|
}
|
|
|
|
|
2012-12-28 03:33:27 +00:00
|
|
|
.chat_submit {
|
2012-01-23 07:58:36 +00:00
|
|
|
width: 50px;
|
2012-01-30 08:35:27 +00:00
|
|
|
height: 20px;
|
2012-01-23 07:58:36 +00:00
|
|
|
position: absolute;
|
|
|
|
right: -1px;
|
|
|
|
bottom: -1px;
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
2012-10-16 04:23:37 +01:00
|
|
|
font-size: 14px;
|
2011-12-25 03:37:45 +00:00
|
|
|
}
|
|
|
|
|
2011-12-17 00:39:52 +00:00
|
|
|
span.error {
|
2012-01-23 07:58:36 +00:00
|
|
|
color: red;
|
2011-12-17 00:39:52 +00:00
|
|
|
}
|
2011-12-22 22:19:59 +00:00
|
|
|
|
2012-08-21 04:03:52 +01:00
|
|
|
span.debug, span.admin {
|
2012-01-23 07:58:36 +00:00
|
|
|
color: blue;
|
2011-12-22 22:19:59 +00:00
|
|
|
}
|
2012-01-20 02:19:05 +00:00
|
|
|
|
|
|
|
.card {
|
2012-01-25 08:03:41 +00:00
|
|
|
position: relative;
|
2012-01-23 07:58:36 +00:00
|
|
|
width: 200px;
|
|
|
|
height: 200px;
|
2012-12-21 05:28:12 +00:00
|
|
|
border: 1px solid #999;
|
2012-12-23 17:48:00 +00:00
|
|
|
padding: 15px;
|
2012-01-27 23:41:57 +00:00
|
|
|
font-size: 15pt;
|
2012-01-23 07:58:36 +00:00
|
|
|
float: left;
|
2012-12-23 17:48:00 +00:00
|
|
|
border-radius: .25em;
|
2012-01-23 07:58:36 +00:00
|
|
|
-webkit-user-select: none;
|
|
|
|
-khtml-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
-o-user-select: none;
|
|
|
|
user-select: none;
|
2012-01-20 02:19:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.blackcard {
|
2012-01-23 07:58:36 +00:00
|
|
|
background: #231f20;
|
|
|
|
color: white;
|
2012-12-21 05:28:12 +00:00
|
|
|
background-image:linear-gradient(#231f20,#231f20 75%, #333)
|
2012-01-20 02:19:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.whitecard {
|
|
|
|
background: white;
|
2012-02-01 04:22:07 +00:00
|
|
|
color: #231f20;
|
2012-01-20 02:19:05 +00:00
|
|
|
}
|
2012-12-23 17:48:00 +00:00
|
|
|
|
2012-12-21 05:28:12 +00:00
|
|
|
.whitecard, .gamelist_lobby{
|
2012-12-23 17:48:00 +00:00
|
|
|
background-image: linear-gradient(#fff,#fff 75%,#f8f8f8);
|
2012-12-21 05:28:12 +00:00
|
|
|
}
|
2012-12-23 17:48:00 +00:00
|
|
|
|
2012-01-27 02:07:39 +00:00
|
|
|
.cah {
|
2012-01-23 07:58:36 +00:00
|
|
|
position: absolute;
|
2012-01-25 08:03:41 +00:00
|
|
|
bottom: 0px;
|
2012-01-23 07:58:36 +00:00
|
|
|
left: 0px;
|
|
|
|
margin: 15px;
|
2012-01-20 02:19:05 +00:00
|
|
|
}
|
2012-01-20 22:55:08 +00:00
|
|
|
|
|
|
|
.hide {
|
2012-01-23 07:58:36 +00:00
|
|
|
display: none;
|
2012-01-20 22:55:08 +00:00
|
|
|
}
|
2012-01-22 01:34:18 +00:00
|
|
|
|
|
|
|
.game {
|
2012-01-23 07:58:36 +00:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2012-01-22 01:34:18 +00:00
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2012-12-23 17:48:00 +00:00
|
|
|
.your_hand {
|
2012-01-23 07:58:36 +00:00
|
|
|
position: absolute;
|
2012-12-23 17:48:00 +00:00
|
|
|
bottom: 10px;
|
2012-01-23 07:58:36 +00:00
|
|
|
right: 5px;
|
2012-01-22 01:34:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.game_hand {
|
2012-01-23 07:58:36 +00:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
left: 0px;
|
|
|
|
right: 0px;
|
2012-01-24 07:02:59 +00:00
|
|
|
height: 30%;
|
2012-01-22 01:34:18 +00:00
|
|
|
}
|
|
|
|
|
2012-02-07 22:15:51 +00:00
|
|
|
.game_hand_filter {
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
background: rgba(192, 192, 192, .5);
|
|
|
|
z-index: 100;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.game_hand_filter_text {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
font-size: 300%;
|
|
|
|
margin-top: -30px;
|
2012-12-21 05:28:12 +00:00
|
|
|
background:#eee;
|
|
|
|
padding:.25em;
|
2012-02-07 22:15:51 +00:00
|
|
|
}
|
|
|
|
|
2012-01-22 01:34:18 +00:00
|
|
|
.game_hand_cards {
|
2012-01-23 07:58:36 +00:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0px;
|
|
|
|
height: 100%;
|
2012-01-27 08:14:48 +00:00
|
|
|
width: 99%;
|
2012-01-25 06:39:19 +00:00
|
|
|
padding-left: 2px;
|
2012-01-25 08:03:41 +00:00
|
|
|
min-width: 750px;
|
2012-01-22 01:34:18 +00:00
|
|
|
}
|
|
|
|
|
2014-02-17 06:40:47 +00:00
|
|
|
.game_hand_cards .card {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2012-02-08 03:30:30 +00:00
|
|
|
.game_top {
|
2012-01-25 06:39:19 +00:00
|
|
|
padding: 5px;
|
2012-01-25 00:20:43 +00:00
|
|
|
}
|
|
|
|
|
2012-03-19 04:38:24 +00:00
|
|
|
.game_menu_bar {
|
2012-02-08 03:30:30 +00:00
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.game_message {
|
2012-12-20 22:35:16 +00:00
|
|
|
font-size: 150%;
|
|
|
|
font-weight:bold;
|
2012-02-08 03:30:30 +00:00
|
|
|
}
|
|
|
|
|
2012-01-25 00:20:43 +00:00
|
|
|
.game_black_card_wrapper {
|
|
|
|
width: 232px;
|
2012-01-25 06:39:19 +00:00
|
|
|
float: left;
|
2012-01-25 00:20:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.game_black_card {
|
|
|
|
width: 232px;
|
|
|
|
height: 232px;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
2012-01-25 06:39:19 +00:00
|
|
|
.confirm_card {
|
|
|
|
float: left;
|
|
|
|
margin-top: 10px;
|
|
|
|
width: 100%;
|
2012-07-02 07:52:52 +01:00
|
|
|
z-index: 500;
|
2012-01-25 06:39:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.game_left_side {
|
|
|
|
float: left;
|
|
|
|
width: 232px;
|
|
|
|
padding-left: 10px;
|
|
|
|
padding-top: 10px;
|
|
|
|
}
|
|
|
|
|
2012-03-15 20:50:42 +00:00
|
|
|
.game_right_side, .game_options {
|
2012-01-27 08:14:48 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 246px;
|
2014-08-11 06:16:15 +01:00
|
|
|
width: 1000px;
|
2012-01-27 08:14:48 +00:00
|
|
|
}
|
|
|
|
|
2013-07-20 19:11:01 +01:00
|
|
|
.game_options {
|
2014-02-17 06:37:17 +00:00
|
|
|
background: #eee;
|
2013-07-20 19:11:01 +01:00
|
|
|
z-index: 500;
|
|
|
|
}
|
|
|
|
|
2012-02-08 03:30:30 +00:00
|
|
|
.game_right_side_box {
|
2012-01-25 06:39:19 +00:00
|
|
|
height: 60%;
|
|
|
|
margin: 10px;
|
|
|
|
}
|
|
|
|
|
2012-02-08 03:30:30 +00:00
|
|
|
.game_right_side_cards {
|
2012-01-27 08:14:48 +00:00
|
|
|
margin-top: 15px;
|
|
|
|
min-width: 600px;
|
2012-01-27 08:19:20 +00:00
|
|
|
cursor: pointer;
|
2012-03-13 03:18:28 +00:00
|
|
|
z-index: 200;
|
2012-01-25 06:39:19 +00:00
|
|
|
}
|
|
|
|
|
2012-03-17 01:34:20 +00:00
|
|
|
.game_right_side_cards .card_holder, .game_white_cards_binder {
|
|
|
|
z-index: 200;
|
|
|
|
}
|
|
|
|
|
2012-02-01 01:59:53 +00:00
|
|
|
.game_white_cards_binder {
|
2012-12-21 05:28:12 +00:00
|
|
|
border: 3px solid silver;
|
2012-02-01 01:59:53 +00:00
|
|
|
display: inline-block;
|
|
|
|
margin-right: 4px;
|
|
|
|
margin-bottom: 4px;
|
2012-12-21 05:28:12 +00:00
|
|
|
border-radius: .25em;
|
2012-02-01 01:59:53 +00:00
|
|
|
}
|
|
|
|
|
2012-01-22 01:34:18 +00:00
|
|
|
.card_holder {
|
2012-01-23 07:58:36 +00:00
|
|
|
float: left;
|
|
|
|
position: relative;
|
2012-01-24 07:13:40 +00:00
|
|
|
overflow-x: visible !important;
|
|
|
|
overflow-y: visible !important;
|
2012-01-25 06:39:19 +00:00
|
|
|
margin-right: 2px;
|
2012-01-25 08:03:41 +00:00
|
|
|
z-index: 1;
|
2012-01-23 07:58:36 +00:00
|
|
|
}
|
|
|
|
|
2012-02-01 01:59:53 +00:00
|
|
|
.game_white_cards_binder .card_holder {
|
|
|
|
margin-right: 0px;
|
|
|
|
}
|
|
|
|
|
2012-01-23 07:58:36 +00:00
|
|
|
.scoreboard {
|
2012-01-30 08:35:27 +00:00
|
|
|
width: 250px;
|
2012-01-23 07:58:36 +00:00
|
|
|
height: 100%;
|
2012-01-30 08:35:27 +00:00
|
|
|
position: absolute;
|
2012-01-23 07:58:36 +00:00
|
|
|
overflow-y: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.scorecard {
|
2012-12-20 22:35:16 +00:00
|
|
|
background:#fff;
|
2012-01-23 07:58:36 +00:00
|
|
|
height: 36px;
|
2012-12-20 22:35:16 +00:00
|
|
|
padding:.25em .5em;
|
|
|
|
border-bottom: 1px solid #bbb;
|
2012-01-23 07:58:36 +00:00
|
|
|
font-size: 11pt;
|
|
|
|
}
|
2012-12-23 17:48:00 +00:00
|
|
|
|
|
|
|
.scorecard:nth-child(even) {
|
2012-12-20 22:35:16 +00:00
|
|
|
background:#f8f8f8;
|
|
|
|
}
|
2012-12-23 17:48:00 +00:00
|
|
|
|
2012-01-23 07:58:36 +00:00
|
|
|
.scorecard_status {
|
|
|
|
float: right;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.clear {
|
|
|
|
clear: both;
|
2012-01-22 01:34:18 +00:00
|
|
|
}
|
2012-01-25 06:39:19 +00:00
|
|
|
|
|
|
|
.selected {
|
2012-12-21 06:32:46 +00:00
|
|
|
color: #fff;
|
2013-04-14 01:28:42 +01:00
|
|
|
background: #3c7fb1 !important;
|
2012-01-25 06:39:19 +00:00
|
|
|
}
|
2012-02-01 04:22:07 +00:00
|
|
|
|
|
|
|
.logo {
|
|
|
|
position: absolute;
|
|
|
|
width: 250px;
|
|
|
|
height: 32px;
|
|
|
|
bottom: 15px;
|
|
|
|
left: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo_element {
|
|
|
|
top: 2px;
|
|
|
|
position: absolute;
|
|
|
|
width: 22px;
|
|
|
|
height: 22px;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.blackcard .logo_element {
|
|
|
|
border: 1px solid #231f20;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo_1 {
|
|
|
|
left: 2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blackcard .logo_1 {
|
|
|
|
background: #57585a;
|
|
|
|
}
|
|
|
|
|
|
|
|
.whitecard .logo_1 {
|
|
|
|
background: #231f20;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo_2 {
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blackcard .logo_2 {
|
|
|
|
background: #b2b3b7;
|
|
|
|
}
|
|
|
|
|
|
|
|
.whitecard .logo_2 {
|
|
|
|
background: #636366;
|
|
|
|
}
|
|
|
|
|
|
|
|
.logo_3 {
|
|
|
|
left: 16px;
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.blackcard .logo_3 {
|
|
|
|
background: white;
|
2012-07-07 23:01:33 +01:00
|
|
|
color: black;
|
2012-02-01 04:22:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.whitecard .logo_3 {
|
|
|
|
background: #c7c8ca;
|
2012-07-07 23:01:33 +01:00
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
.watermark_container {
|
|
|
|
font-size: 5pt;
|
|
|
|
text-align: center;
|
2012-02-01 04:22:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.logo_text {
|
|
|
|
position: absolute;
|
|
|
|
font-size: 8pt;
|
|
|
|
font-weight: bold;
|
|
|
|
left: 45px;
|
|
|
|
bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card_metadata {
|
|
|
|
position: absolute;
|
|
|
|
right: 15px;
|
|
|
|
bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.draw, .pick {
|
|
|
|
float: right;
|
|
|
|
clear: both;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 12pt;
|
|
|
|
}
|
|
|
|
|
|
|
|
.card_number {
|
|
|
|
width: 20px;
|
|
|
|
height: 20px;
|
|
|
|
|
|
|
|
-webkit-border-radius: 10px;
|
|
|
|
-moz-border-radius: 10px;
|
|
|
|
-o-border-radius: 10px;
|
|
|
|
border-radius: 10px;
|
|
|
|
}
|
2012-10-16 04:23:37 +01:00
|
|
|
|
2012-02-01 04:22:07 +00:00
|
|
|
.blackcard .card_number {
|
|
|
|
background: white;
|
|
|
|
display: inline-block;
|
|
|
|
color: #231f20;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2012-02-08 03:30:30 +00:00
|
|
|
|
2013-03-27 01:07:09 +00:00
|
|
|
/* TODO .whitecard .card_number ??? */
|
|
|
|
|
2012-02-08 03:30:30 +00:00
|
|
|
.previous_round {
|
|
|
|
z-index: 50;
|
|
|
|
border: 3px solid black;
|
|
|
|
width: 60%;
|
|
|
|
height: 60%;
|
|
|
|
position: absolute;
|
|
|
|
top: 20%;
|
|
|
|
left: 20%;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.previous_round_close {
|
|
|
|
position: absolute;
|
|
|
|
right: 0px;
|
|
|
|
}
|
2012-07-07 23:01:33 +01:00
|
|
|
|
|
|
|
.card_set_label {
|
|
|
|
margin-right: 15px;
|
|
|
|
}
|
2012-12-21 08:03:27 +00:00
|
|
|
|
2013-03-27 03:31:46 +00:00
|
|
|
.scorecard_score, .scorecard_player {
|
2012-12-21 08:03:27 +00:00
|
|
|
font-weight:700;
|
|
|
|
}
|
2013-03-27 03:31:46 +00:00
|
|
|
|
2013-11-14 10:59:56 +00:00
|
|
|
.checkbox {
|
|
|
|
margin-right: 4px;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox input {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkbox span {
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2013-03-27 03:31:46 +00:00
|
|
|
.nowrap {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2013-11-11 02:24:58 +00:00
|
|
|
|
|
|
|
.cardnum {
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
bottom: 19px;
|
|
|
|
font-size: 8pt;
|
|
|
|
}
|