๐Ÿ“ฆ sahkal / Pixel-Art-Maker

๐Ÿ“„ style.css ยท 56 lines
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
56body {
    text-align: center;
    background-image:url("http://i66.tinypic.com/2wd33mb.jpg"); 
}

h1 {
    font-family: Monoton;
    font-size: 70px;
    margin: 0.2em;
    color: orange;
}

h2 {
    margin: 1em 0 0.25em;
    color: red;
}

h2:first-of-type {
    margin-top: 0.5em;
    color: blue;
}

table,
tr,
td {
    border: 2px solid blue;
}

table {
    border-collapse: collapse;
    margin: 0 auto;
    box-shadow:1px 1px 5px #888888;
    color: blue;
}

tr {
    height: 20px;
}

td {
    width: 20px;
}

input[type=number] {
    width: 6em;
}
#sizePicker{
    color: lightblue;
}
#decoration{
    color: blue;
}
#pixelCanvas{
  background-color:white;
  background-property:cover;
}