-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
114 lines (97 loc) · 1.83 KB
/
style.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
106
107
108
109
110
111
112
113
114
body {
background: url('http://fullhdpictures.com/wp-content/uploads/2016/05/Fantastic-Chess-Wallpaper.jpg') no-repeat center center fixed;
background-size: cover;
}
h1 {
color: #98CDDB;
text-align: center;
text-shadow: 10px 10px 7px #171717;
font-size: 5vw;
font-family: Herculanum;
}
p {
color: #BDDADF;
text-align: center;
margin-bottom: 4vh;
text-shadow: 3px 3px 7px #171717;
font-size: 2vw;
font-family: Herculanum;
}
.full {
position: absolute;
width: 100%;
margin: auto;
align-items: center;
}
.board {
position: relative;
height: 640px;
width: 640px;
margin: auto;
box-shadow: 25px 25px 30px #171717;
}
.square {
border: 1px solid black;
background-color: white;
width: 12.5%;
height: 12.5%;
float: left;
text-align: center;
font-size: 24px;
text-shadow: 3px 3px 3px #171717;
color: white;
align-items: center;
}
.chess-piece {
position: relative;
padding-top: 5px;
}
.highlighted {
border: 5px solid #E29435;
transition: border 80ms;
}
.going {
border: 5px solid purple;
transition: border 80ms;
}
.starting {
border: 5px solid gray;
transition: border 80ms;
}
.capture{
border: 5px solid red;
transition: border 80ms;
}
.protected{
border: 5px solid #2A3722;
transition: border 80ms;
}
.stuff {
float: left;
}
.turn-billboard {
position: relative;
background-color: gray;
width: 15vw;
margin-left: 5vw;
text-align: center;
padding: 15px;
box-shadow: 3px 4px 15px black;
color: white;
text-shadow: 3px -3px 10px black;
border-radius: 50%;
font-family: Herculanum;
}
.game-mode {
position: relative;
background-color: gray;
width: 15vw;
margin-left: 5vw;
text-align: center;
padding: 15px;
box-shadow: 3px 4px 15px black;
color: white;
text-shadow: 3px -3px 10px black;
border-radius: 50%;
font-family: Herculanum;
}