-
Notifications
You must be signed in to change notification settings - Fork 15
/
ulearning.css
65 lines (56 loc) · 1 KB
/
ulearning.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
.OptionPanel {
position: absolute;
width: 370px;
opacity: 60%;
top: 10px;
right: 10px;
z-index: 9999;
}
.OptionPanel:hover {
opacity: 90%;
}
.DragBall {
position: absolute;
width: 60px;
height: 60px;
top: 10px;
right: 10px;
opacity: 60%;
border-radius: 50%;
text-align: center;
font-size: 40px;
color: white;
background: aqua no-repeat fixed center;
}
.DragBall:hover {
opacity: 90%;
}
.MainPanel {
background-color: aquamarine;
border-radius: 5px;
padding-left: 5px;
padding-right: 5px;
}
.OptionMainTitle {
text-align: center;
}
.OptionMainSep {
text-align: center;
line-height: 5px;
}
#MainBtn,
#SaveOpBtn {
width: 360px;
height: 30px;
background-color: rgba(0, 0, 0, 0.3);
color: hotpink;
font-size: 20px;
}
.OptionUL li {
position: relative;
list-style: none;
}
.OptionInput {
position: absolute;
right: 25px;
}