-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·179 lines (156 loc) · 3.4 KB
/
style.css
File metadata and controls
executable file
·179 lines (156 loc) · 3.4 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#wrapper {
width: 1200px;
height: 600px;
margin: auto;
border: 5px solid #369;
}
#header {
width: 100%;
border-bottom: 1px solid #369;
margin: 0;
padding: 0;
}
#main_table{
width: 100%;
height: auto;
}
#card_table{
width: 100%;
height: 590px;
border: 4px single #369;
background-color: green;
border-collapse: separate;
border-spacing: 20px 20px;
}
#card_table_2{
width: 100%;
height: 590px;
background-color: green;
border-collapse: separate;
border-spacing: 20px 20px;
}
.card{
width: 150px;
height: 100px;
border: 2px solid black;
box-shadow: 2px 2px 8px black;
}
.card:hover{
width: 150px;
height: 100px;
border: 2px solid yellow;
cursor: pointer;
}
.card:active{
position:relative;
top:1px;
}
.smallCard{
width: 130px;
height: 100px;
border: 2px solid black;
box-shadow: 2px 2px 8px black;
}
.smallCard:hover{
width: 130px;
height: 100px;
border: 2px solid yellow;
cursor: pointer;
}
.smallCard:active{
position:relative;
top:1px;
}
.selectedSmall{
width: 128px;
height: 98px;
border: 2px solid red;
}
.selectedSmall:active{
position:relative;
top:1px;
}
.selectedCard{
width: 148px;
height: 98px;
border: 2px solid red;
}
.selectedCard:active{
position:relative;
top:1px;
}
.button {
-moz-box-shadow:inset 0px 1px 0px 0px #a6827e;
-webkit-box-shadow:inset 0px 1px 0px 0px #a6827e;
box-shadow:inset 0px 1px 0px 0px #a6827e;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #7d5d3b), color-stop(1, #634b30));
background:-moz-linear-gradient(top, #7d5d3b 5%, #634b30 100%);
background:-webkit-linear-gradient(top, #7d5d3b 5%, #634b30 100%);
background:-o-linear-gradient(top, #7d5d3b 5%, #634b30 100%);
background:-ms-linear-gradient(top, #7d5d3b 5%, #634b30 100%);
background:linear-gradient(to bottom, #7d5d3b 5%, #634b30 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7d5d3b', endColorstr='#634b30',GradientType=0);
background-color:#7d5d3b;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
border:1px solid #54381e;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:arial;
font-size:13px;
padding:25px 40px;
text-decoration:none;
text-shadow:0px 1px 0px #4d3534;
}
.button:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #634b30), color-stop(1, #7d5d3b));
background:-moz-linear-gradient(top, #634b30 5%, #7d5d3b 100%);
background:-webkit-linear-gradient(top, #634b30 5%, #7d5d3b 100%);
background:-o-linear-gradient(top, #634b30 5%, #7d5d3b 100%);
background:-ms-linear-gradient(top, #634b30 5%, #7d5d3b 100%);
background:linear-gradient(to bottom, #634b30 5%, #7d5d3b 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#634b30', endColorstr='#7d5d3b',GradientType=0);
background-color:#634b30;
}
.button:active {
position:relative;
top:1px;
}
#scoreBox{
vertical-align: top;
width: 20%;
height: 200px;
margin: 20px;
border: 4px double #369;
}
#scoreDiv{
height: 200px;
overflow: auto;
}
.username{
text-align: left;
font-weight: bold;
}
.score{
padding-left: 60px;
text-align: right;
}
#eventDiv{
height: 380px;
overflow: auto;
}
#eventTable{
overflow: auto;
}
#chat {
margin: 20px;
border: 4px double #369;
}
#footer {
width: auto;
border-top: 1px solid #369;
margin: 0;
padding: 5px;
}