@qrsln/lootstrap 22.3.2-beta.0 → 22.3.24-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/lootstrap.css +576 -242
- package/dist/css/lootstrap.css.map +1 -1
- package/dist/css/lootstrap.min.css +3 -3
- package/package.json +4 -5
- package/scss/Architecture/Components/_card.scss +61 -9
- package/scss/Architecture/Components/_loader.scss +33 -38
- package/scss/Architecture/Components/_nav.scss +41 -1
- package/scss/Architecture/Components/_rating.scss +19 -84
- package/scss/Architecture/Components/_scrollbar.scss +1 -1
- package/scss/Architecture/Components/_square.scss +2 -1
- package/scss/Architecture/Components/_timeline.scss +36 -81
- package/scss/Architecture/Components/_timer.scss +15 -55
- package/scss/Architecture/Roots/_avatar.scss +24 -10
- package/scss/Architecture/Roots/_shape.scss +9 -9
- package/scss/Architecture/Utils/_border.scss +12 -12
- package/scss/Architecture/Utils/_utilities.scss +1 -1
- package/scss/_header.scss +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@qrsln/lootstrap",
|
|
3
|
-
"version": "22.3.
|
|
3
|
+
"version": "22.3.24-beta.0",
|
|
4
4
|
"description": "LootStrap is a scss library and is still in beta! There is much to improve!",
|
|
5
5
|
"style": "dist/css/lootstrap.css",
|
|
6
6
|
"sass": "scss/lootstrap.scss",
|
|
@@ -40,19 +40,18 @@
|
|
|
40
40
|
"sass:Watch": "sass --watch scss/:dist/css/",
|
|
41
41
|
"css-compile-TEST": "sass --style expanded --source-map --embed-sources --no-error-css Tests:dist/Tests",
|
|
42
42
|
"css-clean-main-TEST:SassDoesnt": "cleancss -O1 --format beautify --output dist/Tests/lootstrap-test.css dist/Tests/lootstrap-test.css",
|
|
43
|
-
|
|
44
43
|
"/************ / ************/": " --- End --- ",
|
|
45
44
|
"p:live": "npm run css && npm publish --access public",
|
|
46
45
|
"p:beta": "npm run css && npm publish --tag beta --access public"
|
|
47
46
|
},
|
|
48
47
|
"devDependencies": {
|
|
49
|
-
"autoprefixer": "^10.4.
|
|
48
|
+
"autoprefixer": "^10.4.4",
|
|
50
49
|
"clean-css-cli": "^5.5.2",
|
|
51
50
|
"nodemon": "^2.0.15",
|
|
52
51
|
"npm-run-all": "^4.1.5",
|
|
53
|
-
"postcss": "^8.4.
|
|
52
|
+
"postcss": "^8.4.12",
|
|
54
53
|
"postcss-cli": "^9.1.0",
|
|
55
54
|
"rimraf": "^3.0.2",
|
|
56
|
-
"sass": "^1.49.
|
|
55
|
+
"sass": "^1.49.9"
|
|
57
56
|
}
|
|
58
57
|
}
|
|
@@ -6,11 +6,11 @@
|
|
|
6
6
|
$Customized: 'card-';
|
|
7
7
|
@import "../_color-scheme";
|
|
8
8
|
|
|
9
|
-
$
|
|
9
|
+
$card-radius: .25rem;
|
|
10
10
|
|
|
11
11
|
.Card {
|
|
12
|
-
display: block;
|
|
13
12
|
position: relative;
|
|
13
|
+
display: block;
|
|
14
14
|
overflow: visible;
|
|
15
15
|
|
|
16
16
|
color: $Fg-surface;
|
|
@@ -19,9 +19,10 @@ $border-radius: .5rem;
|
|
|
19
19
|
border: $Border;
|
|
20
20
|
box-shadow: $Shadow;
|
|
21
21
|
|
|
22
|
+
|
|
22
23
|
padding: 0;
|
|
23
24
|
margin-bottom: 1rem;
|
|
24
|
-
border-radius: $
|
|
25
|
+
border-radius: $card-radius;
|
|
25
26
|
min-width: 0;
|
|
26
27
|
background-clip: border-box;
|
|
27
28
|
|
|
@@ -29,8 +30,8 @@ $border-radius: .5rem;
|
|
|
29
30
|
position: relative;
|
|
30
31
|
overflow: hidden;
|
|
31
32
|
|
|
32
|
-
border-top-left-radius: $
|
|
33
|
-
border-top-right-radius: $
|
|
33
|
+
border-top-left-radius: $card-radius;
|
|
34
|
+
border-top-right-radius: $card-radius;
|
|
34
35
|
}
|
|
35
36
|
|
|
36
37
|
.Card-header, .Card-footer {
|
|
@@ -44,7 +45,7 @@ $border-radius: .5rem;
|
|
|
44
45
|
border-bottom: $Border;
|
|
45
46
|
|
|
46
47
|
:first-child {
|
|
47
|
-
border-radius: calc(.
|
|
48
|
+
border-radius: calc(.25rem - 1px) calc(.25rem - 1px) 0 0;
|
|
48
49
|
}
|
|
49
50
|
}
|
|
50
51
|
|
|
@@ -56,12 +57,10 @@ $border-radius: .5rem;
|
|
|
56
57
|
}
|
|
57
58
|
|
|
58
59
|
&.Card-body, .Card-body {
|
|
60
|
+
position: relative;
|
|
59
61
|
flex: 1 1 auto;
|
|
60
62
|
padding: 1rem 1.5rem;
|
|
61
63
|
|
|
62
|
-
//color: $Component-fg-light;
|
|
63
|
-
//background-color: $Component-bg-light;
|
|
64
|
-
|
|
65
64
|
.Card-title {
|
|
66
65
|
margin-bottom: .5rem;
|
|
67
66
|
|
|
@@ -78,3 +77,56 @@ $border-radius: .5rem;
|
|
|
78
77
|
}
|
|
79
78
|
}
|
|
80
79
|
}
|
|
80
|
+
|
|
81
|
+
.Card-horizontal {
|
|
82
|
+
position: relative;
|
|
83
|
+
display: flex;
|
|
84
|
+
flex-wrap: wrap;
|
|
85
|
+
|
|
86
|
+
.Card-img {
|
|
87
|
+
&:not(:empty) {
|
|
88
|
+
width: 40%;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
border-top-right-radius: 0;
|
|
92
|
+
border-bottom-left-radius: $card-radius;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
&.Card-body, .Card-body {
|
|
96
|
+
width: 60%;
|
|
97
|
+
|
|
98
|
+
padding: 0.5rem 1rem;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// https://gist.github.com/gokulkrishh/242e68d1ee94ad05f488
|
|
103
|
+
|
|
104
|
+
/*
|
|
105
|
+
##Device = Most of the Smartphones Mobiles (Portrait)
|
|
106
|
+
##Screen = B/w 320px to 479px
|
|
107
|
+
*/
|
|
108
|
+
@media (min-width: 320px) and (max-width: 480px) {
|
|
109
|
+
|
|
110
|
+
.Card {
|
|
111
|
+
|
|
112
|
+
.Card-header, .Card-footer {
|
|
113
|
+
padding: 0.5rem 1.25rem;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
&.Card-body, .Card-body {
|
|
117
|
+
padding: 0.75rem 1.25rem;
|
|
118
|
+
font-size: 0.75em;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.Card-horizontal {
|
|
123
|
+
.Card-img {
|
|
124
|
+
border-bottom-left-radius: 0;
|
|
125
|
+
border-top-right-radius: $card-radius;
|
|
126
|
+
|
|
127
|
+
&:not(:empty) {
|
|
128
|
+
flex: 0 0 100%;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
@@ -9,51 +9,46 @@
|
|
|
9
9
|
|
|
10
10
|
.Loader {
|
|
11
11
|
display: flex;
|
|
12
|
-
--status: '0%';
|
|
13
|
-
--loaded: 0;
|
|
12
|
+
--ls-loader-status: '0%';
|
|
13
|
+
--ls-loader-loaded: 0;
|
|
14
14
|
|
|
15
|
-
.
|
|
16
|
-
|
|
15
|
+
.Status {
|
|
16
|
+
display: inline-block;
|
|
17
|
+
position: absolute;
|
|
17
18
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
&:before {
|
|
23
|
-
content: var(--status, "0%");
|
|
24
|
-
}
|
|
25
|
-
}
|
|
19
|
+
&:before {
|
|
20
|
+
content: var(--ls-loader-status, "0%");
|
|
21
|
+
}
|
|
22
|
+
}
|
|
26
23
|
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
svg {
|
|
25
|
+
width: 100%;
|
|
26
|
+
height: auto;
|
|
27
|
+
top: 0;
|
|
28
|
+
left: 0;
|
|
32
29
|
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
30
|
+
text {
|
|
31
|
+
fill: currentColor;
|
|
32
|
+
dominant-baseline: central;
|
|
33
|
+
text-anchor: middle;
|
|
34
|
+
}
|
|
38
35
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
36
|
+
g {
|
|
37
|
+
//transform-box: fill-box;
|
|
38
|
+
transform-origin: center;
|
|
39
|
+
transform: rotate(-90deg);
|
|
40
|
+
}
|
|
44
41
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
42
|
+
.circle {
|
|
43
|
+
fill: none;
|
|
44
|
+
stroke: currentColor;
|
|
45
|
+
stroke-width: 3%;
|
|
46
|
+
stroke-linecap: round;
|
|
47
|
+
animation: loader-progress 1s ease-out forwards;
|
|
51
48
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
}
|
|
56
|
-
}
|
|
49
|
+
&:first-of-type {
|
|
50
|
+
stroke-dasharray: var(--ls-loader-loaded, 0), 100;
|
|
51
|
+
transition: stroke-dasharray 0.4s cubic-bezier(0.04, 0.24, 0.18, 1);
|
|
57
52
|
}
|
|
58
53
|
}
|
|
59
54
|
}
|
|
@@ -46,6 +46,10 @@ $Customized: false;
|
|
|
46
46
|
.Nav-tabs {
|
|
47
47
|
border-bottom: 1px solid $Border-color;
|
|
48
48
|
|
|
49
|
+
.Nav-item {
|
|
50
|
+
padding-right: 2px;
|
|
51
|
+
}
|
|
52
|
+
|
|
49
53
|
.Nav-link {
|
|
50
54
|
margin-bottom: -1px;
|
|
51
55
|
background: none;
|
|
@@ -88,4 +92,40 @@ $Customized: false;
|
|
|
88
92
|
color: $Fg-accent;
|
|
89
93
|
background-color: $Bg-accent;
|
|
90
94
|
}
|
|
91
|
-
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.Nav-material {
|
|
98
|
+
.Nav-link {
|
|
99
|
+
background: none;
|
|
100
|
+
border: 0;
|
|
101
|
+
|
|
102
|
+
color: $Fg-hue;
|
|
103
|
+
border-bottom: 2px solid transparent;
|
|
104
|
+
|
|
105
|
+
&:hover,
|
|
106
|
+
&:focus {
|
|
107
|
+
color: $Fg-lighter;
|
|
108
|
+
background-color: $Bg-lighter;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
.Nav-link.Active,
|
|
113
|
+
.Show > .Nav-link {
|
|
114
|
+
border-color: $Bg-accent;
|
|
115
|
+
color: $Bg-accent;
|
|
116
|
+
//background-color: orange;
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
// Tabbable tabs
|
|
121
|
+
// Hide tabbable panes to start, show them when `.active`
|
|
122
|
+
|
|
123
|
+
.Tab-content {
|
|
124
|
+
.Tab-pane {
|
|
125
|
+
display: none;
|
|
126
|
+
|
|
127
|
+
&.Active {
|
|
128
|
+
display: block;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
@@ -8,108 +8,43 @@
|
|
|
8
8
|
$Customized: false;
|
|
9
9
|
@import "../_color-scheme";
|
|
10
10
|
|
|
11
|
-
//$svg-Heart: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-1 0 52 50'%3E%3Cg %3E%3Cpath d='M24.85,10.126c2.018-4.783,6.628-8.125,11.99-8.125c7.223,0,12.425,6.179,13.079,13.543 c0,0,0.353,1.828-0.424,5.119c-1.058,4.482-3.545,8.464-6.898,11.503L24.85,48L7.402,32.165c-3.353-3.038-5.84-7.021-6.898-11.503 c-0.777-3.291-0.424-5.119-0.424-5.119C0.734,8.179,5.936,2,13.159,2C18.522,2,22.832,5.343,24.85,10.126z'/%3E%3C/g%3E%3C/svg%3E%0A");
|
|
12
|
-
//$svg-Star: url("data:image/svg+xml, %3Csvg viewBox='0 0 190 190' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,10 40,180 190,60 10,60 160,180' /%3E%3C/svg%3E%0A");
|
|
13
|
-
$svg-Heart: url("data:image/svg+xml;base64,IDxzdmcgeG1sbnM9J2h0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnJyB2aWV3Qm94PSctMSAwIDUyIDUwJz48ZyA+PHBhdGggZD0nTTI0Ljg1LDEwLjEyNmMyLjAxOC00Ljc4Myw2LjYyOC04LjEyNSwxMS45OS04LjEyNWM3LjIyMywwLDEyLjQyNSw2LjE3OSwxMy4wNzksMTMuNTQzIGMwLDAsMC4zNTMsMS44MjgtMC40MjQsNS4xMTljLTEuMDU4LDQuNDgyLTMuNTQ1LDguNDY0LTYuODk4LDExLjUwM0wyNC44NSw0OEw3LjQwMiwzMi4xNjVjLTMuMzUzLTMuMDM4LTUuODQtNy4wMjEtNi44OTgtMTEuNTAzIGMtMC43NzctMy4yOTEtMC40MjQtNS4xMTktMC40MjQtNS4xMTlDMC43MzQsOC4xNzksNS45MzYsMiwxMy4xNTksMkMxOC41MjIsMiwyMi44MzIsNS4zNDMsMjQuODUsMTAuMTI2eicvPjwvZz48L3N2Zz4K");
|
|
14
|
-
$svg-Star: url("data:image/svg+xml;base64,IDxzdmcgdmlld0JveD0nMCAwIDE5MCAxOTAnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc+PHBvbHlnb24gcG9pbnRzPScxMDAsMTAgNDAsMTgwIDE5MCw2MCAxMCw2MCAxNjAsMTgwJyAvPjwvc3ZnPgo=");
|
|
15
|
-
|
|
16
|
-
$bg-Star: #dbab09;
|
|
17
|
-
$bg-Heart: hsl(354, 66%, 54%);
|
|
18
|
-
|
|
19
11
|
.Rating {
|
|
20
12
|
display: flex;
|
|
21
13
|
position: relative;
|
|
22
14
|
overflow: visible;
|
|
23
15
|
cursor: pointer;
|
|
24
16
|
|
|
25
|
-
|
|
17
|
+
//noinspection ALL
|
|
18
|
+
RatingItem, .Square {
|
|
19
|
+
margin: 0;
|
|
26
20
|
border: none;
|
|
27
21
|
background: transparent;
|
|
28
22
|
|
|
29
|
-
|
|
30
|
-
$color: var(--#{$var-Prefix}rating-color);
|
|
31
|
-
|
|
23
|
+
.Rating-inner,
|
|
32
24
|
.Square-inner:not(.Rating-value) {
|
|
33
25
|
color: $Fg-surface;
|
|
34
26
|
background-color: $Bg-surface;
|
|
35
27
|
|
|
36
|
-
&.IsFraction {
|
|
37
|
-
background: linear-gradient(to right, $bg-color 0%, $Bg-lightest 100%);
|
|
38
|
-
border-image: linear-gradient(to right, $bg-color 0%, $Bg-lightest 100%) 1;
|
|
39
|
-
color: $color;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
&.IsSelected, &.IsHovered {
|
|
43
|
-
border-color: $bg-color;
|
|
44
|
-
background: $bg-color;
|
|
45
|
-
color: $color;
|
|
46
|
-
|
|
47
|
-
&.IsFraction {
|
|
48
|
-
background: linear-gradient(to right, $bg-color 0%, $Bg-lightest 100%);
|
|
49
|
-
border-image: linear-gradient(to right, $bg-color 0%, $Bg-lightest 100%) 1;
|
|
50
|
-
color: $color;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.Rating-star {
|
|
58
|
-
--#{$var-Prefix}rating-mask: #{$svg-Star};
|
|
59
|
-
--#{$var-Prefix}rating-bg-color: #{$bg-Star};
|
|
60
|
-
--#{$var-Prefix}rating-color: #{$Fg-hue};
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.Rating-heart {
|
|
64
|
-
--#{$var-Prefix}rating-mask: #{$svg-Heart};
|
|
65
|
-
--#{$var-Prefix}rating-bg-color: #{$bg-Heart};
|
|
66
|
-
--#{$var-Prefix}rating-color: #{$Fg-hue};
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
.Rating-text {
|
|
70
|
-
--#{$var-Prefix}rating-bg-color: #{$Bg-accent};
|
|
71
|
-
--#{$var-Prefix}rating-color: #{$Fg-accent};
|
|
72
|
-
|
|
73
|
-
.Square {
|
|
74
|
-
.Square-inner:not(.Rating-value) {
|
|
75
28
|
margin: 1px;
|
|
76
29
|
border: 4px solid $Bg-lightest;
|
|
77
|
-
//border: 4px solid $Border-color;
|
|
78
30
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
// TODO: Rating-mask
|
|
87
|
-
.Rating-mask {
|
|
88
|
-
.Square {
|
|
89
|
-
filter: drop-shadow(0 3px 1px rgba(0, 0, 0, 0.2));
|
|
90
|
-
|
|
91
|
-
.Square-inner:not(.Rating-value) {
|
|
92
|
-
//@extend .Svg-mask !optional;
|
|
93
|
-
display: flex;
|
|
94
|
-
|
|
95
|
-
mask: var(--svg-icon);
|
|
96
|
-
mask-repeat: no-repeat;
|
|
97
|
-
mask-position: center;
|
|
98
|
-
mask-size: contain;
|
|
31
|
+
&.Fraction {
|
|
32
|
+
background: linear-gradient(to right, var(--#{$var-Prefix}rating-bg, $Bg-accent) 0%, $Bg-lightest 100%);
|
|
33
|
+
border-image: linear-gradient(to right, var(--#{$var-Prefix}rating-bg, $Bg-accent) 0%, $Bg-lightest 100%) 1;
|
|
34
|
+
color: $Fg-accent;
|
|
35
|
+
}
|
|
99
36
|
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
37
|
+
&.Selected, &.Hovered {
|
|
38
|
+
border-color: var(--ls-rating-bg, $Bg-accent);
|
|
39
|
+
background: var(--ls-rating-bg, $Bg-accent);
|
|
40
|
+
color: $Fg-accent;
|
|
104
41
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
mask: var(--#{$var-Prefix}rating-mask) center no-repeat;
|
|
112
|
-
mask-size: auto;
|
|
42
|
+
&.Fraction {
|
|
43
|
+
background: linear-gradient(to right, var(--#{$var-Prefix}rating-bg, $Bg-accent) 0%, $Bg-lightest 100%);
|
|
44
|
+
border-image: linear-gradient(to right, var(--#{$var-Prefix}rating-bg, $Bg-accent) 0%, $Bg-lightest 100%) 1;
|
|
45
|
+
color: $Fg-accent;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
113
48
|
}
|
|
114
49
|
}
|
|
115
50
|
}
|
|
@@ -9,20 +9,14 @@ $Customized: false;
|
|
|
9
9
|
.Timeline {
|
|
10
10
|
display: block;
|
|
11
11
|
position: relative;
|
|
12
|
-
overflow: visible;
|
|
13
12
|
|
|
14
13
|
color: $Fg-surface;
|
|
15
14
|
background-color: $Bg-surface;
|
|
16
15
|
|
|
17
|
-
//border: $Border;
|
|
18
|
-
box-shadow: $Shadow-inner;
|
|
19
|
-
|
|
20
16
|
background-clip: border-box;
|
|
17
|
+
min-width: 0;
|
|
21
18
|
padding: 0;
|
|
22
19
|
margin-bottom: 1.5rem;
|
|
23
|
-
min-width: 0;
|
|
24
|
-
|
|
25
|
-
$badge-size: 32px;
|
|
26
20
|
|
|
27
21
|
.Timeline-header {
|
|
28
22
|
padding: 1rem;
|
|
@@ -32,99 +26,60 @@ $Customized: false;
|
|
|
32
26
|
.Timeline-item {
|
|
33
27
|
position: relative;
|
|
34
28
|
display: flex;
|
|
35
|
-
overflow: visible;
|
|
36
|
-
padding-right: 1rem;
|
|
37
|
-
padding-left: 1rem;
|
|
38
29
|
|
|
39
|
-
|
|
30
|
+
align-items: center;
|
|
31
|
+
|
|
32
|
+
&.Inverted {
|
|
33
|
+
flex-direction: row-reverse;
|
|
34
|
+
|
|
35
|
+
&:after {
|
|
36
|
+
left: auto;
|
|
37
|
+
right: 16px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.Timeline-badge {
|
|
41
|
+
margin-right: 0;
|
|
42
|
+
margin-left: 0.75rem;
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
&:after {
|
|
40
47
|
position: absolute;
|
|
41
48
|
content: " ";
|
|
42
49
|
background-color: $Border-color;
|
|
43
50
|
|
|
51
|
+
//z-index: -1;
|
|
52
|
+
|
|
44
53
|
width: 3px;
|
|
45
54
|
height: 100%;
|
|
46
55
|
|
|
47
|
-
left:
|
|
56
|
+
left: 16px;
|
|
48
57
|
right: auto;
|
|
49
|
-
top:
|
|
58
|
+
top: 0;
|
|
50
59
|
}
|
|
51
60
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
z-index: 1;
|
|
56
|
-
|
|
57
|
-
align-items: center;
|
|
58
|
-
|
|
59
|
-
.Timeline-badge-inner {
|
|
60
|
-
position: relative;
|
|
61
|
-
display: flex;
|
|
62
|
-
width: $badge-size;
|
|
63
|
-
height: $badge-size;
|
|
64
|
-
|
|
65
|
-
color: $Fg-accent;
|
|
66
|
-
background-color: $Bg-accent;
|
|
67
|
-
|
|
68
|
-
border-radius: 50%;
|
|
69
|
-
box-shadow: $Shadow-inner;
|
|
70
|
-
margin-bottom: 1rem;
|
|
71
|
-
|
|
72
|
-
* {
|
|
73
|
-
display: block;
|
|
74
|
-
margin: auto;
|
|
75
|
-
}
|
|
76
|
-
}
|
|
61
|
+
&.First:after {
|
|
62
|
+
height: 50%;
|
|
63
|
+
top: 50%;
|
|
77
64
|
}
|
|
78
65
|
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
max-width: 100%;
|
|
83
|
-
|
|
84
|
-
padding: 0;
|
|
85
|
-
margin: 0 0 0 1.4rem;
|
|
86
|
-
|
|
87
|
-
.Card {
|
|
88
|
-
border-top: 1px solid $Border-color;
|
|
89
|
-
|
|
90
|
-
.Card-img {
|
|
91
|
-
overflow: hidden;
|
|
92
|
-
margin: .5rem;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
&.Card-horizontal {
|
|
96
|
-
|
|
97
|
-
.Card-img {
|
|
98
|
-
padding: .25rem;
|
|
99
|
-
|
|
100
|
-
@media (min-width: 1014px) {
|
|
101
|
-
margin-right: 0 !important;
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
}
|
|
66
|
+
&.Last:after {
|
|
67
|
+
height: 50%;
|
|
68
|
+
top: 0;
|
|
108
69
|
}
|
|
109
70
|
|
|
110
|
-
|
|
111
|
-
|
|
71
|
+
.Timeline-badge {
|
|
72
|
+
width: 40px;
|
|
112
73
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
74
|
+
z-index: 1001;
|
|
75
|
+
|
|
76
|
+
margin-right: 0.75rem;
|
|
77
|
+
margin-bottom: 0.75rem;
|
|
116
78
|
}
|
|
117
|
-
}
|
|
118
79
|
|
|
119
|
-
|
|
120
|
-
.Timeline-item, .Timeline-item-inverted {
|
|
80
|
+
.Timeline-content {
|
|
121
81
|
width: 100%;
|
|
122
|
-
|
|
123
|
-
padding-left: .25rem;
|
|
124
|
-
|
|
125
|
-
&:not(:last-child):after {
|
|
126
|
-
left: 1.2rem;
|
|
127
|
-
}
|
|
82
|
+
margin-left: auto;
|
|
128
83
|
}
|
|
129
84
|
}
|
|
130
85
|
}
|
|
@@ -1,85 +1,45 @@
|
|
|
1
1
|
// ===========================================================================
|
|
2
|
-
// Components -
|
|
2
|
+
// Components - Timer
|
|
3
3
|
// TS: Theme Support
|
|
4
4
|
// ===========================================================================
|
|
5
5
|
|
|
6
6
|
$Customized: false;
|
|
7
7
|
@import "../_color-scheme";
|
|
8
8
|
|
|
9
|
+
//noinspection CssInvalidHtmlTagReference
|
|
9
10
|
.Timer {
|
|
10
11
|
display: flex;
|
|
11
12
|
position: relative;
|
|
12
13
|
overflow: hidden;
|
|
13
|
-
flex-wrap: wrap;
|
|
14
|
+
//flex-wrap: wrap;
|
|
14
15
|
|
|
15
|
-
color: $
|
|
16
|
+
color: $Bg-accent;
|
|
16
17
|
background-color: $Bg-surface;
|
|
17
18
|
|
|
18
19
|
border: $Border;
|
|
19
20
|
box-shadow: $Shadow;
|
|
20
21
|
|
|
21
|
-
min-height: 110px;
|
|
22
|
-
padding: 5px 10px;
|
|
23
22
|
margin-bottom: 10px;
|
|
24
23
|
|
|
25
|
-
.Timer-
|
|
26
|
-
|
|
27
|
-
margin: 0 0 5px;
|
|
28
|
-
font-weight: bold;
|
|
29
|
-
|
|
30
|
-
border-bottom: $Border;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.Timer-expired {
|
|
24
|
+
TimerItem, .Square, .Timer-item {
|
|
25
|
+
position: relative;
|
|
34
26
|
display: flex;
|
|
35
|
-
flex
|
|
36
|
-
|
|
37
|
-
color: $Fg-surface;
|
|
38
|
-
|
|
39
|
-
align-items: center;
|
|
40
|
-
justify-content: center;
|
|
27
|
+
//flex: 1 0 auto;
|
|
28
|
+
flex: auto;
|
|
41
29
|
}
|
|
42
30
|
|
|
43
|
-
.
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
31
|
+
TimerDivider, .Timer-divider {
|
|
32
|
+
position: relative;
|
|
33
|
+
display: flex;
|
|
34
|
+
//flex: 1 0 auto;
|
|
47
35
|
|
|
48
|
-
|
|
49
|
-
}
|
|
36
|
+
width: 10%;
|
|
50
37
|
|
|
51
|
-
.Timer-divider:not(.Timer-canvas .Timer-divider) {
|
|
52
38
|
margin-top: auto;
|
|
53
39
|
margin-bottom: auto;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.Timer-divider {
|
|
57
|
-
position: relative;
|
|
58
|
-
width: 8%;
|
|
59
|
-
margin: 2px -2px;
|
|
60
|
-
|
|
61
|
-
span, div {
|
|
62
|
-
position: absolute;
|
|
63
|
-
display: flex;
|
|
64
|
-
align-items: center;
|
|
65
|
-
justify-content: center;
|
|
66
|
-
left: 0;
|
|
67
|
-
right: 0;
|
|
68
|
-
bottom: 0;
|
|
69
|
-
top: 0;
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
}
|
|
73
40
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
svg {
|
|
78
|
-
.circle {
|
|
79
|
-
&:first-of-type {
|
|
80
|
-
stroke-dasharray: none !important;
|
|
81
|
-
}
|
|
41
|
+
@media (max-width: 767px) {
|
|
42
|
+
width: 20%;
|
|
82
43
|
}
|
|
83
44
|
}
|
|
84
|
-
|
|
85
45
|
}
|