-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
162 lines (135 loc) · 2.63 KB
/
Copy pathstyles.css
File metadata and controls
162 lines (135 loc) · 2.63 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
body {
text-align: center;
background-color: #75daad;
}
.container{
font-family: 'Big Shoulders Stencil Text', cursive;
color: white;
height: -250px;
}
#level-title {
font-family: 'Press Start 2P', cursive;
font-size: 3rem;
margin: 2rem;
color: #FEF2BF;
}
#count {
font-family: 'Press Start 2P', cursive;
font-size: 1rem;
color: #FEF2BF;
}
.container {
display: block;
width: 50%;
margin: auto;
}
.btn {
margin: 25px;
display: inline-block;
height: 200px;
width: 200px;
border: 10px solid black;
border-radius: 20%;
}
.btn-1 {
display: inline-block;
font-weight: 400;
text-align: center;
white-space: nowrap;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
border: 1px solid transparent;
padding: 0.375rem 0.75rem;
font-size: 1rem;
line-height: 1.5;
border-radius: 0.25rem;
transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn-light {
color: #212529;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-light:hover {
color: #212529;
background-color: #e2e6ea;
border-color: #dae0e5;
}
.btn-light:focus, .btn-light.focus {
box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-light.disabled, .btn-light:disabled {
color: #212529;
background-color: #f8f9fa;
border-color: #f8f9fa;
}
.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
color: #212529;
background-color: #dae0e5;
border-color: #d3d9df;
}
.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}
.btn-lg {
padding: 0.5rem 1rem;
line-height: 1.5;
border-radius: 0.3rem;
}
.game-over {
background-color: #e84a5f;
opacity: 0.8;
}
.red {
background-color: #fa163f;
}
.green {
background-color: #79d70f;
}
.blue {
background-color: #0fabbc;
}
.yellow {
background-color: #ffd31d;
}
.pressed {
box-shadow: 0 0 20px white;
background-color: grey;
}
.score-box {
color: #FEF2BF;
}
#score {
font-family: 'Press Start 2P', cursive;
font-size: 0.75rem;
}
.author {
color: #FEF2BF;
}
a {
color: red;
text-decoration: none;
}
a:hover {
color: green;
}
@media only screen and (max-width: 600px) {
#level-title {
font-size: 1rem;
}
.container {
width: 100%;
margin: 100px 0 25px;
}
.btn {
margin: 0;
height: 100px;
width: 100px;
border: 0;
}
}