-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
142 lines (121 loc) · 2.35 KB
/
styles.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
body {
background-color: #3e4756;
}
.header-container {
margin-top : 2rem;
margin-inline : 2rem;
color : white;
}
.row {
margin-block: 2rem;
}
.game-pieces {
border: 5px dotted black;
}
.right-stats {
border-radius: 7px;
display: flex;
flex-direction: column;
justify-content: space-evenly;
padding-block: 1rem;
padding-inline: 1.5rem;
background-color: #929db0;
color : white;
}
.board {
width: 480px;
height: 480px;
margin-inline : 1rem;
padding: 0;
}
.board-square {
float: left;
width: 60px;
height: 60px;
}
.button-container {
display: flex;
flex-direction: column;
justify-content: center;
flex-grow: 1;
padding-inline: 2rem;
}
.light {
background-color: #BEC2D4;
}
.dark {
background-color: #929DB0;
}
.selected-square {
background-color: #558EA9;
}
.piece {
padding: 0;
}
.stats-buttons {
background-color: #eceaea;
border: 1px solid rgb(209,213,219);
border-radius: .5rem;
box-sizing: border-box;
color: #111827;
font-family: "Inter var",ui-sans-serif,system-ui,-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
font-size: .775rem;
font-weight: 600;
line-height: 1.25rem;
padding: .75rem 0.75rem;
text-align: center;
text-decoration: none #D1D5DB solid;
text-decoration-thickness: auto;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
cursor: pointer;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
margin-block: 0.25rem;
}
.buttons-heading {
display: flex;
justify-content: center;
align-items: center;
margin-block: 2rem;
color: #454343;
}
.stats-buttons:hover {
background-color: rgb(249,250,251);
}
.stats-buttons:focus {
outline: 2px solid transparent;
outline-offset: 2px;
}
.stats-buttons:focus-visible {
box-shadow: none;
}
.left-stats {
border-radius: 7px;
background-color: #929db0;
color : white;
display: flex;
flex-direction: column;
justify-content: center;
}
.black-killed-pieces {
height: 10%;
}
.white-killed-pieces {
height: 10%;
}
.moves-storage {
height: 75%;
overflow: auto;
display: flex;
flex-direction: column;
align-items: center;
}
.move-list {
background-color: #BEC2D4;
border-radius: 5px;
width: 75%;
height: 100%;
display: flex;
flex-direction: column;
}