-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (60 loc) · 1.09 KB
/
style.css
File metadata and controls
67 lines (60 loc) · 1.09 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
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
flex-direction: column;
background: rgb(215, 103, 15);
}
h1 {
font-size: 25px;
margin-bottom: 20px;
font-family: Arial, sans-serif;
}
table {
border-collapse: collapse;
border: 1px solid #000;
}
td {
width: 50px;
height: 50px;
border: 1px solid #000;
text-align: center;
vertical-align: middle;
font-family: monospace;
font-size: 18px;
position: relative;
}
td.pixel {
width: 8px;
height: 8px;
border: 0;
}
.pixel-index {
font-size: 10px;
display: inline-block;
position: absolute;
top: 2px;
right: 2px;
color: #999;
}
#controles {
display: flex;
flex-direction: row;
gap: 10px;
margin-top: 10px;
}
input[type="button"], button {
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
box-shadow: 0px 5px 2px 2px #000;
}
button {
margin: 0px 2px;
}
p {
margin: 0px 5px;
}