-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboxel.css
More file actions
33 lines (28 loc) · 1.46 KB
/
Copy pathboxel.css
File metadata and controls
33 lines (28 loc) · 1.46 KB
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
.boxel {
}
.boxel .boxel-inner {
}
.boxel .boxel-handle {
height: 30px;
position: relative;
cursor: pointer;
text-align: right;
background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 82%, rgba(255, 255, 255, 1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(82%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 82%, rgba(255, 255, 255, 1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 82%, rgba(255, 255, 255, 1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 82%, rgba(255, 255, 255, 1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 82%, rgba(255, 255, 255, 1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0); /* IE6-9 */
}
.boxel .boxel-handle span {
text-align: right;
font-family: 'Walter Turncoat', Verdana, Helvetica, Arial, sans-serif;
font-weight: bold;
display: inline-block;
background-color: rgba(255, 255, 255, 0.56);
padding: 3px;
border-radius: 3px;
border: 2px solid #FFCC33;
margin-top: 5px;
}