-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
executable file
·53 lines (42 loc) · 1.07 KB
/
styles.css
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
#page-mod-stepbystep-view {
scroll-behavior: smooth;
}
#page-mod-stepbystep-view #title {
display: inline-block;
}
#page-mod-stepbystep-view #stepbystep-progress {
background: #F2F2F2;
text-align: center;
display: inline-grid;
float: right;
height: 20px;
width: 190px;
}
#page-mod-stepbystep-view #stepbystep-progress div {
background: #DDDDDD;
height: 20px;
}
#page-mod-stepbystep-view #stepbystep-progress span {
font-size: 0.9rem;
margin-top: -18px;
}
#page-mod-stepbystep-view #stepbystep-progress span em {
font-style: normal;
}
#page-mod-stepbystep-view #content-section #content-items {
background: #F2F2F2;
padding: 2rem;
min-height: 35rem;
}
#page-mod-stepbystep-view #content-section #content-items .content-item {
display: none;
}
#page-mod-stepbystep-view #content-section #content-items .content-item.active {
display: block;
}
#page-mod-stepbystep-view #content-section .content-nav #prev {
float: left;
}
#page-mod-stepbystep-view #content-section .content-nav #next {
float: right;
}