-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (59 loc) · 1.44 KB
/
styles.css
File metadata and controls
67 lines (59 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
.header{
display: flex;
align-items: center;
justify-content: center;
color: rgba(142, 20, 203, 1);
}
.buttons{
display: flex;
justify-content: center;
margin-bottom: 30px;
}
.game__score{
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(142, 20, 203, 1);
color: white;
font-size: 30px;
margin-left: 30px;
border-radius: 15px;
width: 120px;
height: 50px;
}
.game__start{
margin-left: 30px;
width: 120px;
height: 50px;
font-size: medium;
border-radius: 15px;
background-color: white;
border-color: #06fcbffa;
border-width: 3px;
}
.game__start:hover{
background-color: hsla(165, 98%, 51%, 0.98);
}
.game__board{
margin: 30px auto;
width: 500px;
height: 500px ;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(4,1fr);
}
.game__tile{
margin: 20px 20px 20px 20px;
background-color: white;
background-size:contain;
border-color: rgba(5, 255, 205, 1);
border-style: solid;
-webkit-box-shadow: 0px 0px 33px -6px rgba(5, 255, 205, 1);
-moz-box-shadow: 0px 0px 33px -6px rgba(5, 255, 205, 1);
box-shadow: 0px 0px 33px -6px rgba(5, 255, 205, 1);
}
.tiles:hover{
-webkit-box-shadow: 0px 0px 33px -6px rgba(142, 20, 203, 1);
-moz-box-shadow: 0px 0px 33px -6px rgba(142, 20, 203, 1);
box-shadow: 0px 0px 33px -6px rgba(142, 20, 203, 1);
}