-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
99 lines (88 loc) · 2.18 KB
/
Copy pathstyle.css
File metadata and controls
99 lines (88 loc) · 2.18 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
body{
min-height:95vh; display:flex;
justify-content:space-evenly;
align-items: center;
flex-direction: row;
/* font-family: 'Bebas Neue', cursive; */
font-family: 'Press Start 2P', cursive;
background: url(bg.png) repeat 0 0;
}
.score-board{
height: 100%;
padding: 10px;
display:flex;
justify-content: space-around;
align-items: center;
flex-direction: column;
}
canvas{
background: #eee; display: block;
box-shadow: 0px 3px 12px 8px rgba(0,0,0,0.75);
-webkit-box-shadow: 0px 3px 12px 8px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 3px 12px 8px rgba(0,0,0,0.75);
}
/* The Modal (background) */
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content/Box */
.modal-content {
position: relative;
background-color: #fefefe;
margin: 15% auto; /* 15% from the top and centered */
padding: 20px;
border: 1px solid #888;
width: 80%; /* Could be more or less, depending on screen size */
text-align: center;
animation-name: animatetop;
animation-duration: 0.4s
}
@keyframes animatetop {
from {top: -300px; opacity: 0}
to {top: 0; opacity: 1}
}
/* The Close Button */
.modal-close{
color: #aaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.modal-close:hover,
.modal-close:focus {
color: black;
text-decoration: none;
cursor: pointer;
}
.button{
margin-top:25px;
margin-bottom: 10px;
font-size: 17px;
border:none;
border-radius:10px;
display:inline-block;
padding:12px 30px;
vertical-align:middle;
overflow:hidden;
text-decoration:none;
text-align:center;
cursor:pointer;
white-space:nowrap;
-webkit-touch-callout:none;
-webkit-user-select:none;
-khtml-user-select:none;
-moz-user-select:none;
-ms-user-select:none;
user-select:none;
background-color:#616161;
color:#ffffff
}