jekyll-theme-saifas-it 0.1.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.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +3 -0
- data/_config.yml +17 -0
- data/_includes/assets/head.html +17 -0
- data/_includes/assets/libs/highchart.html +4 -0
- data/_includes/assets/libs/lightgallery.html +7 -0
- data/_includes/items/card-activities.html +9 -0
- data/_includes/items/card.html +35 -0
- data/_includes/items/circle-chart.html +3 -0
- data/_includes/items/circles.html +9 -0
- data/_includes/items/contact-link-container.html +8 -0
- data/_includes/items/news-thumbnail.html +21 -0
- data/_includes/page/footer/contact-us-modal.html +79 -0
- data/_includes/page/footer/index.html +21 -0
- data/_includes/page/header/index.html +9 -0
- data/_includes/page/header/logo.html +8 -0
- data/_includes/page/header/navigation.html +5 -0
- data/_includes/page/other/headline.html +3 -0
- data/_includes/page/other/section.html +6 -0
- data/_includes/pages/details.html +56 -0
- data/_includes/plugins/breadcrumbs.html +6 -0
- data/_includes/plugins/iframe.html +1 -0
- data/_includes/plugins/preloader.html +6 -0
- data/_layouts/default.html +26 -0
- data/_layouts/error-404.html +24 -0
- data/_sass/_base.sass +28 -0
- data/_sass/_layout.sass +107 -0
- data/_sass/_variables.sass +28 -0
- data/_sass/buttons.sass +52 -0
- data/_sass/initialize.sass +17 -0
- data/_sass/items/card/styles.sass +97 -0
- data/_sass/items/card-activities/styles.sass +50 -0
- data/_sass/items/circle-chart/styles.sass +6 -0
- data/_sass/items/circles/styles.sass +79 -0
- data/_sass/items/contact-link-container/styles.sass +16 -0
- data/_sass/items/contact-us-modal/styles.sass +122 -0
- data/_sass/items/headline/styles.sass +8 -0
- data/_sass/items/page-section/styles.sass +11 -0
- data/_sass/media-requests.sass +45 -0
- data/_sass/pages/details/index.sass +60 -0
- data/_sass/preloader.sass +57 -0
- data/assets/graphics/fonts/readme.md +0 -0
- data/assets/graphics/images/content/empty/empty-image-224px-224px.png +0 -0
- data/assets/graphics/images/content/empty/empty-showcase-sample-report/empty-image-500px-400px.jpg +0 -0
- data/assets/graphics/images/content/powerbi-icon-960px-1280px.png +0 -0
- data/assets/graphics/images/content/powerbi-icon-report-theme-white-black-900px-900px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-calendar-120px-120px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-legend-120px-120px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-map-120px-120px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-project-120px-120px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-custom-visuals/saifas-bi-pbi-cv-table-120px-120px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-company-employees-300px-300px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-legend-for-heatmap-300px-300px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-personal-schedule-300px-300px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-project-road-300px-300px.png +0 -0
- data/assets/graphics/images/content/saifas-bi-powerbi-reports/saifas-bi-pbi-report-world-population-300px-300px.png +0 -0
- data/assets/graphics/images/domain/saifas-bi/backgrounds/about.md +0 -0
- data/assets/graphics/images/domain/saifas-bi/icons/button-icons/about.md +0 -0
- data/assets/graphics/images/domain/saifas-bi/icons/fav-icons/saifas-brand-logo-star-theme-blue-black-256px-256px.ico +0 -0
- data/assets/graphics/images/domain/saifas-bi/icons/launch-shortcut-icons/about.md +0 -0
- data/assets/graphics/images/domain/saifas-bi/logos/saifas-brand-logo-star-theme-blue-black-276px-269px.png +0 -0
- data/assets/graphics/images/readme.md +0 -0
- data/assets/sass/readme.md +0 -0
- data/assets/sass/styles.sass +4 -0
- data/assets/scripts/highchart.js +104 -0
- data/assets/scripts/index.js +50 -0
- data/assets/scripts/lightgallery.js +3 -0
- data/assets/scripts/readme.md +0 -0
- metadata +125 -0
data/_sass/buttons.sass
ADDED
@@ -0,0 +1,52 @@
|
|
1
|
+
/*Buttons*/
|
2
|
+
.btn
|
3
|
+
-webkit-appearance: none
|
4
|
+
-moz-appearance: none
|
5
|
+
appearance: none
|
6
|
+
display: flex
|
7
|
+
align-items: center
|
8
|
+
justify-content: center
|
9
|
+
font-size: 18px
|
10
|
+
background-color: #F0F0F0
|
11
|
+
padding: 0 18px
|
12
|
+
margin: 0 18px 4px 0
|
13
|
+
width: fit-content
|
14
|
+
text-decoration: none
|
15
|
+
font-family: var(--main-font-family)
|
16
|
+
height: 40px
|
17
|
+
color: var(--font-color)
|
18
|
+
box-shadow: var(--box-shadow-btn)
|
19
|
+
-webkit-border-radius: 3px
|
20
|
+
border-radius: 3px
|
21
|
+
border: 0
|
22
|
+
-webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
23
|
+
-moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
24
|
+
-o-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
25
|
+
-ms-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -ms-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
26
|
+
transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
27
|
+
-webkit-transition-delay: 0s
|
28
|
+
-moz-transition-delay: 0s
|
29
|
+
-o-transition-delay: 0s
|
30
|
+
-ms-transition-delay: 0s
|
31
|
+
transition-delay: 0s
|
32
|
+
-webkit-transform: translateY(0px)
|
33
|
+
-moz-transform: translateY(0px)
|
34
|
+
-o-transform: translateY(0px)
|
35
|
+
-ms-transform: translateY(0px)
|
36
|
+
transform: translateY(0px)
|
37
|
+
cursor: pointer
|
38
|
+
&:visited
|
39
|
+
color: var(--font-color)
|
40
|
+
&:hover
|
41
|
+
-webkit-box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2)
|
42
|
+
box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2)
|
43
|
+
background: rgba(200,200,200,0.2)
|
44
|
+
-webkit-transform: translateY(-1px)
|
45
|
+
-moz-transform: translateY(-1px)
|
46
|
+
-o-transform: translateY(-1px)
|
47
|
+
-ms-transform: translateY(-1px)
|
48
|
+
transform: translateY(-1px)
|
49
|
+
&.btn--purchase
|
50
|
+
background-color: #55d96b
|
51
|
+
&:hover
|
52
|
+
background-color: #55d96b
|
@@ -0,0 +1,17 @@
|
|
1
|
+
@import "_base"
|
2
|
+
@import "_variables"
|
3
|
+
@import "_layout"
|
4
|
+
@import "preloader"
|
5
|
+
@import "buttons"
|
6
|
+
@import "media-requests"
|
7
|
+
|
8
|
+
@import "items/contact-us-modal/styles.sass"
|
9
|
+
@import "items/headline/styles.sass"
|
10
|
+
@import "items/card/styles.sass"
|
11
|
+
@import "items/card-activities/styles.sass"
|
12
|
+
@import "items/contact-link-container/styles.sass"
|
13
|
+
@import "items/circles/styles.sass"
|
14
|
+
@import "items/page-section/styles.sass"
|
15
|
+
@import "items/circle-chart/styles.sass"
|
16
|
+
|
17
|
+
@import "pages/details/index.sass"
|
@@ -0,0 +1,97 @@
|
|
1
|
+
.card
|
2
|
+
display: flex
|
3
|
+
flex-direction: column
|
4
|
+
background-color: var(--color-grey)
|
5
|
+
width: 300px
|
6
|
+
height: 300px
|
7
|
+
margin: 10px
|
8
|
+
padding: 20px
|
9
|
+
border-radius: 5px
|
10
|
+
-webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
11
|
+
-moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
12
|
+
-o-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
13
|
+
-ms-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -ms-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
14
|
+
transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
15
|
+
-webkit-transition-delay: 0s
|
16
|
+
-moz-transition-delay: 0s
|
17
|
+
-o-transition-delay: 0s
|
18
|
+
-ms-transition-delay: 0s
|
19
|
+
transition-delay: 0s
|
20
|
+
-webkit-transform: translateY(0px)
|
21
|
+
-moz-transform: translateY(0px)
|
22
|
+
-o-transform: translateY(0px)
|
23
|
+
-ms-transform: translateY(0px)
|
24
|
+
transform: translateY(0px)
|
25
|
+
cursor: pointer
|
26
|
+
&:hover
|
27
|
+
-webkit-box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2)
|
28
|
+
box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2)
|
29
|
+
background: rgba(200,200,200,0.2)
|
30
|
+
-webkit-transform: translateY(-1px)
|
31
|
+
-moz-transform: translateY(-1px)
|
32
|
+
-o-transform: translateY(-1px)
|
33
|
+
-ms-transform: translateY(-1px)
|
34
|
+
transform: translateY(-1px)
|
35
|
+
.card__top-section
|
36
|
+
display: flex
|
37
|
+
.top-section__icon
|
38
|
+
img
|
39
|
+
height: 64px
|
40
|
+
width: 64px
|
41
|
+
border-radius: 10px
|
42
|
+
.top-section__title
|
43
|
+
display: flex
|
44
|
+
flex-direction: column
|
45
|
+
padding-left: 10px
|
46
|
+
font-family: var(--main-font-family)
|
47
|
+
font-size: 20px
|
48
|
+
color: var(--text-color)
|
49
|
+
width: 100%
|
50
|
+
.top-section__description
|
51
|
+
font-size: 14px
|
52
|
+
font-weight: 400
|
53
|
+
margin-top: 6px
|
54
|
+
img
|
55
|
+
width: 14px
|
56
|
+
height: 14px
|
57
|
+
|
58
|
+
.card__main-section
|
59
|
+
display: flex
|
60
|
+
flex-direction: column
|
61
|
+
margin-top: 10px
|
62
|
+
|
63
|
+
.main-section__description
|
64
|
+
font-size: 16px
|
65
|
+
color: var(--text-color)
|
66
|
+
|
67
|
+
.card__buttons-section
|
68
|
+
display: none
|
69
|
+
height: 100%
|
70
|
+
align-items: flex-end
|
71
|
+
|
72
|
+
.card__buttons-section--report
|
73
|
+
display: none
|
74
|
+
height: 100%
|
75
|
+
align-items: center
|
76
|
+
flex-direction: column
|
77
|
+
justify-content: flex-end
|
78
|
+
.buttons-section__top
|
79
|
+
width: 100%
|
80
|
+
a
|
81
|
+
margin: 0 5px
|
82
|
+
width: auto
|
83
|
+
padding: 0
|
84
|
+
.buttons-section__bottom
|
85
|
+
margin-top: 10px
|
86
|
+
width: 100%
|
87
|
+
display: flex
|
88
|
+
a
|
89
|
+
margin: 0
|
90
|
+
width: 100%
|
91
|
+
margin: 0 5px
|
92
|
+
|
93
|
+
.card:hover
|
94
|
+
.card__buttons-section
|
95
|
+
display: flex
|
96
|
+
.card__buttons-section--report
|
97
|
+
display: flex
|
@@ -0,0 +1,50 @@
|
|
1
|
+
.card-activities
|
2
|
+
background: var(--color-grey)
|
3
|
+
height: 240px
|
4
|
+
width: 320px
|
5
|
+
border-radius: 5px
|
6
|
+
margin: 10px
|
7
|
+
display: flex
|
8
|
+
padding-top: 20px
|
9
|
+
flex-direction: column
|
10
|
+
color: var(--text-color)
|
11
|
+
font-size: 20px
|
12
|
+
font-family: var(--main-font-family)
|
13
|
+
text-decoration: none
|
14
|
+
text-align: center
|
15
|
+
-webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
16
|
+
-moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
17
|
+
-o-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
18
|
+
-ms-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -ms-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
19
|
+
transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
20
|
+
-webkit-transition-delay: 0s
|
21
|
+
-moz-transition-delay: 0s
|
22
|
+
-o-transition-delay: 0s
|
23
|
+
-ms-transition-delay: 0s
|
24
|
+
transition-delay: 0s
|
25
|
+
-webkit-transform: translateY(0px)
|
26
|
+
-moz-transform: translateY(0px)
|
27
|
+
-o-transform: translateY(0px)
|
28
|
+
-ms-transform: translateY(0px)
|
29
|
+
transform: translateY(0px)
|
30
|
+
cursor: pointer
|
31
|
+
&:hover
|
32
|
+
-webkit-box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2)
|
33
|
+
box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2)
|
34
|
+
background: rgba(200,200,200,0.2)
|
35
|
+
-webkit-transform: translateY(-1px)
|
36
|
+
-moz-transform: translateY(-1px)
|
37
|
+
-o-transform: translateY(-1px)
|
38
|
+
-ms-transform: translateY(-1px)
|
39
|
+
transform: translateY(-1px)
|
40
|
+
i
|
41
|
+
margin-top: 20px
|
42
|
+
|
43
|
+
.card-activities__tags
|
44
|
+
font-family: var(--main-font-family)
|
45
|
+
font-size: 16px
|
46
|
+
color: var(--text-color)
|
47
|
+
margin-top: 30px
|
48
|
+
display: flex
|
49
|
+
padding-left: 20px
|
50
|
+
justify-content: flex-start
|
@@ -0,0 +1,79 @@
|
|
1
|
+
.circle-container
|
2
|
+
width: 100%
|
3
|
+
height: 100%
|
4
|
+
display: flex
|
5
|
+
align-items: center
|
6
|
+
justify-content: center
|
7
|
+
flex-direction: column
|
8
|
+
a
|
9
|
+
margin-top: 20px
|
10
|
+
|
11
|
+
.circle
|
12
|
+
margin: 10px
|
13
|
+
display: flex
|
14
|
+
align-items: center
|
15
|
+
justify-content: center
|
16
|
+
max-width: 300px
|
17
|
+
width: 300px
|
18
|
+
max-height: 300px
|
19
|
+
height: 300px
|
20
|
+
border-radius: 50%
|
21
|
+
-webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
22
|
+
-moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
23
|
+
-o-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
24
|
+
-ms-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -ms-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
25
|
+
transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
26
|
+
-webkit-transition-delay: 0s
|
27
|
+
-moz-transition-delay: 0s
|
28
|
+
-o-transition-delay: 0s
|
29
|
+
-ms-transition-delay: 0s
|
30
|
+
transition-delay: 0s
|
31
|
+
-webkit-transform: translateY(0px)
|
32
|
+
-moz-transform: translateY(0px)
|
33
|
+
-o-transform: translateY(0px)
|
34
|
+
-ms-transform: translateY(0px)
|
35
|
+
transform: translateY(0px)
|
36
|
+
cursor: pointer
|
37
|
+
background: var(--color-grey)
|
38
|
+
color: var(--text-color)
|
39
|
+
font-size: 20px
|
40
|
+
text-decoration: none
|
41
|
+
z-index: 2
|
42
|
+
&:visited
|
43
|
+
color: var(--text-color)
|
44
|
+
&:hover
|
45
|
+
-webkit-box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2)
|
46
|
+
box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2)
|
47
|
+
background: rgba(200,200,200,0.2)
|
48
|
+
-webkit-transform: translateY(-1px)
|
49
|
+
-moz-transform: translateY(-1px)
|
50
|
+
-o-transform: translateY(-1px)
|
51
|
+
-ms-transform: translateY(-1px)
|
52
|
+
transform: translateY(-1px)
|
53
|
+
.center-circles-btn
|
54
|
+
background: radial-gradient(circle at 0 100%, rgba(0,0,0,0) 150px, #e3e3e3 10px), radial-gradient(circle at 100% 100%, rgba(0,0,0,0) 150px, #e3e3e3 10px), radial-gradient(circle at 100% 0, rgba(0,0,0,0) 150px, #e3e3e3 10px), radial-gradient(circle at 0 0, rgba(0,0,0,0) 150px, #e3e3e3 10px)
|
55
|
+
background-position: bottom left, bottom right, top right, top left
|
56
|
+
background-size: 50% 50%
|
57
|
+
background-repeat: no-repeat
|
58
|
+
font-size: 16px
|
59
|
+
line-height: 22px
|
60
|
+
text-align: center
|
61
|
+
display: flex
|
62
|
+
height: 300px
|
63
|
+
width: 300px
|
64
|
+
align-items: center
|
65
|
+
justify-content: center
|
66
|
+
position: absolute
|
67
|
+
top: 25%
|
68
|
+
color: var(--text-color)
|
69
|
+
text-decoration: none
|
70
|
+
font-size: 20px
|
71
|
+
line-height: 26px
|
72
|
+
cursor: pointer
|
73
|
+
transition: background .3s
|
74
|
+
&:hover
|
75
|
+
background: radial-gradient(circle at 0 100%, rgba(0,0,0,0) 150px, #f0f0f0 10px), radial-gradient(circle at 100% 100%, rgba(0,0,0,0) 150px, #f0f0f0 10px), radial-gradient(circle at 100% 0, rgba(0,0,0,0) 150px, #f0f0f0 10px), radial-gradient(circle at 0 0, rgba(0,0,0,0) 150px, #f0f0f0 10px)
|
76
|
+
background-position: bottom left, bottom right, top right, top left
|
77
|
+
background-size: 50% 50%
|
78
|
+
background-repeat: no-repeat
|
79
|
+
transition: background .3s
|
@@ -0,0 +1,16 @@
|
|
1
|
+
.body-separator
|
2
|
+
height: 2px
|
3
|
+
background-color: var(--color-grey)
|
4
|
+
margin: 20px
|
5
|
+
|
6
|
+
.contact-link-container
|
7
|
+
display: flex
|
8
|
+
align-items: center
|
9
|
+
justify-content: center
|
10
|
+
border: 2px solid var(--color-grey)
|
11
|
+
height: 64px
|
12
|
+
border-radius: 5px
|
13
|
+
|
14
|
+
.contact-link-container__link
|
15
|
+
font-style: normal
|
16
|
+
margin: 0 20px
|
@@ -0,0 +1,122 @@
|
|
1
|
+
#modal
|
2
|
+
display: none
|
3
|
+
position: fixed
|
4
|
+
top: 0
|
5
|
+
height: 100%
|
6
|
+
width: 100%
|
7
|
+
background-color: black
|
8
|
+
opacity: 0.4
|
9
|
+
z-index: 10
|
10
|
+
|
11
|
+
.modalBody
|
12
|
+
font-family: var(--main-font-family)
|
13
|
+
color: var(--text-color)
|
14
|
+
position: fixed
|
15
|
+
display: none
|
16
|
+
top: 10%
|
17
|
+
width: 100%
|
18
|
+
max-width: 600px
|
19
|
+
max-height: 700px
|
20
|
+
left: 50%
|
21
|
+
transform: translate(-50%, 0)
|
22
|
+
padding: 0 20px 20px 20px
|
23
|
+
background-color: #fff
|
24
|
+
border-radius: 5px
|
25
|
+
overflow: auto
|
26
|
+
z-index: 11
|
27
|
+
|
28
|
+
.modal-close
|
29
|
+
cursor: pointer
|
30
|
+
position: absolute
|
31
|
+
right: 10px
|
32
|
+
top: 10px
|
33
|
+
-webkit-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
34
|
+
-moz-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -moz-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
35
|
+
-o-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -o-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
36
|
+
-ms-transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), -ms-transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
37
|
+
transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
38
|
+
-webkit-transition-delay: 0s
|
39
|
+
-moz-transition-delay: 0s
|
40
|
+
-o-transition-delay: 0s
|
41
|
+
-ms-transition-delay: 0s
|
42
|
+
transition-delay: 0s
|
43
|
+
-webkit-transform: translateY(0px)
|
44
|
+
-moz-transform: translateY(0px)
|
45
|
+
-o-transform: translateY(0px)
|
46
|
+
-ms-transform: translateY(0px)
|
47
|
+
transform: translateY(0px)
|
48
|
+
cursor: pointer
|
49
|
+
&:hover
|
50
|
+
-webkit-box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2)
|
51
|
+
box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2)
|
52
|
+
background: rgba(200,200,200,0.2)
|
53
|
+
-webkit-transform: translateY(-1px)
|
54
|
+
-moz-transform: translateY(-1px)
|
55
|
+
-o-transform: translateY(-1px)
|
56
|
+
-ms-transform: translateY(-1px)
|
57
|
+
transform: translateY(-1px)
|
58
|
+
|
59
|
+
.modal-headline
|
60
|
+
font-size: 22px !important
|
61
|
+
|
62
|
+
/*Form styles*/
|
63
|
+
|
64
|
+
.contact-form
|
65
|
+
display: flex
|
66
|
+
flex-direction: column
|
67
|
+
justify-content: center
|
68
|
+
align-items: center
|
69
|
+
|
70
|
+
|
71
|
+
.form-elem__container
|
72
|
+
width: 100%
|
73
|
+
display: flex
|
74
|
+
flex-direction: column
|
75
|
+
overflow: auto
|
76
|
+
margin: 0 0 20px 0
|
77
|
+
|
78
|
+
|
79
|
+
.form-elem
|
80
|
+
display: flex
|
81
|
+
flex-direction: column
|
82
|
+
margin: 5px
|
83
|
+
input, textarea, select
|
84
|
+
height: 36px
|
85
|
+
border-radius: 5px
|
86
|
+
border: 2px solid #f0f0f0
|
87
|
+
background: transparent
|
88
|
+
color: var(--text-color)
|
89
|
+
font-family: var(--main-font-family)
|
90
|
+
font-size: 16px
|
91
|
+
padding: 0 10px
|
92
|
+
textarea
|
93
|
+
padding: 10px
|
94
|
+
min-height: 100px
|
95
|
+
input:active
|
96
|
+
border: 2px solid var(--text-color)
|
97
|
+
label
|
98
|
+
font-weight: 600
|
99
|
+
margin-bottom: 3px
|
100
|
+
|
101
|
+
.three-form-elements
|
102
|
+
display: grid
|
103
|
+
grid-template-columns: 33.3% 33.3% 33.3%
|
104
|
+
.form-elem
|
105
|
+
display: flex
|
106
|
+
|
107
|
+
.two-form-elements
|
108
|
+
display: grid
|
109
|
+
grid-template-columns: 50% 50%
|
110
|
+
.form-elem
|
111
|
+
display: flex
|
112
|
+
|
113
|
+
.form-radio-buttons-container
|
114
|
+
display: flex
|
115
|
+
align-items: center
|
116
|
+
input
|
117
|
+
margin-right: 4px
|
118
|
+
.radio-button-text
|
119
|
+
margin-right: 10px
|
120
|
+
|
121
|
+
.form-current-page
|
122
|
+
display: none
|
@@ -0,0 +1,45 @@
|
|
1
|
+
/*Media requests*/
|
2
|
+
@media (max-width: 560px)
|
3
|
+
.details__top
|
4
|
+
flex-direction: column
|
5
|
+
|
6
|
+
.details__top-buttons
|
7
|
+
margin: 0
|
8
|
+
margin-top: 20px
|
9
|
+
|
10
|
+
.details__top-text
|
11
|
+
margin-left: 0
|
12
|
+
|
13
|
+
@media (max-width: 1069px)
|
14
|
+
#lightgallery
|
15
|
+
a
|
16
|
+
img
|
17
|
+
width: 100%
|
18
|
+
height: auto
|
19
|
+
|
20
|
+
@media (max-width: 600px)
|
21
|
+
.header-navbar
|
22
|
+
display: none
|
23
|
+
|
24
|
+
@media (max-width: 680px)
|
25
|
+
.circle-container
|
26
|
+
max-width: 500px
|
27
|
+
|
28
|
+
.circle
|
29
|
+
width: 200px
|
30
|
+
height: 200px
|
31
|
+
font-size: 15px
|
32
|
+
|
33
|
+
.center-circles-btn
|
34
|
+
transform: scale(0.7)
|
35
|
+
top: 15.5%
|
36
|
+
|
37
|
+
@media (max-width: 460px)
|
38
|
+
.center-circles-btn
|
39
|
+
transform: scale(0.5)
|
40
|
+
top: 5.5%
|
41
|
+
|
42
|
+
.circle
|
43
|
+
width: 150px
|
44
|
+
height: 150px
|
45
|
+
font-size: 12px
|
@@ -0,0 +1,60 @@
|
|
1
|
+
.details__top
|
2
|
+
margin: 20px 20px 0 20px
|
3
|
+
display: flex
|
4
|
+
background-color: var(--color-grey)
|
5
|
+
padding: 20px
|
6
|
+
.details__top-image
|
7
|
+
img
|
8
|
+
width: 150px
|
9
|
+
height: auto
|
10
|
+
.details__top-text
|
11
|
+
margin-left: 20px
|
12
|
+
a
|
13
|
+
margin-top: 20px
|
14
|
+
.details__top-title
|
15
|
+
color: var(--text-color)
|
16
|
+
font-size: var(--font-size-title)
|
17
|
+
.details__top-description
|
18
|
+
color: var(--text-color)
|
19
|
+
font-size: var(--font-size-description)
|
20
|
+
margin-top: 10px
|
21
|
+
img
|
22
|
+
height: 14px
|
23
|
+
width: 14px
|
24
|
+
.details__top-cost
|
25
|
+
margin: 10px 0
|
26
|
+
display: flex
|
27
|
+
flex-direction: row
|
28
|
+
font-size: 16px
|
29
|
+
font-family: var(--main-font-family)
|
30
|
+
color: var(--text-color)
|
31
|
+
.cost
|
32
|
+
margin-left: 4px
|
33
|
+
font-weight: 700
|
34
|
+
.get-it-now-button
|
35
|
+
background-color: #0271b6
|
36
|
+
color: white
|
37
|
+
&:hover
|
38
|
+
background-color: #0271b6
|
39
|
+
.details__top-buttons
|
40
|
+
margin-left: 20px
|
41
|
+
.btn
|
42
|
+
margin-bottom: 15px
|
43
|
+
.details-bottom__description
|
44
|
+
margin: 20px
|
45
|
+
display: flex
|
46
|
+
flex-direction: column
|
47
|
+
font-family: var(--main-font-family)
|
48
|
+
color: var(--text-color)
|
49
|
+
ul
|
50
|
+
padding-left: 20px
|
51
|
+
.description__title
|
52
|
+
font-size: 18px
|
53
|
+
font-weight: 600
|
54
|
+
margin-bottom: 20px
|
55
|
+
&:not(:first-child)
|
56
|
+
margin-top: 20px
|
57
|
+
.details-bottom__description-text
|
58
|
+
font-size: 16px
|
59
|
+
font-weight: 400
|
60
|
+
margin-top: 10px
|
@@ -0,0 +1,57 @@
|
|
1
|
+
.preloader
|
2
|
+
/*фиксированное позиционирование*/
|
3
|
+
position: fixed
|
4
|
+
/* координаты положения */
|
5
|
+
left: 0
|
6
|
+
top: 0
|
7
|
+
right: 0
|
8
|
+
bottom: 0
|
9
|
+
/* фоновый цвет элемента */
|
10
|
+
background: #e0e0e0
|
11
|
+
/* размещаем блок над всеми элементами на странице (это значение должно быть больше, чем у любого другого позиционированного элемента на странице) */
|
12
|
+
z-index: 1001
|
13
|
+
|
14
|
+
.preloader__row
|
15
|
+
position: relative
|
16
|
+
top: 50%
|
17
|
+
left: 50%
|
18
|
+
width: 70px
|
19
|
+
height: 70px
|
20
|
+
margin-top: -35px
|
21
|
+
margin-left: -35px
|
22
|
+
text-align: center
|
23
|
+
animation: preloader-rotate 2s infinite linear
|
24
|
+
|
25
|
+
.preloader__item
|
26
|
+
position: absolute
|
27
|
+
display: inline-block
|
28
|
+
top: 0
|
29
|
+
background-color: #337ab7
|
30
|
+
border-radius: 100%
|
31
|
+
width: 35px
|
32
|
+
height: 35px
|
33
|
+
animation: preloader-bounce 2s infinite ease-in-out
|
34
|
+
&:last-child
|
35
|
+
top: auto
|
36
|
+
bottom: 0
|
37
|
+
animation-delay: -1s
|
38
|
+
|
39
|
+
@keyframes preloader-rotate
|
40
|
+
100%
|
41
|
+
transform: rotate(360deg)
|
42
|
+
|
43
|
+
@keyframes preloader-bounce
|
44
|
+
0%,
|
45
|
+
100%
|
46
|
+
transform: scale(0)
|
47
|
+
50%
|
48
|
+
transform: scale(1)
|
49
|
+
|
50
|
+
.loaded_hiding
|
51
|
+
.preloader
|
52
|
+
transition: 0.3s opacity
|
53
|
+
opacity: 0
|
54
|
+
|
55
|
+
.loaded
|
56
|
+
.preloader
|
57
|
+
display: none
|
File without changes
|
Binary file
|
data/assets/graphics/images/content/empty/empty-showcase-sample-report/empty-image-500px-400px.jpg
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
File without changes
|
File without changes
|
Binary file
|
File without changes
|
Binary file
|
File without changes
|
File without changes
|