-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathembed-editor.css
127 lines (112 loc) · 2.3 KB
/
embed-editor.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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
.btn-edit {
margin-bottom: 2px;
padding: 10px;
border-radius: 5px;
background-color: #A020F0;
cursor: pointer;
width: auto;
transition: 0.75s;
font-weight: 600;
vertical-align:middle;
width: 220px;
}
.btn-edit i {
vertical-align:middle;
margin-right: 3px;
}
.btn-edit:hover {
background-color: #7b1db6;
}
textarea {
margin-left:20%;
resize: vertical;
min-height: 100px;
width: 60%;
border: 2px solid #A020F0;
color: white;
background-color: rgba(255, 255, 255, 0.027);
border-radius: 6px;
padding: 10px;
}
textarea::-webkit-scrollbar {
width: 5px;
}
textarea::-webkit-scrollbar-track {
background: #ffffff00;
}
textarea::-webkit-scrollbar-thumb {
background-color: #A020F0;
border-radius: 15px;
}
.modal-blur {
-webkit-filter: blur(100px);
-moz-filter: blur(100px);
-o-filter: blur(100px);
-ms-filter: blur(100px);
}
.modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1001;
display: flex;
visibility: hidden;
flex-direction: column;
align-items: center;
overflow: hidden;
-webkit-overflow-scrolling: touch;
background: rgba(0,0,0,.85);
user-select: none;
cursor: auto;
overflow-y: scroll;
}
.modal .box {
position: relative;
flex-shrink: 0;
margin-top: auto;
margin-bottom: auto;
width: 60%;
border-radius: 4px;
background: #fff;
opacity: 1;
cursor: auto;
will-change: transform,opacity;
color: #181818;
font-size: 16px;
padding: 2px 60px;
}
.modal .box textarea {
color: black;
}
.modal .box .footer {
text-align: right;
padding: 1.5rem 2rem;
width: 100%;
border-bottom-right-radius: 4px;
border-bottom-left-radius: 4px;
background-color: #f5f5f5;
cursor: auto;
}
.modal .box .footer button {
border: none;
width: 80px;
height: 30px;
vertical-align:middle;
color: white;
border-radius: 5px;
cursor: pointer;
}
.modal .box .footer button.save {
background-color: limegreen;
}
.modal .box .footer button.save:hover {
background-color: rgb(45, 175, 45);
}
.modal .box .footer button.remove {
background-color: lightcoral;
}
.modal .box .footer button.remove:hover {
background-color: rgb(199, 108, 108);
}