-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBoard_1.css
More file actions
88 lines (81 loc) · 1.44 KB
/
Board_1.css
File metadata and controls
88 lines (81 loc) · 1.44 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
* {
padding: 0;
box-sizing: border-box;
margin: 0;
}
body {
background-color:lightgreen;
color: black;
font-family: Arial, sans-serif;
min-height: 100vh;
padding: 20px;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
#pause-btn,#resume-btn,#reset-btn {
background-color: green;
height: 2rem;
width: 5rem;
color:white;
align-items: center;
border-radius: 5px;
border-color: black;
box-shadow:none;
margin: 10px;
}
.game-info {
padding: 5px;
display: flex;
justify-content: space-between;
align-items: center;
text-align: center;
line-height: 2;
margin: 10px;
}
.player-info {
line-height: 1.4;
background-color:rgb(211, 215, 175);
margin: 20px;
border-radius: 3px;
padding: 10px;
}
.msg_container{
height: 100vmin;
font-size: 6vmin;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap:2rem;
}
.player-red h2 {
color: red;
}
.player-blue h2 {
color: rgb(70, 70, 212);
}
button {
cursor: pointer ;
}
.hide {
display: none;
}
.node.highlight {
border: 2px dashed orange;
}
.node.eliminated {
outline: 2px solid black;
opacity: 0.5;
}
.animate-pulse {
animation: pulse 0.3s ease;
}
@keyframes pulse {
0% { transform: scale(0.9); }
50% { transform: scale(1.1); }
100% { transform: scale(1); }
}