-
Notifications
You must be signed in to change notification settings - Fork 547
Expand file tree
/
Copy pathpell.scss
More file actions
41 lines (36 loc) · 1004 Bytes
/
pell.scss
File metadata and controls
41 lines (36 loc) · 1004 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
34
35
36
37
38
39
40
41
$pell-actionbar-color: #FFF !default;
$pell-border-color: rgba(10, 10, 10, 0.1) !default;
$pell-border-style: solid !default;
$pell-border-width: 1px !default;
$pell-button-height: 30px !default;
$pell-button-selected-color: #F0F0F0 !default;
$pell-button-width: 30px !default;
$pell-content-height: 300px !default;
$pell-content-padding: 10px !default;
.pell {
border: $pell-border-width $pell-border-style $pell-border-color;
box-sizing: border-box;
}
.pell-content {
box-sizing: border-box;
height: $pell-content-height;
outline: 0;
overflow-y: auto;
padding: $pell-content-padding;
}
.pell-actionbar {
background-color: $pell-actionbar-color;
border-bottom: $pell-border-width $pell-border-style $pell-border-color;
}
.pell-button {
background-color: transparent;
border: none;
cursor: pointer;
height: $pell-button-height;
outline: 0;
width: $pell-button-width;
vertical-align: bottom;
}
.pell-button-selected {
background-color: $pell-button-selected-color;
}