-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (76 loc) · 1.38 KB
/
Copy pathstyles.css
File metadata and controls
95 lines (76 loc) · 1.38 KB
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
body, html {
margin: 0;
background-color: #ece1d1;
height: 100%;
}
button {
background-color: white;
border: 2px solid #0003;
border-radius: 100px;
padding: 5px 20px;
transition: box-shadow ease 0.2s, transform ease 0.2s ;
}
button:hover{
box-shadow: 0px 5px 10px -3px #0005;
transform: translateY(-3px);
}
button:active{
box-shadow: 0px 3px 5px -1px #0005;
transform: translateY(-1px);
}
.container {
max-width: 600px;
margin: 20px auto;
}
#connect-button {
background-color: #27a900;
color: white
}
#roomNumbers {
margin: 7px;
}
.hidden {
display: none;
}
#buttonContainer button:last-child {
margin-right: 0;
}
#state,
#roomNumbers,
#player {
text-align: center;
}
#boardContainer {
display: grid;
gap: 10px;
grid-template-columns: 100px 1fr 100px;
align-items: center;
margin: 0 -100px;
}
#whitePieceCountsDisplay, #blackPieceCountsDisplay {
text-align: left;
width: 100px;
}
.board {
}
#pointDiffDisplay {
text-align: center;
margin-top: 1em;
}
.segment-group {
display: flex;
justify-content: center;
gap: 5px;
}
.segment-group > * {
border-radius: 5px;
}
.segment-group > *:first-child {
border-radius: 20px 5px 5px 20px;
}
.segment-group > *:last-child {
border-radius: 5px 20px 20px 5px;
}
.number {
width: 100px; /* Adjust this value as desired */
}