-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (62 loc) · 1.1 KB
/
styles.css
File metadata and controls
72 lines (62 loc) · 1.1 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
72
body {
text-align: center;
}
h1 {
display: inline;
font-size: inherit;
line-height: inherit;
}
h1 > span {
font-size: 60%;
}
h4 {
margin-top: 10px;
margin-bottom: 0;
width: 100%;
}
.minmax-container {
width: 100%;
position: relative;
margin: 10px auto 10px auto;
display: flex;
justify-content: space-between;
line-height: 0;
position: absolute;
bottom: 0;
padding: 0 10px;
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
.minmax-bar-container {
flex-grow: 1;
transform: translateY(-50%);
}
.minmax-bar {
width: 100%;
height: 6px;
/* background-color: #ddd; */
border-radius: 5px;
}
.minmax-indicator {
width: 12px;
height: 12px;
/* background-color: #4caf50; */
border-radius: 50%;
position: absolute;
top: 50%;
transform: translateY(-50%);
transition: left 0.5s ease;
left: 0;
}
.bar-tag {
/* color: #000; */
font-weight: bold;
font-size: 12px;
}
.bar-tag-left {
margin-right: 5px;
}
.bar-tag-right {
margin-left: 5px;
}