-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (98 loc) · 2.11 KB
/
style.css
File metadata and controls
107 lines (98 loc) · 2.11 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
.pixel {
width: 10px;
height: 10px;
border: .25px solid lightgray;
box-sizing: border-box;
}
.color-choice {
width: 25px;
height: 25px;
margin: 3px;
border-radius: 50%;
box-sizing: border-box;
}
.tool {
width: 40px;
height: 25px;
line-height: 25px;
margin: 5px;
font-family: sans-serif;
font-size: 14px;
text-align: center;
background-color: darkgray;
border: 2px solid lightgray;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
#colorPicker {
width: 40px;
height: 30px;
margin: 5px;
background-color: darkgray;
border: 2px solid lightgray;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
.container {
display: grid;
grid-template-columns: repeat(60, 10px);
grid-template-rows: repeat(50, 10px);
grid-auto-rows: 10px;
width: 600px;
height: 500px;
margin: 0 auto;
}
.container-mobile {
display: grid;
grid-template-columns: repeat(auto-fit, 10px);
grid-template-rows: repeat(50, 10px);
grid-auto-rows: 10px;
width: 370px;
height: 420px;
margin: 0 auto;
}
.palette {
width: 600px;
height: 40px;
margin: 0 auto;
background-color: darkgray;
display: flex;
justify-content: center;
align-items: center;
}
.palette-tools {
width: 600px;
height: 40px;
margin: 0 auto;
background-color: darkgray;
display: flex;
justify-content: center;
align-items: center;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
}
#title {
width: 600px;
height: 30px;
line-height: 30px;
margin: 0 auto;
color:black;
font-family: sans-serif;
font-weight: bold;
text-align: center;
background-color: darkgray;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
#credits {
width: auto;
font-family: sans-serif;
color: gray;
font-size: 10px;
text-align: center;
margin-top: 10px;
}