forked from iChwn/plankton-particle-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
66 lines (62 loc) · 1.01 KB
/
main.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
html,
body {
/* width: 100%;
height: 100%; */
margin: 0;
padding: 0;
overflow: hidden;
}
.canvas-devide {
width: 100%;
height: 100%;
overflow: hidden;
}
#myCanvas {
width: 100%;
/* border: 1px solid #000000; */
/* background-color: #000000; */
}
.options-wrapper{
width: 250px;
/* height: 300px; */
background-color: rgba(0,0,0,0.8);
position: absolute;
display: flex;
flex-direction: column;
left: 0;
top: 0;
color:#fff;
padding: 15px;
border-bottom-right-radius: 8px;
transition: all .5s;
}
.toggle-hidden{
width: 40px;
height: 50px;
background-color: rgba(0,0,0,0.8);
position: absolute;
right: -40px;
border-top-right-radius: 8px;
border-bottom-right-radius:8px;
font-size: 35px;
text-align: center;
cursor: pointer;
}
.wrapper-form{
display: flex;
flex-direction: column;
margin: 5px 0px;
}
.row-wrapper{
display: flex;
align-items: center;
}
input, select {
margin-top: 5px;
}
input:focus{
outline: none;
}
#bounce-x,#bounce-y{
opacity: 0.5;
}