-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathSideBar.scss
More file actions
71 lines (58 loc) · 1.17 KB
/
SideBar.scss
File metadata and controls
71 lines (58 loc) · 1.17 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
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
@import '_variables.scss';
.contextual-links {
padding-right: 15px;
.contextual-links__section {
margin-top: 24px;
margin-bottom: 8px;
font-size: 12px;
color: #9DAAB6;
font-weight: 600;
&:before{
content:'\2630';
padding-right: 7px;
}
}
.contextual-links__link {
margin-bottom: 0;
padding: 4px;
display: block;
a {
color: #74818D;
font-size: 11px;
text-decoration: none;
transition: all 0.2s ease-in-out;
}
&:hover {
a {
color: $blue_60;
border-bottom: 1px solid $blue_60;
transition: all 0.2s ease-in-out;
}
}
}
.right-active{
color: #0E5AD9;
display: inline;
}
.contextual-links__subtitle {
color: $grey-60;
font-size: 15px;
font-weight: 700;
margin-top: 1rem;
margin-bottom: .7rem;
}
.contextual-links__alert {
border: 4px dashed #CCE5FF;
border-radius: 4px 4px 4px 4px;
padding: .75rem 1.25rem;
color: #0C5460;
}
// tablet view
@media (min-width: 767px) and (max-width: 990px) {
padding-bottom: 80px;
}
// mobile view
@media (max-width: 767px) {
padding-bottom: 80px;
}
}