-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path_base.scss
46 lines (40 loc) · 1.01 KB
/
_base.scss
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
@import 'colors';
.button-primary {
background-color: $button-primary-background-color;
background-image: none;
letter-spacing: normal;
color: $button-primary-text-color;
border: 1px solid $button-primary-border-color;
border-radius: 3px;
padding: 4px;
transition: background-color 0.3s, color 0.3s, border 0.3s;
&:hover {
background-color: $button-primary-background-color-hover;
color: $button-primary-text-color-hover;
border: 1px solid $button-primary-border-color-hover;
}
}
.infobar {
border: none;
border-radius: 3px;
font-size: 14px;
background-color: $sidebar-search-background-color;
}
button {
@extend .button-primary;
text-transform: capitalize;
padding: 8px;
font-weight: bold;
}
.base-thumbnail {
margin: 0px 24px 0px 8px;
background-position: 0px 0px;
width: 54px;
height: 54px;
}
.base-expando {
background-image: url($expando);
background-color: transparent;
width: 24px;
height: 24px;
}