-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (53 loc) · 739 Bytes
/
Copy pathstyles.css
File metadata and controls
62 lines (53 loc) · 739 Bytes
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
#columns {
display: flex;
flex-direction: row;
}
.column {
flex: 1;
margin: 10px;
display: flex;
flex-direction: column;
}
.color-square {
position: relative;
width: 100%;
padding-top: 100%;
}
.color-fill {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.controls {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 10px;
}
button,
input {
margin: 5px;
padding: 5px;
}
#footer {
position: fixed;
bottom: 10px;
right: 10px;
display: flex;
align-items: center;
}
#footer input {
width: 300px;
margin-right: 10px;
}
.error-message {
color: red;
font-size: 12px;
}
.button-group {
display: flex;
flex-direction: row;
gap: 5px;
}