-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
114 lines (100 loc) · 2.02 KB
/
styles.css
File metadata and controls
114 lines (100 loc) · 2.02 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
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
body {
font-family: "Pixelify Sans", sans-serif;
color: white;
font-size: 32px;
margin: 0;
}
header {
position: fixed;
width: 100%;
font-size: 64px;
background-color: #6B6B6B;
text-align: center;
box-shadow: 0 3px 3px #333;
}
#appContainer {
display: flex;
flex-direction: row;
height: 80%;
}
#operationContainer {
display: flex;
flex-direction: column;
align-items: center;
width: 40%;
background-color: #6B6B6B;
padding-top: 20%;
}
#inputContainer {
display: flex;
flex-direction: column;
margin: 0 0 80px 0;
padding: 0;
}
#inputColor {
padding:0;
border: none;
background: none;
height: 36px;
}
#inputColumn, #inputRow{
font-family: "Pixelify Sans", sans-serif;
font-size: 24px;
width: 40px;
color: #6B6B6B;
}
.labeledInputContainer {
display: grid;
grid-template-columns: 100px auto;
align-items: center;
gap: 30px;
margin-bottom: 20px;
}
#resetBtn {
font-family: "Pixelify Sans", sans-serif;
font-size: 16px;
padding: 10px 20px;
background-color: white;
border: none;
border-radius: 10px;
color: #6B6B6B;
}
#resetBtn:hover{
font-family: "Pixelify Sans", sans-serif;
font-size: 16px;
padding: 10px 20px;
background-color: #ddd;
border: none;
border-radius: 10px;
color: #6B6B6B;
}
#pixelContainer {
display: grid;
gap: 2px;
width: 60%;
background-color: #444;
padding-top: 15%;
justify-content: center;
}
@media only screen and (max-width: 600px) {
#appContainer {
display: flex;
flex-direction: column-reverse;
}
#operationContainer {
display: flex;
flex-direction: column;
align-items: center;
width: 100%;
background-color: #6B6B6B;
padding-top: 20%;
}
#pixelContainer {
display: grid;
gap: 2px;
width: 100%;
background-color: #444;
padding-top: 15%;
justify-content: center;
}
}