-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (52 loc) · 1.12 KB
/
Copy pathstyle.css
File metadata and controls
53 lines (52 loc) · 1.12 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
@import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');
* {
font-family: helvetica, sans-serif;
-webkit-user-select: none;
-moz-user-select: none;
}
body {
background-color: rgba(0,0,0, .95);
height: 100vh;
margin: 0;
}
/********************
* video game screen *
********************/
.game-title h1 {
/***** Flappy Bird *****/
text-align: center;
font-family: 'Carter One', cursive;
color: rgb(251, 176, 37);
font-size: 3em;
line-height: 150%;
letter-spacing: 4px;
text-shadow: 2px 4px rgba(250,250,250, 1);
margin: 0;
position: relative;
top: 10px;
}
.game-screen {
/* background-color: rgb(69, 184, 194); */
width: 300px;
height: 500px;
margin: 0 auto;
position: relative;
top: 50px;
}
canvas {
background-color:
black
/* #00bbc4 */
/* #d2ce89 */
;
display: block;
width: 300px;
height: 500px;
margin: 0 auto;
border-radius: 10px;
}
.game-description {
color: #f0f0f0;
line-height: 2em;
text-align: center;
}