-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
87 lines (79 loc) · 1.49 KB
/
style.css
File metadata and controls
87 lines (79 loc) · 1.49 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
div#main {
position: absolute;
left: 0;
top: 0;
overflow: visible;
}
div#dialog {
position: absolute;
background: white;
opacity: 0.85;
z-index: 1000000;
left: 0;
top: 0;
}
center#idialog {
position: absolute;
z-index: 1000001;
left: 0;
top: 20%;
height: 80%;
overflow: auto;
}
body, html {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
overflow: hidden;
}
.UserArea,.UserAreaClaimed {
min-width: 300;
min-height: 100;
border-style: dashed;
border-width: thick;
border-color: black;
font-size: 24pt;
font-family: monospace;
font-weight: bold;
overflow: hidden;
background-color: gray;
opacity: 0.6;
}
.UserAreaClaimed {
background-color: yellow;
opacity: 0.4;
}
.Shuffler {
min-width: 170px;
min-height: 170px;
border-style: dotted;
border-width: thick;
text-align: center;
opacity: 0.3;
color: white;
background-color: blue;
font-weight: bold;
font-family: monospace;
font-size: 36pt;
overflow: hidden;
border-radius: 50px;
-moz-border-radius: 50px;
}
.DiscardDeck {
min-width: 110px;
min-height: 180px;
border-style: dotted;
border-width: thick;
border-color: gray;
text-align: center;
opacity: 0.7;
color: white;
background-color: green;
overflow: hidden;
border-radius: 25px;
-moz-border-radius: 25px;
}
.DiscardDeck a:link {
color: white;
}