-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathscreen.css
More file actions
118 lines (105 loc) · 2.08 KB
/
screen.css
File metadata and controls
118 lines (105 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* The table */
body{
background: url(images/body.jpg) no-repeat center 0 #120902;
font-size: 1.5em;
}
p { margin:0; }
#wrapper{
position:relative;
margin:auto;
overflow:hidden;
width:1200px;
height:600px;
}
.stats{
position:absolute;
color:#04A1F2;
border:1px solid #04A1F2;
-moz-border-radius:5px;
border-radius:5px;
padding:5px;
}
#stats{
top: 435px;
left:100px;
}
#info{
top: 435px;
right: 100px;
}
.statVal { font-weight: 700; }
#newHand{
position:absolute;
top: 526px;
left:100px;
cursor:pointer;
font-family: Arial, Helvetica, sans-serif;
font-size: 14px;
color: #fff;
padding: 5px 10px;
background: -moz-linear-gradient(
top,
#a3a3a3 0%,
#3b3b3b 50%,
#242424 50%,
#000000);
background: -webkit-gradient(
linear, left top, left bottom,
from(#a3a3a3),
color-stop(0.50, #3b3b3b),
color-stop(0.50, #242424),
to(#000000));
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border: 1px solid #000000;
-moz-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.6);
-webkit-box-shadow:
0px 1px 3px rgba(000,000,000,0.5),
inset 0px 0px 1px rgba(255,255,255,0.6);
text-shadow:
0px -1px 0px rgba(000,000,000,1),
0px 1px 0px rgba(255,255,255,0.2);
}
#changeTheme {
position: absolute;
top: 526px;
left: 200px;
}
/* We start all cards in the Hole, then animate out. */
#hole,
.card{
top:400px;
left:500px;
}
/* The Cards */
.card,
.handCard,
#hole {
width: 98px;
height: 142px;
position: absolute;
border: 1px solid #666;
border-radius: 4px;
background-color: #fff;
box-shadow: 2px 2px 3px rgba(50, 50, 50, 0.85);
}
.card:hover,
.handCard:hover,
#hole:hover {
cursor:pointer;
border-color: #fff;
}
.handCard{
top:400px;
left:650px;
}
/* Setting the card faces... */
.front{ background: #fff url(themes/default/images/largecards.png) no-repeat 0 0; }
/* ...and their backs */
.back,
#hole.back {
background:#234567 url(themes/default/images/card-back.png) no-repeat -1px -1px !important; /* The !important needs to stay since the background position gets inlined. */
}