-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
48 lines (42 loc) · 716 Bytes
/
main.css
File metadata and controls
48 lines (42 loc) · 716 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
.text-align-center {
text-align: center;
}
body{
background-image: url('./img/chess_bg1.gif');
background-size: cover;
height: 100vh;
width: auto;
padding:0;
margin:0;
}
#myBoard {
max-width: 100%;
height: auto;
}
.highlight-white {
box-shadow: inset 0 0 3px 3px yellow;
}
.highlight-black {
box-shadow: inset 0 0 3px 3px blue;
}
.highlight-hint {
box-shadow: inset 0 0 3px 3px red;
}
.no-underline {
text-decoration: none;
}
.no-outline:focus {
outline: none;
box-shadow: none;
}
.btn-header {
font-size: 20px;
font-weight: bold;
}
.card{
background-color: rgb(255, 255, 240);
}
.change{
color: rgb(56,56,56);
font-weight: 701;
}