-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
82 lines (79 loc) · 1.67 KB
/
Copy pathmain.css
File metadata and controls
82 lines (79 loc) · 1.67 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
body{
font-family: 'Raleway', 'Raleway-Regular', sans-serif;
background: rgb(1, 27, 27);
color: white;
}
header{
font-size:16px;
text-align: center;
padding-top: 40px;
}
footer{
text-align: center;
padding: 30px;
padding-top: 60px;
padding-bottom: 0;
}
.gameBoard{
margin: auto;
margin-top: 40px;
display: table;
border: 1px solid rgb(12, 139, 0);
background: white;
}
*{
margin: 0;
padding: 0;
}
.gameBoard div {
width: 50px;
height: 50px;
float: left;
display: table-cell;
border: 1px solid rgb(12, 139, 0);
position: relative;
box-shadow: inset 0px 0px 10px rgb(145, 145, 145);
}
.gameBoard div:hover{
background-color: rgba(128, 128, 128, 0.247);
}
.clearLeft{
clear: left;
}
.gameBoard div img{
width: 50px;
height: 50px;
position: absolute;
top: 0;
left: 0;
}
#gameOverID{
background: rgb(1, 27, 27);
display: none;
color: white;
width: 100%;
height: 1080;
text-align:center;
padding-top: 300px;
margin: 0;
}
.button {
margin: 10px;
background-color: rgb(0, 211, 211); /* Green */
border: none;
color: rgb(1, 27, 27);
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
font-weight: bold;
}
.button1 {
box-shadow: 0 8px 16px 4px rgb(158, 234, 240), 0 6px 20px 0 rgb(2, 167, 179), 0.19;
}
@import url('Fonts/Raleway-Regular.ttf');