forked from adamlaska/circleci-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_progressbar.scss
More file actions
44 lines (37 loc) · 884 Bytes
/
_progressbar.scss
File metadata and controls
44 lines (37 loc) · 884 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
42
43
44
@import './variables';
.main-body {
margin-top: 2px;
}
#progress-bar-container {
height: 2px;
position: sticky;
width: 100%;
box-shadow: 0 -1px 18px 0 #000000BD;
z-index: 1029;
top: 68px;
}
#progress-bar {
height: 2px;
width: 0%;
background: #008647;
@media (max-width: $screen-md) {
height: 3px;
}
}
body {
background: linear-gradient(-155deg, #fff 50%, #008647 50%);
background-size: 100% calc(100% - 100vh + 74px);
background-repeat: no-repeat;
@media (max-width: $screen-md) {
background: linear-gradient(-140deg, #fff 50%, #008647 50%);
}
}
body::before {
content: '';
position: fixed;
top: $sticky-height;
bottom: 0;
width: 100%;
z-index: -1;
background: linear-gradient(to right, #F7F7F7 0%, #F7F7F7 calc(50% - 860px), #fff calc(50% - 860px), #fff 100%);;
}