-
Notifications
You must be signed in to change notification settings - Fork 11
/
style.css
63 lines (51 loc) · 968 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,500;0,700;1,400&display=swap');
* {
padding: 0;
margin: 0;
outline: 0;
box-sizing: border-box;
}
body {
font: 400 14px Roboto, sans-serif;
background: #f0f0f5;
-webkit-font-smoothing: antialiased;
}
input, button, textarea {
font: 400 18px Roboto, sans-serif;
}
button {
cursor: pointer;
}
.board {
width: min-content;
margin: 32px auto 0;
border: 10px solid red;
border-radius: 6px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.row {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.square {
width: 50px;
height: 50px;
display: flex;
justify-content: center;
align-items: center;
}
.piece {
width: 50px;
height: 50px;
}
.black {
background: #774C3B;
}
.white {
background: #C99468;
}