-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (96 loc) · 1.84 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
112
113
114
@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');
* {
margin: 0;
}
/* Header */
.header {
margin-top: 13vh;
font-family: 'Oswald', sans-serif;
text-align: center;
color: rgba(226, 247, 222, 0.761);
margin-bottom: 150px;
}
body {
overflow: hidden;
height: 100vh;
background-image: url(bg.jpg);
background-size: cover;
background-repeat: no-repeat;
background-color: rgb(28, 28, 28);
}
.header h1 {
font-size: 50px;
}
/* Footer */
.footer {
position: fixed;
width: 100%;
height: 40px;
bottom: 0;
background-color: rgba(9, 9, 9, 0.659);
}
.description {
width: 100%;
text-align: center;
margin-top: 6px;
font-size: 16px;
color: #999;
font-family: 'Oswald', sans-serif;
}
.description i {
color: rgb(238, 223, 7);
font-size: 25px;
margin: 0 4px 6px 4px;
}
.description a {
text-decoration: none;
color: rgb(0, 105, 128);
}
/* Fire Change */
.container {
display: flex;
justify-content: center;
align-items: center;
margin-top: 25px;
}
#range {
-webkit-appearance: none;
width: 200px;
height: 10px;
background: #444;
outline: none;
-webkit-transition: .2s;
transition: opacity .2s;
transform: rotate(180deg);
border-radius: 8px;
}
/* Fire */
table {
border-collapse: collapse;
display: flex;
justify-content: center;
align-items: center;
}
td {
width: 50px;
height: 50px;
border: 1px solid black;
text-align: center;
vertical-align: center;
font-family: monospace;
font-size: 18px;
position: relative;
}
.pixel-index {
font-size: 10px;
display: inline-block;
position: absolute;
top: 2px;
right: 2px;
color: #999;
}
td.pixel {
width: 4px;
height: 4px;
border: 0;
}