-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
65 lines (52 loc) · 881 Bytes
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
* {
margin: 0;
padding: 0;
}
body {
overflow: hidden;
font-family: 'Roboto', sans-serif;
}
.item {
border: 1px solid magenta;
/* width: 10px;
height: 10px; */
}
rect {
stroke: grey;
fill: white;
}
.click-me {
position: absolute;
right: 10px;
top: 10px;
}
#panel {
position: absolute;
top: 25px;
right: 25px;
background: rgba(200, 200, 200, 0.6);
width: 300px;
max-height: 500px;
padding: 0.5em;
justify-content: space-between;
}
.panel-drag {
text-align: center;
padding-bottom: 0.8em;
cursor: move;
}
.container {
display: flex;
flex-direction: column;
}
.btn {
padding: 0.2em 0.8em;
}
.container-btn {
margin-top: 1em;
}
.radio-element {
display: flex;
margin-top: 0.5em;
}