-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
108 lines (88 loc) · 1.39 KB
/
main.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
body{
text-align: center;
font-family: 'Harmattan', sans-serif;
}
h1 {
font-family: 'Bungee Shade', cursive;
font-size: 70px;
margin: 0.3em;
}
#pixelForm{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
input[type=number] {
border-radius: 6px;
}
form{
width: 40%;
display: flex;
justify-content: space-evenly;
padding: 0px 0px 25px 0px;
}
label{
font-size: 13pt;
}
input[type=number] {
width: 6em;
padding: 7px 0px 7px 7px;
}
input[type=submit] {
font-weight: bold;
width: 5em;
border-radius: 5px;
border: 1px solid black;
}
table,
tr,
td {
border: 1px solid black;
}
table {
border-collapse: collapse;
margin: 0 auto;
box-shadow: 0 0 10px;
}
tr {
height: 20px;
border: 1px solid #000;
background-color: #fff;
}
td {
width: 20px;
}
.dark-mode {
background-color: black;
color: white;
transition: .9s ease-in-out;
}
.material-icons{
cursor: pointer;
box-shadow: 0 0 5px;
border-radius: 5px;
}
@media screen and (min-width: 500px) {
#pixelForm,
input,
label{
font-size: 16pt;
}
form{
width:70%;
}
}
@media screen and (min-width: 590px) {
h1{
font-size: 35pt;
}
#pixelForm,
input,
label{
font-size: 12pt;
}
form{
width: 40%;
}
}