-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (82 loc) · 1.4 KB
/
style.css
File metadata and controls
97 lines (82 loc) · 1.4 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
96
97
body {
display: flex;
justify-content: center;
align-items: center;
}
canvas {
border:1px solid #d3d3d3;
background-color: #f1f1f1;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
}
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
margin: 0px 0px 20px 0px;
}
th {
border: 1px solid #dddddd;
text-align: center;
padding: 10px 100px 10px 100px;
}
td {
border: 1px solid #dddddd;
text-align: center;
padding: 10px 50px 10px 50px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
img{
height: 100px;
width: 100px;
}
.startPage {
background-image: url("img/catImage.png");
background-repeat: no-repeat;
background-position: 50% 100%;
position: relative;
text-align: center;
height: 750px;
width: 100%;
display: block;
}
#startText {
margin: 40px auto;
}
#startButton {
font-size: 20px;
padding: 10px 30px 10px 30px;
margin: 0px 0px 30px 0px;
}
#powerupsButton {
font-size: 20px;
padding: 5px 30px 5px 30px;
margin: 0px 20px;
}
#enemiesButton {
font-size: 20px;
padding: 5px 30px 5px 30px;
margin: 0px 20px;
}
#backButtonOne, #backButtonTwo {
font-size: 20px;
padding: 10px 30px 10px 30px;
}
.powerupsPage{
text-align: center;
display: none;
}
.enemiesPage{
text-align: center;
display: none;
}
.gameStarted {
position: relative;
height: 100%;
width: 100%;
display: none;
}