-
Notifications
You must be signed in to change notification settings - Fork 547
Expand file tree
/
Copy pathpell.css
More file actions
33 lines (29 loc) · 725 Bytes
/
pell.css
File metadata and controls
33 lines (29 loc) · 725 Bytes
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
.pell {
border: 1px solid rgba(10, 10, 10, 0.1);
box-sizing: border-box; }
.pell-content {
box-sizing: border-box;
height: 300px;
outline: 0;
overflow-y: auto;
padding: 10px;
position: relative; }
.pell-content:empty:before {
content: attr(data-placeholder);
position: absolute;
color: rgba(10, 10, 10, 0.4); }
.pell-content:empty:focus:before {
color: rgba(10, 10, 10, 0.1); }
.pell-actionbar {
background-color: #FFF;
border-bottom: 1px solid rgba(10, 10, 10, 0.1); }
.pell-button {
background-color: transparent;
border: none;
cursor: pointer;
height: 30px;
outline: 0;
width: 30px;
vertical-align: bottom; }
.pell-button-selected {
background-color: #F0F0F0; }