-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchess.css
105 lines (87 loc) · 1.08 KB
/
chess.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
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
.container{
text-align:center;
margin:auto;
line-height:5em;
margin-top:1vw;
}
h4{
padding:1vw;
}
img{
height:20vw;
width:20vw;
}
.jumbotron{
background-color:#FFFFFF !important;
line-height:2em;
}
#chessboard{
margin:auto;
background:#521;
height:55vw;
width:55vw;
display:inline-block;
position:relative;
}
#draw{
position:absolute;
/* z-index:1;*/
height:100%;
width:100%;
}
svg{
}
#info{
margin-top:2vw;
margin-right:5vw;
height:30vw;
width:30vw;
background:#5A5;
float:right;
}
.simpleBorder{
border-color:#952;
border-style:solid;
border-width:12px;
border-radius:15px;
}
.tile{
width:12.5%;
height:12.5%;
float:left;
position:relative;
z-index:0;
}
.image{
height:100%;
width:100%;
}
.tag{
color:RED;
position:absolute;
top:30%;
right:0%;
font-size:1.5em;
padding-top:1%;
padding-right:5%;
}
@media only screen and (max-width: 1200px) {
.tag{
font-size: 1em;
}
}
.white{
background:white;
}
.black{
background:#0F0F0F;
}
.white .tag{
color:Black;
}
.black .tag{
color:White;
}
p .name{
color:#0A0 !important;
}