-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
111 lines (95 loc) · 1.76 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
body {
background-color: rgb(34, 47, 62);
}
main {
background-color: rgb(241, 242, 246);
border: 1px solid black;
display: flex;
flex-direction: column;
margin: 0 auto;
padding: 32px;
text-align: center;
}
header {
margin: 32px auto;
text-align: center;
}
div .color-palette {
display: block;
}
.color {
border: 1px solid black;
cursor: pointer;
display: inline-block;
height: 40px;
margin: 10px;
position: relative;
width: 40px;
}
div .pixel {
background-color: white;
border: 1px solid black;
display: inline-block;
height: 40px;
margin: 0;
width: 40px;
}
.pixel-line {
height: 40px;
}
.commands button, .commands input {
font-family: 'Press Start 2P', cursive;
}
h1 {
color: rgb(241, 242, 246);
font-size: 30px;
text-shadow: 2px 2px rgba(0, 0, 0);
font-family: 'Press Start 2P', cursive;
}
.commands button, .color {
box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.8);
}
.commands .commands-btns {
display: inline-flex;
justify-content: center;
margin: 16px 0;
}
.commands input {
border: 2px solid black;
box-shadow: 2px 2px 0 0 rgba(0, 0, 0, 0.8);
font-size: 20px;
font-weight: 700;
margin: 0 auto;
padding: 8px 0;
text-align: center;
width: 120px;
}
.commands button {
background-color: rgb(123, 237, 159);
border: 2px solid black;
display: inline-block;
padding: 8px 16px;
}
.selected, .commands button:active {
box-shadow: 0 0 0 0;
transform: translate(2px, 2px);
}
.commands .clear-board {
align-items: center;
background-color: rgb(255, 71, 87);
display: flex;
height: 40px;
margin: 0 auto;
margin-bottom: 16px;
}
footer {
font-family: sans-serif;
color: white;
font-size: 12px;
padding: 16px;
text-align: center;
margin-top: 16px;
}
footer a {
color: white;
}