-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (47 loc) · 1.5 KB
/
Copy pathstyle.css
File metadata and controls
51 lines (47 loc) · 1.5 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
* {
margin: 0;
padding: 0;
}
#container {
width: 1100px;
margin: 0 auto;
margin-top: 5px;
}
#game {
float: top;
margin-top: 50px;
margin-left: 100px;
}
.redPiece {
text-indent: -9999px;
width: 40px;
height: 40px;
margin: 0px auto;
border-radius: 20px;
box-shadow: rgb(205, 15, 15) 0px 0px 0px 2px inset;
background: rgb(218, 18, 18);
}
.singlePlayerStart{
text-decoration:none;
text-align:center;
padding:11px 32px;
border:solid 1px #004F72;
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius: 4px;
font:41px Verdana, Geneva, sans-serif;
font-weight:bold;
color:#ffffff;
background-color:#3BA4C7;
background-image: -moz-linear-gradient(top, #3BA4C7 0%, #1982A5 100%);
background-image: -webkit-linear-gradient(top, #3BA4C7 0%, #1982A5 100%);
background-image: -o-linear-gradient(top, #3BA4C7 0%, #1982A5 100%);
background-image: -ms-linear-gradient(top, #3BA4C7 0% ,#1982A5 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#1982A5', endColorstr='#1982A5',GradientType=0 );
background-image: linear-gradient(top, #3BA4C7 0% ,#1982A5 100%);
-webkit-box-shadow:0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
-moz-box-shadow: 0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
box-shadow:0px 0px 2px #bababa, inset 0px 0px 1px #ffffff;
text-shadow: 2px 2px 0px #bababa;
filter: dropshadow(color=#bababa, offx=2, offy=2);
}