-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathexchange.css
More file actions
150 lines (133 loc) · 2.43 KB
/
exchange.css
File metadata and controls
150 lines (133 loc) · 2.43 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
/* CSS declarations go here */
h1 {
text-align: center;
font-weight: bold;
}
h2 {
text-align: center;
}
body {
color: white;
font-size: 20;
text-shadow: 1px 1px 1px #000;
font-family: Tahoma;
background: url('/Images/hexabump.png');
}
td {
margin: 25px;
/*border: 1px solid #eee;*/
/*Transition*/
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
}
th {
margin: 25px;
border: 1px solid #eee;
/*Transition*/
-webkit-transition: all 0.25s ease;
-moz-transition: all 0.25s ease;
-o-transition: all 0.25s ease;
}
table {
color: #F0FFFF;
font-weight: bold;
border-collapse: separate;
border-spacing:0px 10px;
width: auto;
margin-left: auto;
margin-right: auto;
}
tr {
height: 39px;
}
th:first-child {
-webkit-border-top-left-radius: 6px;
-webkit-border-bottom-left-radius: 6px;
width: auto;
}
th:last-child {
-webkit-border-top-right-radius: 6px;
-webkit-border-bottom-right-radius: 6px;
}
th {
background-color: #191919;
/*box-shadow: 7px 3px 10px 2px black;*/
padding: 5px;
margin: 5px;
text-shadow: 1px 1px 1px #000;
}
tr > td:first-child {
width: auto;
white-space: nowrap;
-webkit-border-top-left-radius: 5px;
-webkit-border-bottom-left-radius: 5px;
width: auto;
overflow: hidden;
white-space: nowrap;
}
tr > td:last-child {
-webkit-border-top-right-radius: 5px;
-webkit-border-bottom-right-radius: 5px;
}
td {
text-align: center;
padding: 5px;
margin: 5px;
/*box-shadow: 5px 3px 10px 2px black;*/
text-shadow: 1px 1px 1px #000;
}
th:hover {
opacity: 1;
-webkit-box-shadow: inset 0px 0px 20px rgba(255,255,255,0.8);
-moz-box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
box-shadow: inset 0px 0px 20px rgba(255,255,255,0.8);
cursor: pointer;
-webkit-box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
}
.remove {
background-color: red;
font-weight: bold;
color: white;
}
#bid_list {
padding-right: 2px;
}
#header {
/*background-color: #3366FF;*/
margin: auto;
}
#wrapper {
margin: auto;
display: compact;
}
#wrapper {
margin: auto;
}
#login {
align: center;
}
.mine {
background-color: darkslateblue;
}
.other {
background-color: darkgreen;
}
.up {
text-align: left;
background-color: white;
color: green;
}
.down {
text-align: right;
background-color: white;
color: red;
}
#myModal .modal-body {
height: 430px;
}
html, body, #map-canvas {
margin: 0;
padding: 0;
height: 100%;
}