-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (92 loc) · 1.81 KB
/
styles.css
File metadata and controls
105 lines (92 loc) · 1.81 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
98
99
100
101
102
103
104
body{
/* background-image: radial-gradient(rgb(217, 217, 233), rgb(222, 223, 238),rgb(223, 228, 238)); */
font-family: 'Roboto', sans-serif;
color: white;
}
button{
font-size: 30px;
display:inline-block;
padding:0.7em 1.4em;
margin:0 0.3em 0.3em 0;
border-radius:0.15em;
box-sizing: border-box;
text-decoration:none;
font-family:'Roboto',sans-serif;
text-transform:uppercase;
font-weight:400;
color:#FFFFFF;
background-color:rgb(73, 129, 233);
border-color: white;
box-shadow:inset 0 -0.6em 0 -0.35em rgba(0,0,0,0.17);
text-align:center;
position:relative;
}
button:active{
top:0.1em;
}
.container{
display: block;
margin: 0 auto;
text-align: center;
}
.gameBoard{
position: relative;
display: "";
}
.canvas{
/* display: inline-block; */
/* text-align: center; */
display: inline-block;
/* margin: 20px; */
border-radius: 10px;
border-style: solid;
border-width: 10px;
border-color: rgb(17, 70, 170);
background-color: grey;
}
.startScreen{
position: absolute;
top: 0;
bottom: 0;
margin-top: auto;
margin-bottom: auto;
left: 0;
right: 0;
margin-left: auto;
margin-right: auto;
width: 350px;
height: 250px;
padding: 20px;
background-color: rgb(17, 70, 170);
border-style: solid;
border-color: white;
font-size: 10px;
color: white;
border-radius: 5px;
}
.startScreen h1{
margin-bottom: 40px;
}
.scoreboard{
font-size: 30px;
}
.scoreboard #score{
display: block;
}
.scoreboard #difficulty{
display: block;
}
.appear{
display: none;
}
span{
font-size: 50px;
color: black;
}
/* JS Activated Styles */
.start-btn{
display: inline-block;
text-align: center;
margin: 20px;
font-size: 50px;
}