-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflappy.css
96 lines (91 loc) · 1.88 KB
/
flappy.css
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
@charset "UTF-8";
body{
margin-top: 25px;
display: flex;
/* This centers our sketch horizontally. */
justify-content: center;
/* This centers our sketch vertically. */
align-items: center;
}
#homescreen {
margin-bottom:50;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight:500;
background-color: ADA6FF;
border: none;
color: black;
padding: 10px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
}
#script{
margin-top:50px;
}
@charset "UTF-8";
/* CSS Document */
#header{
margin-top:50px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight:500;
}
#scores{
margin-top:10px;
}
#gameCanvas{
margin-top:5px;
}
#rules {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight:500;
background-color: #ADA6FF;
border: none;
color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
#homescreen {
margin-top:10px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight:500;
background-color: #ADA6FF;
border: none;
color: black;
padding: 10px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
}
#play {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight:500;
background-color: #ADA6FF;
border: none;
color: black;
padding: 15px 50px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 24px;
margin: 4px 2px;
cursor: pointer;
}
#text{
max-width:600px;
line-height:50px;
font-size:24px;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-weight:500;
}
.link{
text-decoration:none;
}