-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (95 loc) · 1.75 KB
/
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
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
body {
margin: 0;
padding: 0;
height: 100vh;
background-color: #0a131b;
display: flex;
justify-content: center;
align-items: center;
}
.reset {
background-color: #273849;
width: 120px;
height: 40px;
margin: 25px 0;
font-size: 16px;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
transform: scale(1);
}
.reset:hover {
background-color: rgb(82, 114, 148);
}
.reset:active {
transform: scale(0.95);
}
.disc_on_hover {
width: 540px;
height: 60px;
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 8px;
visibility: hidden;
}
.disc_on_hover .visible {
visibility: visible;
}
.board_game {
background-color: #273849;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
width: 540px;
height: 420px;
border-radius: 20px;
position: relative;
}
.visible {
opacity: 80%;
}
.square {
width: 60px;
height: 60px;
border-radius: 50%;
margin: 5px;
background-color: #101b27;
}
.disc_red, .disc_yellow {
background-color: transparent;
transition: background-color 0.2s ease;
}
.disc_red {
background-color: #f55555;
}
.disc_yellow {
background-color: #bcb918;
}
h3 {
color: white;
font-size: large;
}
.footer {
display: flex;
align-items: center;
justify-content: space-between;
}
.footer div {
width: 120px;
height: 40px;
}
.column {
position: absolute;
width: 70px;
height: 420px;
border-radius: 20px;
background-color: transparent;
transition: background-color 0.3s ease;
}
.active {
background-color: rgba(67, 90, 114, 0.247);
}