forked from leognon/tritris
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (94 loc) · 1.47 KB
/
style.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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@font-face {
font-family: 'fff-forward';
src: url('assets/fff-forward.ttf');
}
html,
body {
margin: 0;
padding: 0;
background-color: rgb(100, 100, 100);
}
canvas {
display: block;
}
h1, h3, h4 {
font-family: fff-forward;
}
h3 {
margin: 5px;
}
.box {
visibility: hidden;
padding: 5px;
line-height: 30px;
border: 3px solid black;
}
#settings {
position: absolute;
text-align: center;
width: 200px;
height: 200px;
background-color: rgb(150, 150, 150);
font-family: fff-forward;
}
input, button {
padding: 3px;
margin: 3px;
font-size: 15pt;
}
#level {
width: 40px;
}
#newGame {
border: none;
}
.box {
visibility: hidden;
padding: 5px;
line-height: 30px;
border: 3px solid black;
}
#level {
width: 40px;
}
hr {
border: 2px solid black;
}
#tutorial {
padding-left: 0;
padding-right: 0;
position: absolute;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
text-align: center;
width: 70%;
background-color: inherit;
top: 70px;
height: 75%;
overflow-y: scroll;
}
#tutorial p {
padding-left: 15px;
padding-right: 15px;
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 0;
text-align: center;
width: 80%;
margin-left: 10%;
margin-right: 10%;
}
.gifContainer {
margin: 5px;
}
.gifContainer p {
margin: 0;
line-height: 15px;
}
.gif {
width: 250px;
}