forked from sjlevin/codenames
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcodenames.css
75 lines (65 loc) · 1.08 KB
/
codenames.css
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
.txtInverted
{
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2); /* IE6,IE7 */
ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; /* IE8 */
-moz-transform: rotate(-180deg); /* FF3.5+ */
-o-transform: rotate(-180deg); /* Opera 10.5 */
-webkit-transform: rotate(-180deg); /* Safari 3.1+, Chrome */
display: block;
}
.txtNormal
{
display: block;
font-weight: bold;
}
html, body
{
height: 100%;
width: 100%;
padding: 0;
margin: 0;
font-family: Verdana;
}
body
{
display: table;
}
button
{
margin: 5px;
height: 48px;
font-family: Verdana;
}
#upperDiv
{
display: table-row;
height: 0;
}
#Text1
{
display: inline-block;
height: 48px;
vertical-align: -9px;
margin: 5px;
}
#tableDiv
{
display: table-row;
}
table
{
table-layout: fixed;
width: 100%;
height: 100%;
padding: 0;
margin: 0;
border-spacing: 10px;
}
td
{
border: 1px solid black;
text-align: center;
border-radius: 10px;
border-width: 2px;
font-size: 2vw;
}