-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChess.css
More file actions
56 lines (51 loc) · 915 Bytes
/
Chess.css
File metadata and controls
56 lines (51 loc) · 915 Bytes
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
* {
margin: auto;
bottom: auto;
}
.black {
width: 80px;
height: 80px;
float: right;
text-align: center;
font-size: 45px;
background-color: #40916c;
}
.white {
width: 80px;
height: 80px;
float: right;
text-align: center;
font-size: 45px;
background-color: #ffffff;
}
#chessbackground {
background-color: #588b8b;
}
#chessboard {
margin: auto;
border: 12px solid #1f2041;
height: 640px;
width: 640px;
}
h2 {
background-color: #e29578;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
margin: auto;
width: 439px;
padding-left: 30px;
padding-right: 30px;
padding-top: 30px;
padding-bottom: 30px;
border-radius: 50px;
}
#chessinfo {
background-color: #edf6f9;
border-radius: 30px;
margin-top: 10px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 10px;
font-family: monospace;
font-size: large;
padding: 30px 30px 30px;
}