first commit - report data
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
.activities {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
.activity {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
position: relative;
|
||||
&:before {
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
left: 25px;
|
||||
top: 0;
|
||||
width: 2px;
|
||||
height: 100%;
|
||||
background-color: color(primary);
|
||||
}
|
||||
&:last-child {
|
||||
&:before {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
.activity-icon {
|
||||
@include box();
|
||||
margin-right: 20px;
|
||||
border-radius: 50%;
|
||||
flex-shrink: 0;
|
||||
text-align: center;
|
||||
z-index: 1;
|
||||
}
|
||||
.activity-detail {
|
||||
@include card_base;
|
||||
position: relative;
|
||||
padding: 15px;
|
||||
&:before {
|
||||
content: '\f0d9';
|
||||
font-family: 'Font Awesome 5 Free';
|
||||
font-weight: 900;
|
||||
font-size: 20px;
|
||||
position: absolute;
|
||||
left: -8px;
|
||||
color: #fff;
|
||||
}
|
||||
h4 {
|
||||
font-size: 18px;
|
||||
color: color(dark);
|
||||
}
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,159 @@
|
||||
.article {
|
||||
@include shadow;
|
||||
@include card-base;
|
||||
.article-header {
|
||||
height: 170px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
.article-image {
|
||||
background-color: #fbfbfb;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
||||
.article-title {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.01) 1%, rgba(0, 0, 0, 0.65) 98%, rgba(0, 0, 0, 0.65) 100%);
|
||||
padding: 10px;
|
||||
h2 {
|
||||
font-size: 16px;
|
||||
line-height: 24px;
|
||||
a {
|
||||
font-weight: 700;
|
||||
text-decoration: none;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.article-details {
|
||||
background-color: #fff;
|
||||
padding: 20px;
|
||||
line-height: 24px;
|
||||
.article-cta {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.article-header .article-badge {
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
left: 10px;
|
||||
.article-badge-item {
|
||||
padding: 7px 15px;
|
||||
font-weight: 600;
|
||||
color: #fff;
|
||||
border-radius: 30px;
|
||||
font-size: 12px;
|
||||
.ion, .fas, .far, .fab, .fal {
|
||||
margin-right: 3px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.article-style-b .article-details {
|
||||
.article-title {
|
||||
margin-bottom: 10px;
|
||||
h2 {
|
||||
line-height: 22px;
|
||||
}
|
||||
a {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
p {
|
||||
color: color(fontdark);
|
||||
}
|
||||
.article-cta {
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
&.article-style-c {
|
||||
.article-header {
|
||||
height: 233px;
|
||||
}
|
||||
.article-details {
|
||||
.article-category {
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 5px;
|
||||
letter-spacing: 1px;
|
||||
color: color(fontdark);
|
||||
a {
|
||||
font-size: 10px;
|
||||
color: color(fontdark);
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
.article-title {
|
||||
margin-bottom: 10px;
|
||||
h2 {
|
||||
line-height: 22px;
|
||||
}
|
||||
a {
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
p {
|
||||
color: color(fontdark);
|
||||
}
|
||||
}
|
||||
.article-user {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
margin-top: 20px;
|
||||
img {
|
||||
border-radius: 50%;
|
||||
float: left;
|
||||
width: 45px;
|
||||
margin-right: 15px;
|
||||
}
|
||||
.user-detail-name {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
a {
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(xs) {
|
||||
.article {
|
||||
.article-style-c {
|
||||
.article-header {
|
||||
height: 225px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-only(md) {
|
||||
.article {
|
||||
margin-bottom: 40px;
|
||||
.article-header {
|
||||
height: 195px !important;
|
||||
}
|
||||
&.article-style-c .article-header {
|
||||
height: 155px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 1024px) {
|
||||
.article {
|
||||
&.article-style-c .article-header {
|
||||
height: 216px;
|
||||
}
|
||||
.article-header {
|
||||
height: 155px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
.author-box {
|
||||
.author-box-left {
|
||||
float: left;
|
||||
text-align: center;
|
||||
padding-left: 5px;
|
||||
.btn {
|
||||
padding: 5px 15px;
|
||||
font-size: 12px;
|
||||
border-radius: 30px;
|
||||
}
|
||||
}
|
||||
.author-box-picture {
|
||||
width: 100px;
|
||||
@include shadow;
|
||||
}
|
||||
.author-box-details {
|
||||
margin-left: 135px;
|
||||
}
|
||||
.author-box-name {
|
||||
font-size: 18px;
|
||||
a {
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
.author-box-job {
|
||||
font-weight: 600;
|
||||
letter-spacing: .5px;
|
||||
font-size: 12px;
|
||||
color: color(fontdark);
|
||||
}
|
||||
.author-box-description {
|
||||
line-height: 26px;
|
||||
margin-top: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(xs) {
|
||||
.author-box {
|
||||
.author-box-left {
|
||||
float: none;
|
||||
}
|
||||
.author-box-details {
|
||||
margin-left: 0;
|
||||
margin-top: 15px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
/**
|
||||
* Thanks to Spectre.css
|
||||
*/
|
||||
|
||||
.avatar {
|
||||
background: color(primary);
|
||||
border-radius: 50%;
|
||||
color: color(light);
|
||||
display: inline-block;
|
||||
font-size: 16px;
|
||||
font-weight: 300;
|
||||
margin: 0;
|
||||
position: relative;
|
||||
vertical-align: middle;
|
||||
line-height: 1.28;
|
||||
height: 45px;
|
||||
width: 45px;
|
||||
&.avatar-xs {
|
||||
font-size: 6px;
|
||||
height: 15px;
|
||||
width: 15px;
|
||||
}
|
||||
&.avatar-sm {
|
||||
font-size: 12px;
|
||||
height: 30px;
|
||||
width: 30px;
|
||||
}
|
||||
&.avatar-lg {
|
||||
font-size: 23px;
|
||||
height: 60px;
|
||||
width: 60px;
|
||||
}
|
||||
&.avatar-xl {
|
||||
font-size: 30px;
|
||||
height: 75px;
|
||||
width: 75px;
|
||||
}
|
||||
img {
|
||||
border-radius: 50%;
|
||||
height: 100%;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
}
|
||||
.avatar-icon {
|
||||
background: #fff;
|
||||
bottom: 14.64%;
|
||||
height: 50%;
|
||||
padding: .1rem;
|
||||
position: absolute;
|
||||
right: 14.64%;
|
||||
transform: translate(50%, 50%);
|
||||
width: 50%;
|
||||
z-index: 2;
|
||||
}
|
||||
.avatar-presence {
|
||||
background: #fff;
|
||||
bottom: 14.64%;
|
||||
height: 50%;
|
||||
padding: .1rem;
|
||||
position: absolute;
|
||||
right: 14.64%;
|
||||
transform: translate(50%, 50%);
|
||||
width: 50%;
|
||||
z-index: 2;
|
||||
background: #bcc3ce;
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 0 0 .1rem #fff;
|
||||
height: .5em;
|
||||
width: .5em;
|
||||
&.online {
|
||||
background: color(success);
|
||||
}
|
||||
&.busy {
|
||||
background: color(danger);
|
||||
}
|
||||
&.away {
|
||||
background: color(warning);
|
||||
}
|
||||
}
|
||||
&[data-initial]::before {
|
||||
color: currentColor;
|
||||
content: attr(data-initial);
|
||||
left: 50%;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
.avatar-item {
|
||||
position: relative;
|
||||
margin-bottom: 20px;
|
||||
img {
|
||||
border-radius: 50%;
|
||||
}
|
||||
.avatar-badge {
|
||||
position: absolute;
|
||||
bottom: -5px;
|
||||
right: 0;
|
||||
background-color: #fff;
|
||||
color: #000;
|
||||
@include shadow;
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
line-height: 25px;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
}
|
||||
}
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,92 @@
|
||||
.chat-box {
|
||||
.chat-content {
|
||||
background-color: #f9f9f9 !important;
|
||||
height: 300px;
|
||||
overflow: hidden;
|
||||
padding-top: 25px !important;
|
||||
.chat-item {
|
||||
&.chat-right {
|
||||
img {
|
||||
float: right;
|
||||
}
|
||||
.chat-details {
|
||||
margin-left: 0;
|
||||
margin-right: 70px;
|
||||
text-align: right;
|
||||
.chat-text {
|
||||
text-align: left;
|
||||
background-color: color(primary);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
margin-bottom: 25px;
|
||||
> img {
|
||||
float: left;
|
||||
width: 50px;
|
||||
border-radius: 50%;
|
||||
}
|
||||
.chat-details {
|
||||
margin-left: 70px;
|
||||
.chat-text {
|
||||
@include shadow;
|
||||
background-color: #fff;
|
||||
padding: 10px 15px;
|
||||
border-radius: 3px;
|
||||
width: auto;
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
img {
|
||||
max-width: 100%;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.chat-typing .chat-details .chat-text {
|
||||
background-image: url('data:image/svg+xml;base64,PCEtLSBCeSBTYW0gSGVyYmVydCAoQHNoZXJiKSwgZm9yIGV2ZXJ5b25lLiBNb3JlIEAgaHR0cDovL2dvby5nbC83QUp6YkwgLS0+DQo8c3ZnIHdpZHRoPSIxMjAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAxMjAgMzAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0iIzk5OSI+DQogICAgPGNpcmNsZSBjeD0iMTUiIGN5PSIxNSIgcj0iMTUiPg0KICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJyIiBmcm9tPSIxNSIgdG89IjE1Ig0KICAgICAgICAgICAgICAgICBiZWdpbj0iMHMiIGR1cj0iMC44cyINCiAgICAgICAgICAgICAgICAgdmFsdWVzPSIxNTs5OzE1IiBjYWxjTW9kZT0ibGluZWFyIg0KICAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4NCiAgICAgICAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iZmlsbC1vcGFjaXR5IiBmcm9tPSIxIiB0bz0iMSINCiAgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjAuOHMiDQogICAgICAgICAgICAgICAgIHZhbHVlcz0iMTsuNTsxIiBjYWxjTW9kZT0ibGluZWFyIg0KICAgICAgICAgICAgICAgICByZXBlYXRDb3VudD0iaW5kZWZpbml0ZSIgLz4NCiAgICA8L2NpcmNsZT4NCiAgICA8Y2lyY2xlIGN4PSI2MCIgY3k9IjE1IiByPSI5IiBmaWxsLW9wYWNpdHk9IjAuMyI+DQogICAgICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9InIiIGZyb209IjkiIHRvPSI5Ig0KICAgICAgICAgICAgICAgICBiZWdpbj0iMHMiIGR1cj0iMC44cyINCiAgICAgICAgICAgICAgICAgdmFsdWVzPSI5OzE1OzkiIGNhbGNNb2RlPSJsaW5lYXIiDQogICAgICAgICAgICAgICAgIHJlcGVhdENvdW50PSJpbmRlZmluaXRlIiAvPg0KICAgICAgICA8YW5pbWF0ZSBhdHRyaWJ1dGVOYW1lPSJmaWxsLW9wYWNpdHkiIGZyb209IjAuNSIgdG89IjAuNSINCiAgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjAuOHMiDQogICAgICAgICAgICAgICAgIHZhbHVlcz0iLjU7MTsuNSIgY2FsY01vZGU9ImxpbmVhciINCiAgICAgICAgICAgICAgICAgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIC8+DQogICAgPC9jaXJjbGU+DQogICAgPGNpcmNsZSBjeD0iMTA1IiBjeT0iMTUiIHI9IjE1Ij4NCiAgICAgICAgPGFuaW1hdGUgYXR0cmlidXRlTmFtZT0iciIgZnJvbT0iMTUiIHRvPSIxNSINCiAgICAgICAgICAgICAgICAgYmVnaW49IjBzIiBkdXI9IjAuOHMiDQogICAgICAgICAgICAgICAgIHZhbHVlcz0iMTU7OTsxNSIgY2FsY01vZGU9ImxpbmVhciINCiAgICAgICAgICAgICAgICAgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIC8+DQogICAgICAgIDxhbmltYXRlIGF0dHJpYnV0ZU5hbWU9ImZpbGwtb3BhY2l0eSIgZnJvbT0iMSIgdG89IjEiDQogICAgICAgICAgICAgICAgIGJlZ2luPSIwcyIgZHVyPSIwLjhzIg0KICAgICAgICAgICAgICAgICB2YWx1ZXM9IjE7LjU7MSIgY2FsY01vZGU9ImxpbmVhciINCiAgICAgICAgICAgICAgICAgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiIC8+DQogICAgPC9jaXJjbGU+DQo8L3N2Zz4NCg==');
|
||||
height: 40px;
|
||||
width: 60px;
|
||||
background-position: center;
|
||||
background-size: 60%;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
.chat-details .chat-time {
|
||||
margin-top: 5px;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
opacity: .6;
|
||||
}
|
||||
}
|
||||
}
|
||||
.chat-form {
|
||||
padding: 0;
|
||||
position: relative;
|
||||
.form-control {
|
||||
border: none;
|
||||
padding: 15px;
|
||||
height: 50px;
|
||||
padding-right: 70px;
|
||||
font-size: 13px;
|
||||
font-weight: 500;
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
}
|
||||
.btn {
|
||||
padding: 0;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
border-radius: 50%;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
right: -5px;
|
||||
-webkit-transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, -50%);
|
||||
@include shadow;
|
||||
i {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
.chocolat-wrapper {
|
||||
z-index: 890;
|
||||
}
|
||||
|
||||
.chocolat-overlay {
|
||||
background-color: #000;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
[data-tab-group] {
|
||||
display: none;
|
||||
&.active {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
table.dataTable {
|
||||
border-collapse: collapse !important;
|
||||
thead {
|
||||
th, td {
|
||||
border-bottom: 1px solid #ddd !important;
|
||||
}
|
||||
}
|
||||
&.no-footer {
|
||||
border-bottom: 1px solid #ddd !important;
|
||||
}
|
||||
}
|
||||
|
||||
.dataTables_wrapper {
|
||||
padding: 0 !important;
|
||||
font-size: 13px !important;
|
||||
.dataTables_paginate .paginate_button {
|
||||
padding: 0 !important;
|
||||
margin: 0 !important;
|
||||
float: left;
|
||||
}
|
||||
}
|
||||
|
||||
div.dataTables_wrapper div.dataTables_processing {
|
||||
font-size: 0 !important;
|
||||
background-image: url('data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIGlkPSJsb2FkZXItMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQogd2lkdGg9IjQwcHgiIGhlaWdodD0iNDBweCIgdmlld0JveD0iMCAwIDUwIDUwIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MCA1MDsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KPHBhdGggZmlsbD0iIzAwMCIgZD0iTTQzLjkzNSwyNS4xNDVjMC0xMC4zMTgtOC4zNjQtMTguNjgzLTE4LjY4My0xOC42ODNjLTEwLjMxOCwwLTE4LjY4Myw4LjM2NS0xOC42ODMsMTguNjgzaDQuMDY4YzAtOC4wNzEsNi41NDMtMTQuNjE1LDE0LjYxNS0xNC42MTVjOC4wNzIsMCwxNC42MTUsNi41NDMsMTQuNjE1LDE0LjYxNUg0My45MzV6Ij4NCjxhbmltYXRlVHJhbnNmb3JtIGF0dHJpYnV0ZVR5cGU9InhtbCINCiAgYXR0cmlidXRlTmFtZT0idHJhbnNmb3JtIg0KICB0eXBlPSJyb3RhdGUiDQogIGZyb209IjAgMjUgMjUiDQogIHRvPSIzNjAgMjUgMjUiDQogIGR1cj0iMC42cyINCiAgcmVwZWF0Q291bnQ9ImluZGVmaW5pdGUiLz4NCjwvcGF0aD4NCjwvc3ZnPg0K') !important;
|
||||
background-color: #fff;
|
||||
background-size: 100%;
|
||||
width: 50px !important;
|
||||
height: 50px;
|
||||
border: none;
|
||||
@include shadow;
|
||||
top: 50% !important;
|
||||
left: 50% !important;
|
||||
-webkit-transform: translate(-50%, -50%) !important;
|
||||
transform: translate(-50%, -50%) !important;
|
||||
margin: 0 !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
.daterangepicker {
|
||||
&.dropdown-menu {
|
||||
width: auto;
|
||||
}
|
||||
.input-mini {
|
||||
padding-left: 28px !important;
|
||||
}
|
||||
.calendar {
|
||||
th, td {
|
||||
padding: 5px;
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.ranges {
|
||||
li {
|
||||
color: color(primary);
|
||||
&:hover,
|
||||
&.active {
|
||||
background-color: color(primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.daterangepicker td.active, .daterangepicker td.active:hover {
|
||||
background-color: color(primary);
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
.dropzone {
|
||||
border: 2px dashed color(primary);
|
||||
min-height: 240px;
|
||||
text-align: center;
|
||||
.dz-message {
|
||||
font-size: 24px;
|
||||
color: color(fontdark);
|
||||
margin: 3.4em;
|
||||
}
|
||||
.dz-preview {
|
||||
.dz-details {
|
||||
padding: 2.2em 1em;
|
||||
}
|
||||
.dz-image {
|
||||
border-radius: 3px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(xs) {
|
||||
.dropzone .dz-message {
|
||||
margin: 2em;
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-only(sm) {
|
||||
.dropzone {
|
||||
.dz-message {
|
||||
margin: 2.75em;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,29 @@
|
||||
.empty-state {
|
||||
text-align: center;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
padding: 40px;
|
||||
.empty-state-icon {
|
||||
position: relative;
|
||||
background-color: color(primary);
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
line-height: 100px;
|
||||
border-radius: 5px;
|
||||
i {
|
||||
font-size: 40px;
|
||||
color: #fff;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
}
|
||||
h2 {
|
||||
font-size: 20px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
p {
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
.flag-icon {
|
||||
width: 50px;
|
||||
height: 35px;
|
||||
display: inline-block;
|
||||
background-size: 100%;
|
||||
&.flag-icon-shadow {
|
||||
@include shadow;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,80 @@
|
||||
.fc-toolbar h2 {
|
||||
font-size: 16px;
|
||||
margin-top: 4px;
|
||||
}
|
||||
|
||||
.fc-view {
|
||||
border-color: #f2f2f2;
|
||||
> table {
|
||||
border-color: #f2f2f2;
|
||||
tr, td {
|
||||
border-color: #f2f2f2;
|
||||
}
|
||||
th {
|
||||
border-color: #f2f2f2;
|
||||
color: color(fontdark) !important;
|
||||
font-weight: 500;
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
color: color(fontdark) !important;
|
||||
font-weight: 500;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.fc-view-container > .fc-view {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.fc-view {
|
||||
color: #666;
|
||||
text-align: right;
|
||||
> table td {
|
||||
color: #666;
|
||||
text-align: right;
|
||||
}
|
||||
}
|
||||
|
||||
.fc-unthemed td.fc-today {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
|
||||
.fc button .fc-icon {
|
||||
top: -0.09em;
|
||||
}
|
||||
|
||||
.fc-basic-view {
|
||||
.fc-day-number, .fc-week-number {
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.fc-day-grid-event .fc-content {
|
||||
padding: 5px 10px;
|
||||
@include shadow;
|
||||
}
|
||||
|
||||
tr:first-child > td > .fc-day-grid-event {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.fc-state-default {
|
||||
border-radius: 3px;
|
||||
background-color: #f2f2f2;
|
||||
background-image: none;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
text-transform: capitalize;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.fc button {
|
||||
height: auto;
|
||||
padding: 10px 15px;
|
||||
text-shadow: none;
|
||||
border-radius: 0;
|
||||
&.fc-state-active {
|
||||
background-color: color(primary);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
.gallery {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
.gallery-item {
|
||||
float: left;
|
||||
display: inline-block;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
background-position: center;
|
||||
border-radius: 3px;
|
||||
margin-right: 7px;
|
||||
margin-bottom: 7px;
|
||||
cursor: pointer;
|
||||
transition: all .5s;
|
||||
position: relative;
|
||||
&:hover {
|
||||
opacity: .8;
|
||||
}
|
||||
}
|
||||
.gallery-hide {
|
||||
display: none;
|
||||
}
|
||||
.gallery-more {
|
||||
&:after {
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: 1;
|
||||
background-color: rgba(0, 0, 0, 0.5);
|
||||
border-radius: 3px;
|
||||
}
|
||||
div {
|
||||
text-align: center;
|
||||
line-height: 50px;
|
||||
font-weight: 600;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
&.gallery-md {
|
||||
.gallery-item {
|
||||
width: 78px;
|
||||
height: 78px;
|
||||
margin-right: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.gallery-more div {
|
||||
line-height: 78px;
|
||||
}
|
||||
}
|
||||
&.gallery-fw {
|
||||
.gallery-item {
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.gallery-more div {
|
||||
font-size: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
.hero {
|
||||
border-radius: 3px;
|
||||
padding: 55px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
&.hero-bg-image {
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
&:before {
|
||||
@include overlay(0, rgba(0,0,0,.5));
|
||||
border-radius: 3px;
|
||||
}
|
||||
&.hero-bg-parallax {
|
||||
background-attachment: fixed;
|
||||
}
|
||||
}
|
||||
.hero-inner {
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
h2 {
|
||||
font-size: 24px;
|
||||
}
|
||||
p {
|
||||
margin-bottom: 0;
|
||||
font-size: 16px;
|
||||
letter-spacing: .3px;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
.image-preview, #callback-preview {
|
||||
width: 250px;
|
||||
height: 250px;
|
||||
border: 2px dashed #ddd;
|
||||
border-radius: 3px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
background-color: #ffffff;
|
||||
color: #ecf0f1;
|
||||
}
|
||||
|
||||
.image-preview input, #callback-preview input {
|
||||
line-height: 200px;
|
||||
font-size: 200px;
|
||||
position: absolute;
|
||||
opacity: 0;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
.image-preview label, #callback-preview label {
|
||||
position: absolute;
|
||||
z-index: 5;
|
||||
opacity: 0.8;
|
||||
cursor: pointer;
|
||||
background-color: #bdc3c7;
|
||||
width: 150px;
|
||||
height: 50px;
|
||||
font-size: 12px;
|
||||
line-height: 50px;
|
||||
text-transform: uppercase;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
margin: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.audio-preview {
|
||||
background: #ffffff;
|
||||
width: auto;
|
||||
padding: 20px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.audio-upload {
|
||||
cursor: pointer;
|
||||
background-color: #bdc3c7;
|
||||
color: #ecf0f1;
|
||||
padding: 20px;
|
||||
font-size: 20px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
@@ -0,0 +1,41 @@
|
||||
.invoice {
|
||||
@include card-base;
|
||||
padding: 40px;
|
||||
.invoice-title {
|
||||
.invoice-number {
|
||||
float: right;
|
||||
font-size: 20px;
|
||||
font-weight: 700;
|
||||
margin-top: -45px;
|
||||
}
|
||||
}
|
||||
hr {
|
||||
margin-top: 40px;
|
||||
margin-bottom: 40px;
|
||||
border-top-color: #f9f9f9;
|
||||
}
|
||||
.invoice-detail-item {
|
||||
margin-bottom: 15px;
|
||||
.invoice-detail-name {
|
||||
letter-spacing: .3px;
|
||||
color: color(muted);
|
||||
margin-bottom: 4px;
|
||||
}
|
||||
.invoice-detail-value {
|
||||
font-size: 18px;
|
||||
color: color(fontdark);
|
||||
font-weight: 700;
|
||||
&.invoice-detail-value-lg {
|
||||
font-size: 24px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-only(md) {
|
||||
.table-invoice {
|
||||
table {
|
||||
min-width: 800px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
.ionicons {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
li {
|
||||
width: calc(100% / 8);
|
||||
font-size: 40px;
|
||||
padding: 40px 20px;
|
||||
list-style: none;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
position: relative;
|
||||
cursor: pointer;
|
||||
&:hover {
|
||||
opacity: .8;
|
||||
}
|
||||
.icon-name {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 50%;
|
||||
width: 100%;
|
||||
-webkit-transform: translate(-50%, -100%);
|
||||
transform: translate(-50%, -100%);
|
||||
font-family: 'Segoe UI';
|
||||
font-size: 12px;
|
||||
margin-top: 10px;
|
||||
line-height: 22px;
|
||||
background-color: #f9f9f9;
|
||||
border-radius: 3px;
|
||||
padding: 10px;
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
.jqvmap-circle {
|
||||
display: inline-block;
|
||||
width: 13px;
|
||||
height: 13px;
|
||||
background-color: #fff;
|
||||
border: 3px solid color(primary);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.jqvmap-label {
|
||||
z-index: 889;
|
||||
}
|
||||
|
||||
.jqvmap-zoomin, .jqvmap-zoomout {
|
||||
height: auto;
|
||||
width: auto;
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
.owl-theme {
|
||||
.owl-item {
|
||||
padding: 10px 0;
|
||||
}
|
||||
.owl-dots {
|
||||
margin-top: 20px !important;
|
||||
.owl-dot {
|
||||
&.active {
|
||||
span {
|
||||
background-color: color(primary);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
.pricing {
|
||||
@include card-base;
|
||||
text-align: center;
|
||||
&.pricing-highlight {
|
||||
.pricing-title {
|
||||
background-color: color(primary);
|
||||
color: #fff;
|
||||
}
|
||||
.pricing-cta {
|
||||
a {
|
||||
background-color: color(primary);
|
||||
color: #fff;
|
||||
&:hover {
|
||||
background-color: color_darken(primary, 10%) !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.pricing-padding {
|
||||
padding: 40px;
|
||||
}
|
||||
.pricing-title {
|
||||
font-size: 10px;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2.5px;
|
||||
background-color: color_lighten(light, 5%);
|
||||
color: color(primary);
|
||||
border-radius: 0 0 3px 3px;
|
||||
display: inline-block;
|
||||
padding: 5px 15px;
|
||||
}
|
||||
.pricing-price {
|
||||
margin-bottom: 45px;
|
||||
div:first-child {
|
||||
font-weight: 600;
|
||||
font-size: 50px;
|
||||
}
|
||||
}
|
||||
.pricing-details {
|
||||
text-align: left;
|
||||
display: inline-block;
|
||||
.pricing-item {
|
||||
display: flex;
|
||||
margin-bottom: 15px;
|
||||
.pricing-item-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
line-height: 20px;
|
||||
border-radius: 50%;
|
||||
text-align: center;
|
||||
background-color: color(success);
|
||||
color: #fff;
|
||||
margin-right: 10px;
|
||||
i {
|
||||
font-size: 11px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.pricing-cta {
|
||||
margin-top: 20px;
|
||||
a {
|
||||
display: block;
|
||||
padding: 20px 40px;
|
||||
background-color: color_lighten(light, 5%);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 2.5px;
|
||||
font-size: 14px;
|
||||
font-weight: 700;
|
||||
text-decoration: none;
|
||||
border-radius: 0 0 3px 3px;
|
||||
.fas, .far, .fab, .fal, .ion {
|
||||
margin-left: 5px;
|
||||
}
|
||||
&:hover {
|
||||
background-color: color(light);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
.product-item {
|
||||
text-align: center;
|
||||
.product-image {
|
||||
display: inline-block;
|
||||
overflow: hidden;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
border-radius: 3px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.product-name {
|
||||
color: color(fontdark);
|
||||
font-weight: 700;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
.product-review {
|
||||
color: color(warning);
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
.product-cta {
|
||||
margin-top: 5px;
|
||||
a {
|
||||
margin-top: 10px;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,73 @@
|
||||
.profile-widget {
|
||||
margin-top: 35px;
|
||||
.profile-widget-picture {
|
||||
@include shadow;
|
||||
float: left;
|
||||
width: 100px;
|
||||
margin: -35px -5px 0 30px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
}
|
||||
.profile-widget-header {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
.profile-widget-items {
|
||||
display: flex;
|
||||
position: relative;
|
||||
&:after {
|
||||
content: ' ';
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: -25px;
|
||||
right: 0;
|
||||
height: 1px;
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
.profile-widget-item {
|
||||
flex: 1;
|
||||
text-align: center;
|
||||
border-right: 1px solid #f2f2f2;
|
||||
padding: 10px 0;
|
||||
&:last-child {
|
||||
border-right: none;
|
||||
}
|
||||
.profile-widget-item-label {
|
||||
font-weight: 600;
|
||||
font-size: 12px;
|
||||
letter-spacing: .5px;
|
||||
color: color(fontdark);
|
||||
}
|
||||
.profile-widget-item-value {
|
||||
color: #000;
|
||||
font-weight: 600;
|
||||
font-size: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.profile-widget-description {
|
||||
padding: 20px;
|
||||
line-height: 26px;
|
||||
.profile-widget-name {
|
||||
font-size: 16px;
|
||||
margin-bottom: 10px;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(xs) {
|
||||
.profile-widget {
|
||||
.profile-widget-picture {
|
||||
left: 50%;
|
||||
-webkit-transform: translate(-50%, 0);
|
||||
transform: translate(-50%, 0);
|
||||
margin: 40px 0;
|
||||
float: none;
|
||||
}
|
||||
.profile-widget-items .profile-widget-item {
|
||||
border-top: 1px solid #f2f2f2;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
.pwindicator {
|
||||
margin-top: 4px;
|
||||
width: 150px;
|
||||
.bar {
|
||||
height: 2px;
|
||||
}
|
||||
}
|
||||
|
||||
.pw-very-weak {
|
||||
.bar {
|
||||
background: #d00;
|
||||
width: 30px;
|
||||
}
|
||||
.label {
|
||||
color: #d00;
|
||||
}
|
||||
}
|
||||
|
||||
.pw-weak {
|
||||
.bar {
|
||||
background: #d00;
|
||||
width: 60px;
|
||||
}
|
||||
.label {
|
||||
color: #d00;
|
||||
}
|
||||
}
|
||||
|
||||
.pw-mediocre {
|
||||
.bar {
|
||||
background: #f3f01a;
|
||||
width: 90px;
|
||||
}
|
||||
.label {
|
||||
color: #f3f01a;
|
||||
}
|
||||
}
|
||||
|
||||
.pw-strong {
|
||||
.bar {
|
||||
background: #f3b31a;
|
||||
width: 120px;
|
||||
}
|
||||
.label {
|
||||
color: #f3b31a;
|
||||
}
|
||||
}
|
||||
|
||||
.pw-very-strong {
|
||||
.bar {
|
||||
background: #0d0;
|
||||
width: 150px;
|
||||
}
|
||||
.label {
|
||||
color: #0d0;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,93 @@
|
||||
.select2 {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
.select2-container--default .select2-search--dropdown .select2-search__field {
|
||||
&:focus {
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
.select2-container {
|
||||
.select2-selection--multiple, .select2-selection--single {
|
||||
box-sizing: border-box;
|
||||
cursor: pointer;
|
||||
display: block;
|
||||
min-height: 42px;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
-webkit-user-select: none;
|
||||
outline: none;
|
||||
@include form-control;
|
||||
}
|
||||
}
|
||||
|
||||
.select2-dropdown {
|
||||
border-color: color_lighten(primary, 27%) !important;
|
||||
}
|
||||
|
||||
.select2-container {
|
||||
&.select2-container--open .select2-selection--multiple {
|
||||
@include form-control-focus;
|
||||
}
|
||||
&.select2-container--focus {
|
||||
.select2-selection--multiple, .select2-selection--single {
|
||||
@include form-control-focus;
|
||||
}
|
||||
}
|
||||
&.select2-container--open .select2-selection--single {
|
||||
@include form-control-focus;
|
||||
}
|
||||
}
|
||||
|
||||
.select2-results__option {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.select2-search--dropdown .select2-search__field {
|
||||
padding: 7px;
|
||||
}
|
||||
|
||||
.select2-container--default {
|
||||
.select2-selection--single .select2-selection__rendered {
|
||||
min-height: 42px;
|
||||
line-height: 42px;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.select2-selection--multiple .select2-selection__arrow, .select2-selection--single .select2-selection__arrow {
|
||||
position: absolute;
|
||||
top: 1px;
|
||||
right: 1px;
|
||||
width: 40px;
|
||||
min-height: 42px;
|
||||
}
|
||||
.select2-selection--multiple {
|
||||
.select2-selection__choice {
|
||||
@include shadow;
|
||||
color: #fff;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
.select2-selection__rendered {
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
.select2-selection__choice__remove {
|
||||
margin-right: 5px;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.select2-container--default .select2-selection--multiple .select2-selection__choice,
|
||||
.select2-container--default .select2-results__option[aria-selected=true],
|
||||
.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
||||
background-color: color(primary);
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.select2-results__option {
|
||||
padding-right: 10px 15px;
|
||||
}
|
||||
@@ -0,0 +1,50 @@
|
||||
.selectric {
|
||||
@include form-control;
|
||||
min-height: 42px;
|
||||
border-radius: 3px;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
&:hover {
|
||||
@include form-control;
|
||||
}
|
||||
&:focus {
|
||||
@include form-control-focus;
|
||||
}
|
||||
.label {
|
||||
font-size: 13px;
|
||||
background-color: transparent;
|
||||
line-height: 44px;
|
||||
min-height: 42px;
|
||||
}
|
||||
.button {
|
||||
background-color: transparent;
|
||||
line-height: 44px;
|
||||
min-height: 42px;
|
||||
}
|
||||
}
|
||||
|
||||
.selectric-open .selectric {
|
||||
border-color: color(primary);
|
||||
}
|
||||
|
||||
.selectric-above .selectric-items, .selectric-below .selectric-items {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.selectric-items {
|
||||
@include shadow;
|
||||
border-radius: 3px;
|
||||
background-color: #fff;
|
||||
border: none;
|
||||
li {
|
||||
font-size: 13px;
|
||||
padding: 10px 15px;
|
||||
&:hover {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
&.selected, &.highlighted {
|
||||
background-color: color(primary);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
.slider {
|
||||
.owl-nav {
|
||||
[class*=owl-] {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 35px;
|
||||
-webkit-transform: translate(-50%, -50%);
|
||||
transform: translate(-50%, -50%);
|
||||
margin: 0;
|
||||
background-color: #000;
|
||||
border-radius: 50%;
|
||||
color: #fff;
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
line-height: 34px;
|
||||
opacity: .3;
|
||||
&:hover {
|
||||
background-color: #000;
|
||||
}
|
||||
}
|
||||
.owl-next {
|
||||
right: 0;
|
||||
left: initial;
|
||||
}
|
||||
}
|
||||
&:hover .owl-nav [class*=owl-] {
|
||||
opacity: 1;
|
||||
}
|
||||
.slider-caption {
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
z-index: 1;
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
color: #fff;
|
||||
padding: 10px;
|
||||
.slider-title {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.slider-description {
|
||||
line-height: 26px;
|
||||
opacity: .8;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
.jqstooltip {
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
.sparkline-bar, .sparkline-line, .sparkline-inline {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.sparkline-bar canvas, .sparkline-line canvas, .sparkline-inline canvas {
|
||||
width: 100% !important;
|
||||
}
|
||||
@@ -0,0 +1,33 @@
|
||||
.statistic-details {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
.statistic-details-item {
|
||||
flex: 1;
|
||||
padding: 17px 10px;
|
||||
text-align: center;
|
||||
.detail-chart {
|
||||
margin-bottom: 10px;
|
||||
padding: 0 20px;
|
||||
}
|
||||
.detail-name {
|
||||
font-size: 12px;
|
||||
margin-top: 5px;
|
||||
color: color(fontdark);
|
||||
letter-spacing: .3px;
|
||||
}
|
||||
.detail-value {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(xs) {
|
||||
.statistic-details {
|
||||
flex-wrap: wrap;
|
||||
.statistic-details-item {
|
||||
flex: initial;
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
.summary {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
.summary-info {
|
||||
background-color: #eaf2f4;
|
||||
padding: 50px 0;
|
||||
text-align: center;
|
||||
border-radius: 3px;
|
||||
h4 {
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
.summary-item {
|
||||
margin-top: 20px;
|
||||
h6 {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
margin-top: 5px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
.note-editor.note-frame {
|
||||
border-radius: 3px;
|
||||
border: 1px solid #ededed;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.note-toolbar {
|
||||
padding: 0 0 5px 5px !important;
|
||||
position: relative !important;
|
||||
&.card-header {
|
||||
height: auto;
|
||||
display: block;
|
||||
min-height: auto;
|
||||
}
|
||||
.note-btn {
|
||||
font-size: 12px;
|
||||
background-color: transparent;
|
||||
box-shadow: none;
|
||||
border-color: transparent;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,24 @@
|
||||
.swal-button {
|
||||
border-radius: 3px;
|
||||
font-size: 16px;
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
}
|
||||
&.swal-button--confirm {
|
||||
@include button-shadow(primary);
|
||||
background-color: color(primary);
|
||||
&:focus {
|
||||
opacity: .8;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.swal-footer {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.swal-text {
|
||||
text-align: center;
|
||||
line-height: 24px;
|
||||
font-weight: 500;
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
.bootstrap-tagsinput {
|
||||
@include form-control;
|
||||
display: block;
|
||||
height: 46px;
|
||||
box-shadow: none;
|
||||
overflow: auto;
|
||||
input {
|
||||
height: 100%;
|
||||
padding: 0 8px;
|
||||
}
|
||||
.tag {
|
||||
background-color: color(primary);
|
||||
border-radius: 3px;
|
||||
padding: 5px 10px;
|
||||
&:first-child {
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
&:focus {
|
||||
@include form-control-focus;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,182 @@
|
||||
.tickets-list {
|
||||
.ticket-item {
|
||||
text-decoration: none;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
padding: 20px;
|
||||
border-bottom: 1px solid #f9f9f9;
|
||||
&.ticket-more {
|
||||
padding: 15px;
|
||||
text-align: center;
|
||||
font-weight: 600;
|
||||
font-size: 12px;
|
||||
}
|
||||
.ticket-title {
|
||||
h4 {
|
||||
font-size: 16px;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
.ticket-info {
|
||||
display: flex;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
color: color(fontdark);
|
||||
letter-spacing: .5px;
|
||||
.bullet {
|
||||
margin: 0 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.tickets {
|
||||
display: flex;
|
||||
.ticket-items {
|
||||
width: 30%;
|
||||
padding-right: 30px;
|
||||
.ticket-item {
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
padding: 25px 15px;
|
||||
border-bottom: 1px solid #f9f9f9;
|
||||
cursor: pointer;
|
||||
transition: all .5s;
|
||||
&:hover {
|
||||
background-color: rgba(63,82,227,.03);
|
||||
.ticket-title {
|
||||
color: color(primary);
|
||||
}
|
||||
}
|
||||
&.active {
|
||||
@include button-shadow(primary);
|
||||
border-radius: 3px;
|
||||
background-color: color(primary);
|
||||
border-bottom: none;
|
||||
.ticket-title, .ticket-desc {
|
||||
color: #fff !important;
|
||||
}
|
||||
}
|
||||
.ticket-title {
|
||||
h4 {
|
||||
font-size: 13px;
|
||||
letter-spacing: .3px;
|
||||
.badge {
|
||||
padding: 7px 10px;
|
||||
margin-left: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.ticket-desc {
|
||||
display: flex;
|
||||
font-size: 11px;
|
||||
font-weight: 500;
|
||||
color: color(fontdark);
|
||||
letter-spacing: .5px;
|
||||
.bullet {
|
||||
margin: 0 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.ticket-content {
|
||||
width: 70%;
|
||||
.ticket-header {
|
||||
display: flex;
|
||||
.ticket-sender-picture {
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
border-radius: 3px;
|
||||
overflow: hidden;
|
||||
margin-right: 20px;
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.ticket-detail {
|
||||
.ticket-title {
|
||||
h4 {
|
||||
font-size: 18px;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
.ticket-info {
|
||||
display: flex;
|
||||
letter-spacing: .3px;
|
||||
font-size: 12px;
|
||||
font-weight: 500;
|
||||
color: color(fontdark);
|
||||
.bullet {
|
||||
margin: 0 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.ticket-divider {
|
||||
height: 1px;
|
||||
width: 100%;
|
||||
display: inline-block;
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
.ticket-description {
|
||||
color: color(fontdark);
|
||||
font-weight: 500;
|
||||
margin-top: 30px;
|
||||
line-height: 28px;
|
||||
p {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
.ticket-form {
|
||||
margin-top: 40px;
|
||||
.note-editable {
|
||||
color: color(fontdark);
|
||||
font-weight: 500;
|
||||
p {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@include media-breakpoint-only(sm) {
|
||||
.tickets {
|
||||
display: inline-block;
|
||||
.ticket-items {
|
||||
width: 100%;
|
||||
margin-bottom: 30px;
|
||||
padding: 0;
|
||||
display: none;
|
||||
}
|
||||
.ticket-content {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-only(md) {
|
||||
.tickets {
|
||||
flex-wrap: wrap;
|
||||
margin: 0 -15px;
|
||||
.ticket-items {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
flex-wrap: nowrap;
|
||||
padding: 0;
|
||||
margin-bottom: 15px;
|
||||
padding: 15px;
|
||||
overflow: auto;
|
||||
.ticket-item {
|
||||
flex-basis: 50%;
|
||||
flex-grow: 0;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
}
|
||||
.ticket-content {
|
||||
margin: 15px;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
.bootstrap-timepicker-widget table td a span {
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
#toast-container > {
|
||||
div {
|
||||
@include shadow;
|
||||
padding: 20px 20px 20px 50px;
|
||||
opacity: 1;
|
||||
}
|
||||
.toast {
|
||||
background-image: none !important;
|
||||
&:before {
|
||||
position: absolute;
|
||||
left: 17px;
|
||||
top: 25px;
|
||||
font-family: 'Ionicons';
|
||||
font-size: 24px;
|
||||
line-height: 18px;
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
.toast-warning:before {
|
||||
content: "\f100";
|
||||
}
|
||||
.toast-error:before {
|
||||
content: "\f2d7";
|
||||
}
|
||||
.toast-info:before {
|
||||
content: "\f44c";
|
||||
color: #000;
|
||||
}
|
||||
.toast-success:before {
|
||||
content: "\f121";
|
||||
}
|
||||
}
|
||||
|
||||
.toast {
|
||||
&.toast-error {
|
||||
background-color: color(danger);
|
||||
}
|
||||
&.toast-warning {
|
||||
background-color: color(warning);
|
||||
}
|
||||
&.toast-success {
|
||||
background-color: color(success);
|
||||
}
|
||||
&.toast-info {
|
||||
background-color: #fff;
|
||||
.toast-title {
|
||||
color: #000;
|
||||
}
|
||||
.toast-message {
|
||||
color: #000;
|
||||
margin-top: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
.user-item {
|
||||
text-align: center;
|
||||
img {
|
||||
border-radius: 50%;
|
||||
padding-left: 20px;
|
||||
padding-right: 20px;
|
||||
}
|
||||
.user-details {
|
||||
margin-top: 10px;
|
||||
.user-name {
|
||||
font-weight: 600;
|
||||
color: color(dark);
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.user-cta {
|
||||
margin-top: 10px;
|
||||
.btn {
|
||||
padding: 5px 15px;
|
||||
font-size: 12px;
|
||||
border-radius: 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(xs) {
|
||||
.user-progress .media, .user-details .media {
|
||||
text-align: center;
|
||||
display: inline-block;
|
||||
width: 100%;
|
||||
}
|
||||
.user-progress .media img, .user-details .media img {
|
||||
margin: 0 !important;
|
||||
margin-bottom: 10px !important;
|
||||
}
|
||||
.user-progress .media .media-body, .user-details .media .media-body {
|
||||
width: 100%;
|
||||
}
|
||||
.user-progress .media .media-items, .user-details .media .media-items {
|
||||
margin: 20px 0;
|
||||
width: 100%;
|
||||
}
|
||||
.user-progress .list-unstyled-noborder li:last-child, .user-details .list-unstyled-noborder li:last-child {
|
||||
margin-bottom: 0;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.user-progress .media {
|
||||
.media-progressbar {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.media-cta {
|
||||
margin-top: 20px;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,65 @@
|
||||
.weather {
|
||||
.weather-icon {
|
||||
float: left;
|
||||
width: 150px;
|
||||
text-align: center;
|
||||
line-height: 40px;
|
||||
span {
|
||||
font-size: 60px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
}
|
||||
.weather-desc {
|
||||
margin-left: 160px;
|
||||
h4 {
|
||||
font-size: 70px;
|
||||
font-weight: 200;
|
||||
margin: 0;
|
||||
margin-top: 30px;
|
||||
margin-bottom: 5px;
|
||||
line-height: 56px;
|
||||
}
|
||||
.weather-text {
|
||||
font-size: 12px;
|
||||
color: color(fontdark);
|
||||
font-weight: 600;
|
||||
letter-spacing: 1px;
|
||||
text-transform: uppercase;
|
||||
margin-top: 10px;
|
||||
}
|
||||
ul {
|
||||
margin: 15px 0 13px 0;
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
ul li {
|
||||
display: inline-block;
|
||||
margin-right: 10px;
|
||||
padding: 10px;
|
||||
line-height: 1;
|
||||
border-radius: 3px;
|
||||
border: 2px solid color(primary);
|
||||
font-size: 10px;
|
||||
font-weight: 500;
|
||||
color: color(primary);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(xs) {
|
||||
.weather {
|
||||
text-align: center;
|
||||
.weather-icon {
|
||||
float: none;
|
||||
width: auto;
|
||||
span {
|
||||
margin-top: 20px;
|
||||
}
|
||||
}
|
||||
.weather-desc {
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,35 @@
|
||||
.icon-wrap {
|
||||
display: inline-block;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
margin-bottom: 25px;
|
||||
width: calc(100% / 4);
|
||||
.icon {
|
||||
float: left;
|
||||
width: 40px;
|
||||
font-family: 'weathericons';
|
||||
font-size: 20px;
|
||||
}
|
||||
.icon-name {}
|
||||
.icon_unicode {
|
||||
width: 100%;
|
||||
padding-left: 45px;
|
||||
color: color(fontdark);
|
||||
}
|
||||
}
|
||||
|
||||
.new-icons ul {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
list-style: none;
|
||||
li {
|
||||
padding: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-wrap .icon, .new-icons ul li .wi {
|
||||
font-size: 24px;
|
||||
margin-right: 15px;
|
||||
width: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
.wizard-steps {
|
||||
display: flex;
|
||||
margin: 0 -10px;
|
||||
margin-bottom: 60px;
|
||||
counter-reset: wizard-counter;
|
||||
.wizard-step {
|
||||
@include card-base;
|
||||
@include shadow(0 4px 8px, rgba(0,0,0,.05));
|
||||
padding: 30px;
|
||||
text-align: center;
|
||||
flex-grow: 1;
|
||||
flex-basis: 0;
|
||||
margin: 0 10px;
|
||||
&:before {
|
||||
counter-increment: wizard-counter;
|
||||
content: counter(wizard-counter);
|
||||
position: absolute;
|
||||
bottom: -40px;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
line-height: 21px;
|
||||
font-size: 10px;
|
||||
font-weight: 700;
|
||||
border-radius: 50%;
|
||||
background-color: color(light);
|
||||
}
|
||||
&.wizard-step-active {
|
||||
@include shadow-lighten(primary);
|
||||
background-color: color(primary);
|
||||
color: #fff;
|
||||
&:before {
|
||||
background-color: color(primary);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
&.wizard-step-success {
|
||||
background-color: color(success);
|
||||
color: #fff;
|
||||
&:before {
|
||||
background-color: color(success);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
&.wizard-step-danger {
|
||||
background-color: color(danger);
|
||||
color: #fff;
|
||||
&:before {
|
||||
background-color: color(danger);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
&.wizard-step-warning {
|
||||
background-color: color(warning);
|
||||
color: #fff;
|
||||
&:before {
|
||||
background-color: color(warning);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
&.wizard-step-info {
|
||||
background-color: color(info);
|
||||
color: #fff;
|
||||
&:before {
|
||||
background-color: color(info);
|
||||
color: #fff;
|
||||
}
|
||||
}
|
||||
.wizard-step-icon {
|
||||
.fas, .far, .fab, .fal, .ion {
|
||||
font-size: 34px;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
}
|
||||
.wizard-step-label {
|
||||
font-size: 10px;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
font-weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@include media-breakpoint-down(xs) {
|
||||
.wizard-steps {
|
||||
display: block;
|
||||
.wizard-step {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user