use creative-tim paper
This commit is contained in:
@@ -1,15 +0,0 @@
|
||||
.carousel-control{
|
||||
width: 8%;
|
||||
}
|
||||
.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .fa, .carousel-control .fa {
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
z-index: 5;
|
||||
}
|
||||
.carousel-control .fa{
|
||||
font-size: 35px;
|
||||
}
|
||||
.carousel-control.left, .carousel-control.right {
|
||||
background-image: none;
|
||||
}
|
||||
@@ -1,246 +0,0 @@
|
||||
/* Checkbox and radio */
|
||||
.checkbox,
|
||||
.radio {
|
||||
margin-bottom: 12px;
|
||||
padding-left: 32px;
|
||||
position: relative;
|
||||
-webkit-transition: color 0.25s linear;
|
||||
transition: color 0.25s linear;
|
||||
font-size: 14px;
|
||||
font-weight: normal;
|
||||
line-height: 1.5;
|
||||
color: #333333;
|
||||
}
|
||||
.checkbox input,
|
||||
.radio input {
|
||||
outline: none !important;
|
||||
display: none;
|
||||
}
|
||||
.checkbox .icons,
|
||||
.radio .icons {
|
||||
color: $medium-gray;
|
||||
display: block;
|
||||
height: 20px;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 20px;
|
||||
text-align: center;
|
||||
line-height: 21px;
|
||||
font-size: 20px;
|
||||
cursor: pointer;
|
||||
-webkit-transition: color 0.2s linear;
|
||||
transition: color 0.2s linear;
|
||||
}
|
||||
|
||||
|
||||
.checkbox .icons .first-icon,
|
||||
.radio .icons .first-icon,
|
||||
.checkbox .icons .second-icon,
|
||||
.radio .icons .second-icon {
|
||||
display: inline-table;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
background-color: transparent;
|
||||
margin: 0;
|
||||
@include opacity(1);
|
||||
}
|
||||
.checkbox .icons .second-icon,
|
||||
.radio .icons .second-icon {
|
||||
@include opacity(0);
|
||||
}
|
||||
.checkbox:hover,
|
||||
.radio:hover {
|
||||
-webkit-transition: color 0.2s linear;
|
||||
transition: color 0.2s linear;
|
||||
}
|
||||
.checkbox:hover .first-icon,
|
||||
.radio:hover .first-icon {
|
||||
@include opacity(0);
|
||||
}
|
||||
.checkbox:hover .second-icon,
|
||||
.radio:hover .second-icon {
|
||||
@include opacity (1);
|
||||
}
|
||||
.checkbox.checked,
|
||||
.radio.checked {
|
||||
color: $info-color;
|
||||
}
|
||||
.checkbox.checked .first-icon,
|
||||
.radio.checked .first-icon {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.checkbox.checked .second-icon,
|
||||
.radio.checked .second-icon {
|
||||
opacity: 1;
|
||||
filter: alpha(opacity=100);
|
||||
color: $info-color;
|
||||
-webkit-transition: color 0.2s linear;
|
||||
transition: color 0.2s linear;
|
||||
}
|
||||
.checkbox.disabled,
|
||||
.radio.disabled {
|
||||
cursor: default;
|
||||
color: $medium-gray !important;
|
||||
}
|
||||
.checkbox.disabled .icons,
|
||||
.radio.disabled .icons {
|
||||
color: $medium-gray !important;
|
||||
}
|
||||
.checkbox.disabled .first-icon,
|
||||
.radio.disabled .first-icon {
|
||||
opacity: 1;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
.checkbox.disabled .second-icon,
|
||||
.radio.disabled .second-icon {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.checkbox.disabled.checked .icons,
|
||||
.radio.disabled.checked .icons {
|
||||
color: $medium-gray;
|
||||
}
|
||||
.checkbox.disabled.checked .first-icon,
|
||||
.radio.disabled.checked .first-icon {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.checkbox.disabled.checked .second-icon,
|
||||
.radio.disabled.checked .second-icon {
|
||||
opacity: 1;
|
||||
filter: alpha(opacity=100);
|
||||
color: #D9D9D9;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ============================================================
|
||||
* bootstrapSwitch v1.3 by Larentis Mattia @spiritualGuru
|
||||
* http://www.larentis.eu/switch/
|
||||
* ============================================================
|
||||
* Licensed under the Apache License, Version 2.0
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* ============================================================ */
|
||||
.has-switch {
|
||||
border-radius: 30px;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
line-height: 1.72222;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
text-align: left;
|
||||
width: 60px;
|
||||
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
|
||||
/* this code is for fixing safari bug with hidden overflow for border-radius */
|
||||
-webkit-mask: url('../img/mask.png') 0 0 no-repeat;
|
||||
-webkit-mask-size: 60px 24px;
|
||||
mask: url('../img/mask.png') 0 0 no-repeat;
|
||||
}
|
||||
.has-switch.deactivate {
|
||||
opacity: 0.5;
|
||||
filter: alpha(opacity=50);
|
||||
cursor: default !important;
|
||||
}
|
||||
.has-switch.deactivate label,
|
||||
.has-switch.deactivate span {
|
||||
cursor: default !important;
|
||||
}
|
||||
.has-switch > div {
|
||||
position: relative;
|
||||
top: 0;
|
||||
width: 100px;
|
||||
}
|
||||
.has-switch > div.switch-animate {
|
||||
-webkit-transition: left 0.25s ease-out;
|
||||
transition: left 0.25s ease-out;
|
||||
}
|
||||
.has-switch > div.switch-off {
|
||||
left: -35px;
|
||||
}
|
||||
|
||||
.has-switch > div.switch-on {
|
||||
left: 0;
|
||||
}
|
||||
.has-switch > div label {
|
||||
background-color: #FFFFFF;
|
||||
@include icon-gradient (rgba(255,255,255,1), rgba(241,241,242,1));
|
||||
|
||||
box-shadow: 0 1px 1px #FFFFFF inset, 0 1px 1px rgba(0, 0, 0, 0.25);
|
||||
cursor: pointer;
|
||||
}
|
||||
.has-switch input[type=checkbox] {
|
||||
display: none;
|
||||
}
|
||||
.has-switch span {
|
||||
/* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) inset; */
|
||||
cursor: pointer;
|
||||
float: left;
|
||||
font-size: 11px;
|
||||
font-weight: 400;
|
||||
height: 24px;
|
||||
line-height: 15px;
|
||||
margin: 0;
|
||||
padding-bottom: 6px;
|
||||
padding-top: 5px;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
text-indent: -10px;
|
||||
width: 50%;
|
||||
z-index: 1;
|
||||
-webkit-transition: 0.25s ease-out;
|
||||
transition: 0.25s ease-out;
|
||||
}
|
||||
.has-switch span.switch-left {
|
||||
background-color: $info-color;
|
||||
border-left: 1px solid rgba(0, 0, 0, 0);
|
||||
border-radius: 30px 0 0 30px;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.has-switch .switch-off span.switch-left{
|
||||
background-color: $medium-gray;
|
||||
}
|
||||
.has-switch span.switch-right {
|
||||
border-radius: 0 30px 30px 0;
|
||||
background-color: $info-color;
|
||||
color: #ffffff;
|
||||
text-indent: 1px;
|
||||
}
|
||||
.has-switch .switch-off span.switch-right{
|
||||
background-color: $medium-gray;
|
||||
}
|
||||
|
||||
.has-switch label {
|
||||
border-radius: 12px;
|
||||
float: left;
|
||||
height: 22px;
|
||||
margin: 1px -13px;
|
||||
padding: 0;
|
||||
position: relative;
|
||||
transition: all 0.25s ease-out 0s;
|
||||
vertical-align: middle;
|
||||
width: 22px;
|
||||
z-index: 100;
|
||||
-webkit-transition: 0.25s ease-out;
|
||||
transition: 0.25s ease-out;
|
||||
}
|
||||
.has-switch .switch-on .fa-check:before{
|
||||
margin-left: 10px;
|
||||
}
|
||||
.has-switch:hover .switch-on label{
|
||||
margin: 1px -17px;
|
||||
width: 26px;
|
||||
}
|
||||
.has-switch:hover .switch-off label{
|
||||
margin: 1px -13px;
|
||||
width: 26px;
|
||||
}
|
||||
|
||||
@@ -1,30 +0,0 @@
|
||||
.panel {
|
||||
border: 0;
|
||||
border-bottom: 1px solid $medium-gray;
|
||||
box-shadow: none;
|
||||
}
|
||||
.panel-default > .panel-heading {
|
||||
background-color: $white-color;
|
||||
border-color: $white-color;
|
||||
}
|
||||
.panel-group .panel{
|
||||
border-radius: 0;
|
||||
}
|
||||
.panel-title{
|
||||
font-size: $font-size-h5;
|
||||
}
|
||||
.panel-title a:hover, .panel-title a:focus{
|
||||
text-decoration: none;
|
||||
}
|
||||
.gsdk-collapse{
|
||||
display: block;
|
||||
height: 0px;
|
||||
visibility: visible;
|
||||
overflow: hidden;
|
||||
}
|
||||
.panel-title a:hover, .panel-title a:focus{
|
||||
color: $default-states-color;
|
||||
}
|
||||
.panel-default > .panel-heading + .panel-collapse.gsdk-collapse > .panel-body {
|
||||
box-shadow: inset 0 7px 10px -7px rgba(0,0,0,0.14);
|
||||
}
|
||||
@@ -1,221 +0,0 @@
|
||||
/*!
|
||||
* Datepicker for Bootstrap
|
||||
*
|
||||
* Copyright 2012 Stefan Petre
|
||||
* Licensed under the Apache License v2.0
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*/
|
||||
|
||||
/*
|
||||
*
|
||||
* SCSS by Creative Tim
|
||||
* http://www.creative-tim.com
|
||||
*
|
||||
*/
|
||||
|
||||
.datepicker {
|
||||
top: 0;
|
||||
left: 0;
|
||||
padding: 4px;
|
||||
margin-top: 1px;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
|
||||
> div {
|
||||
display: none;
|
||||
}
|
||||
|
||||
table {
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
text-align: center;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
td{
|
||||
border-top: 1px solid $medium-gray;
|
||||
text-align: center;
|
||||
p{
|
||||
font-size: $font-size-small;
|
||||
font-weight: $font-weight-normal;
|
||||
border-radius: 50%;
|
||||
height: 29px;
|
||||
line-height: 29px;
|
||||
margin: 3px 0 8px;
|
||||
width: 29px;
|
||||
}
|
||||
:hover{
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
th{
|
||||
font-weight: $font-weight-light;
|
||||
|
||||
&.switch-datepicker{
|
||||
font-size: $font-paragraph;
|
||||
}
|
||||
}
|
||||
|
||||
.prev p,
|
||||
.next p{
|
||||
font-size: $font-size-h3;
|
||||
}
|
||||
|
||||
p:hover{
|
||||
background: #eeeeee;
|
||||
}
|
||||
|
||||
.day.disabled {
|
||||
color: #eeeeee;
|
||||
}
|
||||
|
||||
td.old,
|
||||
td.new {
|
||||
color: #999999;
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
td.active p,
|
||||
td.active:hover p{
|
||||
color: #ffffff;
|
||||
background-color: $info-color;
|
||||
}
|
||||
|
||||
td.blue p,
|
||||
td.blue:hover p{
|
||||
background-color: $primary-color;
|
||||
}
|
||||
td.azure p,
|
||||
td.azure:hover p{
|
||||
background-color: $info-color;
|
||||
}
|
||||
td.green p,
|
||||
td.green:hover p{
|
||||
background-color: $success-color;
|
||||
}
|
||||
td.orange p,
|
||||
td.orange:hover p{
|
||||
background-color: $warning-color;
|
||||
}
|
||||
td.red p,
|
||||
td.red:hover p{
|
||||
background-color: $danger-color;
|
||||
}
|
||||
|
||||
span {
|
||||
display: block;
|
||||
width: 55px;
|
||||
height: 54px;
|
||||
line-height: 54px;
|
||||
float: left;
|
||||
margin: 2px;
|
||||
cursor: pointer;
|
||||
-webkit-border-radius: 4px;
|
||||
-moz-border-radius: 4px;
|
||||
border-radius: 4px;
|
||||
|
||||
&.old {
|
||||
color: #999999;
|
||||
}
|
||||
}
|
||||
span.active,
|
||||
span:focus,
|
||||
span:hover,
|
||||
span:active {
|
||||
background-color: $info-color;
|
||||
}
|
||||
span.active{
|
||||
color: #FFFFFF;
|
||||
}
|
||||
span:hover {
|
||||
background: #eeeeee;
|
||||
}
|
||||
span.blue,
|
||||
span.blue:hover{
|
||||
background-color: $primary-color;
|
||||
}
|
||||
span.azure,
|
||||
span.azure:hover{
|
||||
background-color: $info-color;
|
||||
}
|
||||
span.green,
|
||||
span.green:hover{
|
||||
background-color: $success-color;
|
||||
}
|
||||
span.orange,
|
||||
span.orange:hover{
|
||||
background-color: $warning-color;
|
||||
}
|
||||
span.red,
|
||||
span.red:hover{
|
||||
background-color: $danger-color;
|
||||
}
|
||||
th.switch-datepicker {
|
||||
width: 145px;
|
||||
}
|
||||
th.next,
|
||||
th.prev {
|
||||
font-size: 21px;
|
||||
}
|
||||
thead tr:first-child th {
|
||||
cursor: pointer;
|
||||
}
|
||||
thead tr:first-child th:hover {
|
||||
background: #eeeeee;
|
||||
}
|
||||
|
||||
&.dropdown-menu{
|
||||
border-radius: $border-radius-bottom;
|
||||
@include box-shadow(none);
|
||||
@include transform-origin(none);
|
||||
@include transform-scale(1);
|
||||
@include transition($fast-transition-time, $transition-linear);
|
||||
margin-top: -20px;
|
||||
}
|
||||
|
||||
&.dropdown-menu.open{
|
||||
@include opacity(1);
|
||||
visibility: visible;
|
||||
margin-top: -1px;
|
||||
}
|
||||
|
||||
.table-condensed > tbody > tr > td{
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.table-condensed > thead > tr > th{
|
||||
padding: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.input-append.date .add-on i,
|
||||
.input-prepend.date .add-on i {
|
||||
display: block;
|
||||
cursor: pointer;
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
.datepicker-months thead{
|
||||
padding: 0 0 3px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,53 +0,0 @@
|
||||
.nbs-flexisel-container {
|
||||
position:relative;
|
||||
min-width:100%;
|
||||
}
|
||||
.nbs-flexisel-ul {
|
||||
position:relative;
|
||||
width:9999px;
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
list-style-type:none;
|
||||
text-align:center;
|
||||
}
|
||||
|
||||
.nbs-flexisel-inner {
|
||||
overflow:hidden;
|
||||
float:left;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.nbs-flexisel-item {
|
||||
float:left;
|
||||
margin:0px;
|
||||
padding:0px;
|
||||
cursor:pointer;
|
||||
position:relative;
|
||||
line-height:0px;
|
||||
}
|
||||
.nbs-flexisel-item img {
|
||||
width: 100%;
|
||||
cursor: pointer;
|
||||
position: relative;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
|
||||
}
|
||||
|
||||
/*** Navigation ***/
|
||||
|
||||
.nbs-flexisel-nav-left,
|
||||
.nbs-flexisel-nav-right {
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
z-index: 100;
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.nbs-flexisel-nav-left, {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.nbs-flexisel-nav-right {
|
||||
right: 0;
|
||||
}
|
||||
@@ -1,77 +0,0 @@
|
||||
.footer{
|
||||
background-color: $white-color;
|
||||
line-height: $line-height;
|
||||
|
||||
nav > ul{
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: normal;
|
||||
|
||||
a:not(.btn){
|
||||
color: $dark-gray;
|
||||
display: block;
|
||||
margin-bottom: 3px;
|
||||
&:hover,
|
||||
&:focus{
|
||||
color: $default-states-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
.social-area{
|
||||
padding: 15px 0;
|
||||
h5{
|
||||
padding-bottom: 15px;
|
||||
}
|
||||
}
|
||||
.social-area > a:not(.btn){
|
||||
color: $dark-gray;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
padding: $padding-social-a;
|
||||
font-size: $font-size-large-navbar;
|
||||
font-weight: normal;
|
||||
line-height: $line-height;
|
||||
text-align: center;
|
||||
&:hover,
|
||||
&:focus{
|
||||
color: $default-states-color;
|
||||
}
|
||||
}
|
||||
.copyright{
|
||||
color: $default-states-color;
|
||||
padding: 10px 15px;
|
||||
margin: 10px 3px;
|
||||
line-height: 20px;
|
||||
font-size: $font-size-base;
|
||||
}
|
||||
hr{
|
||||
border-color: $medium-gray;
|
||||
}
|
||||
.title{
|
||||
color: $default-states-color;
|
||||
}
|
||||
}
|
||||
|
||||
.footer-default{
|
||||
background-color: $smoke-bg;
|
||||
}
|
||||
|
||||
.footer:not(.footer-big){
|
||||
nav > ul{
|
||||
font-size: $font-size-base;
|
||||
li{
|
||||
margin-left: 20px;
|
||||
float: left;
|
||||
}
|
||||
a{
|
||||
padding: 10px 0px;
|
||||
margin: 10px 10px 10px 0px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,127 +0,0 @@
|
||||
.icon {
|
||||
@include icon-shape ($size-icon, $padding-icon, $border-radius-icon);
|
||||
@include icon-gradient ($icon-default-color-top, $icon-default-color-bottom);
|
||||
|
||||
// padding suprascris pentru iconite 7s si fa, test!
|
||||
padding: 8px;
|
||||
|
||||
[class^="icon-"]{
|
||||
height: $height-icon-message;
|
||||
width: $width-icon-message;
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100%;
|
||||
}
|
||||
|
||||
&.icon-sm {
|
||||
@include icon-shape ($size-icon-sm, $padding-icon-sm, $border-radius-icon-sm);
|
||||
|
||||
[class^="icon-"]{
|
||||
height: $height-icon-message-sm;
|
||||
width: $width-icon-message-sm;
|
||||
|
||||
}
|
||||
|
||||
[class*="pe-7s-"]{
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
line-height: 25px;
|
||||
font-size: 25px;
|
||||
text-align: center;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
[class*="fa-"]{
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
line-height: 25px;
|
||||
font-size: 19px;
|
||||
text-align: center;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
}
|
||||
|
||||
[class*="pe-7s-"]{
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
font-size: 46px;
|
||||
text-align: center;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
[class*="fa-"]{
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
line-height: 50px;
|
||||
font-size: 36px;
|
||||
text-align: center;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.icon-blue {
|
||||
@include icon-gradient ($icon-blue-color-top, $icon-blue-color-bottom);
|
||||
}
|
||||
|
||||
.icon-azure {
|
||||
@include icon-gradient ($icon-azure-color-top, $icon-azure-color-bottom);
|
||||
}
|
||||
|
||||
.icon-green {
|
||||
@include icon-gradient ($icon-green-color-top, $icon-green-color-bottom);
|
||||
}
|
||||
|
||||
.icon-orange {
|
||||
@include icon-gradient ($icon-orange-color-top, $icon-orange-color-bottom);
|
||||
}
|
||||
|
||||
.icon-red {
|
||||
@include icon-gradient ($icon-red-color-top, $icon-red-color-bottom);
|
||||
}
|
||||
|
||||
.icon-purple {
|
||||
@include icon-gradient ($icon-purple-color-top, $icon-purple-color-bottom);
|
||||
}
|
||||
|
||||
.icon-pink {
|
||||
@include icon-gradient ($icon-pink-color-top, $icon-pink-color-bottom);
|
||||
}
|
||||
|
||||
.icon-black {
|
||||
@include icon-gradient ($icon-black-color-top, $icon-black-color-bottom);
|
||||
}
|
||||
|
||||
.info{
|
||||
margin-top: 20px;
|
||||
margin-bottom: 30px;
|
||||
text-align: center;
|
||||
.icon{
|
||||
margin-top: 0;
|
||||
}
|
||||
h4,
|
||||
.h4{
|
||||
margin-top: 20px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
.info-horizontal{
|
||||
text-align: left;
|
||||
margin-top: 0;
|
||||
.icon{
|
||||
float: left;
|
||||
margin-top: 20px;
|
||||
margin-right: 20px;
|
||||
}
|
||||
.description{
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,54 +0,0 @@
|
||||
/* Labels & Progress-bar */
|
||||
.label{
|
||||
padding: 0.2em 0.6em 0.2em;
|
||||
border: 1px solid #999999;
|
||||
border-radius: 3px;
|
||||
color: #999999;
|
||||
background-color: #FFFFFF;
|
||||
font-weight: 500;
|
||||
font-size: 11px;
|
||||
text-transform: uppercase;
|
||||
display: inline-block;
|
||||
margin-bottom: 3px;
|
||||
}
|
||||
.label-primary{
|
||||
border-color: #3472F7;
|
||||
color: #3472F7;
|
||||
}
|
||||
.label-info{
|
||||
border-color: #2CA8FF;
|
||||
color: #2CA8FF;
|
||||
}
|
||||
.label-success{
|
||||
border-color: #05AE0E;
|
||||
color: #05AE0E;
|
||||
}
|
||||
.label-warning{
|
||||
border-color: #FF9500;
|
||||
color: #FF9500;
|
||||
}
|
||||
.label-danger{
|
||||
border-color: #FF3B30;
|
||||
color: #FF3B30;
|
||||
}
|
||||
.label.label-fill{
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.label-primary.label-fill, .progress-bar, .progress-bar-primary{
|
||||
background-color: #3472F7;
|
||||
}
|
||||
.label-info.label-fill, .progress-bar-info{
|
||||
background-color: #2CA8FF;
|
||||
}
|
||||
.label-success.label-fill, .progress-bar-success{
|
||||
background-color: #05AE0E;
|
||||
}
|
||||
.label-warning.label-fill, .progress-bar-warning{
|
||||
background-color: #FF9500;
|
||||
}
|
||||
.label-danger.label-fill, .progress-bar-danger{
|
||||
background-color: #FF3B30;
|
||||
}
|
||||
.label-default.label-fill{
|
||||
background-color: #999999;
|
||||
}
|
||||
@@ -1,80 +0,0 @@
|
||||
.media{
|
||||
border-bottom: 1px solid $medium-gray;
|
||||
padding-bottom: 30px;
|
||||
margin-top: 30px;
|
||||
|
||||
.avatar{
|
||||
margin: 0 auto;
|
||||
width: 64px;
|
||||
height: 64px;
|
||||
overflow: hidden;
|
||||
border-radius: 50%;
|
||||
margin-right: 15px;
|
||||
border: 3px solid transparent;
|
||||
|
||||
img{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.media-heading{
|
||||
margin-bottom: 10px;
|
||||
margin-top: 5px;
|
||||
display: inline-block;
|
||||
}
|
||||
.btn-simple{
|
||||
padding: 0px 5px;
|
||||
}
|
||||
.media{
|
||||
margin-top: 30px;
|
||||
}
|
||||
.media:last-child{
|
||||
border: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.media-post{
|
||||
color: #555;
|
||||
border: 0;
|
||||
.media-heading{
|
||||
display: block;
|
||||
text-align: center;
|
||||
}
|
||||
.author{
|
||||
width: 15%;
|
||||
}
|
||||
.media-body{
|
||||
width: 85%;
|
||||
float: left;
|
||||
display: inline-block;
|
||||
}
|
||||
textarea{
|
||||
margin: $margin-bottom;
|
||||
font-size: $font-paragraph;
|
||||
}
|
||||
.avatar{
|
||||
border-color: white;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.media-area{
|
||||
.media:last-child{
|
||||
border: 0;
|
||||
}
|
||||
.pagination-area{
|
||||
padding: 10px 0;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.media-area-small{
|
||||
p{
|
||||
font-size: 14px;
|
||||
}
|
||||
.btn-simple{
|
||||
font-size: 14px;
|
||||
}
|
||||
.avatar{
|
||||
width: 58px;
|
||||
height: 58px;
|
||||
}
|
||||
}
|
||||
@@ -1,79 +0,0 @@
|
||||
.modal-header {
|
||||
border: 0 none;
|
||||
}
|
||||
.modal-content {
|
||||
border: 0 none;
|
||||
border-radius: 10px;
|
||||
box-shadow: 0 0 15px rgba(0, 0, 0, 0.15), 0 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
.modal-dialog {
|
||||
padding-top: 60px;
|
||||
}
|
||||
.modal-footer {
|
||||
border-top: 0 none;
|
||||
padding: 10px 10px;
|
||||
}
|
||||
.modal-footer .modal-footer .btn-default.btn-simple{
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.modal.fade .modal-dialog {
|
||||
transform: none;
|
||||
-webkit-transform: none;
|
||||
-moz-transform: none;
|
||||
}
|
||||
.modal.in .modal-dialog {
|
||||
transform: none;
|
||||
-webkit-transform: none;
|
||||
-moz-transform: none;
|
||||
}
|
||||
.modal-small{
|
||||
.modal-dialog{
|
||||
max-width: 350px;
|
||||
}
|
||||
}
|
||||
.modal-small{
|
||||
.divider{
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
width: 14px;
|
||||
position: relative;
|
||||
margin-top: 40px;
|
||||
margin-bottom: 30px;
|
||||
font-size: $font-paragraph;
|
||||
}
|
||||
.divider:after{
|
||||
position: absolute;
|
||||
content: "";
|
||||
right: -140px;
|
||||
top: 12px;
|
||||
height: 1px;
|
||||
width: 115px;
|
||||
background-color: $light-gray;
|
||||
}
|
||||
.divider:before{
|
||||
position: absolute;
|
||||
content: "";
|
||||
left: -140px;
|
||||
top: 12px;
|
||||
height: 1px;
|
||||
width: 115px;
|
||||
background-color: $light-gray;
|
||||
}
|
||||
.modal-footer{
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
.social-area{
|
||||
text-align: center;
|
||||
|
||||
.btn-social{
|
||||
margin: 0 10px;
|
||||
}
|
||||
}
|
||||
.modal-backdrop.in {
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -1,161 +0,0 @@
|
||||
.btn-morphing {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
|
||||
.btn-toggle {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
width: 100%;
|
||||
-webkit-transition: all 0.3s;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
|
||||
.fa{
|
||||
width: 40px;
|
||||
height: 40px;
|
||||
@include opacity(0);
|
||||
}
|
||||
.btn-lg + .fa{
|
||||
width: 55px;
|
||||
height: 55px;
|
||||
}
|
||||
.fa.visible{
|
||||
@include opacity(1);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-morphing button:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.btn-morphing span, .btn-morphing svg{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 50%;
|
||||
margin-left: -20px;
|
||||
pointer-events: none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
.morphing-lg span, .morphing-lg svg{
|
||||
margin-left: -27.5px;
|
||||
}
|
||||
.btn-morphing span {
|
||||
color: $dark-gray;
|
||||
font-size: $font-size-h5;
|
||||
line-height: $height-base;
|
||||
}
|
||||
.circle {
|
||||
opacity: 1;
|
||||
fill: none;
|
||||
stroke: #fff;
|
||||
stroke-linecap: round;
|
||||
stroke-width: 4;
|
||||
stroke-dasharray: 121;
|
||||
stroke-dashoffset: 121;
|
||||
|
||||
}
|
||||
|
||||
.rotation-animate{
|
||||
@include circle-animation();
|
||||
}
|
||||
.circle-animation {
|
||||
stroke-dashoffset: 14;
|
||||
}
|
||||
|
||||
.morphing-lg{
|
||||
span{
|
||||
font-size: $font-size-h4;
|
||||
line-height: 55px;
|
||||
}
|
||||
.circle{
|
||||
stroke-dasharray: 158;
|
||||
stroke-dashoffset: 158;
|
||||
}
|
||||
.circle-animation {
|
||||
stroke-dashoffset: 14;
|
||||
}
|
||||
}
|
||||
.btn-morphing {
|
||||
.circle {
|
||||
stroke-width: 2px;
|
||||
}
|
||||
.circle-gray{
|
||||
stroke: $default-color;
|
||||
}
|
||||
.circle-blue{
|
||||
stroke: $primary-color;
|
||||
}
|
||||
.circle-azure{
|
||||
stroke: $info-color;
|
||||
}
|
||||
.circle-green{
|
||||
stroke: $success-color;
|
||||
}
|
||||
.circle-orange{
|
||||
stroke: $warning-color;
|
||||
}
|
||||
.circle-red{
|
||||
stroke: $danger-color;
|
||||
}
|
||||
}
|
||||
.morphing-info{
|
||||
.circle{
|
||||
stroke: $info-color;
|
||||
}
|
||||
.fa{
|
||||
color: $info-color;
|
||||
}
|
||||
}
|
||||
.morphing-success{
|
||||
.circle{
|
||||
stroke: $success-color;
|
||||
}
|
||||
.fa{
|
||||
color: $success-color;
|
||||
}
|
||||
}
|
||||
.morphing-warning{
|
||||
.circle{
|
||||
stroke: $warning-color;
|
||||
}
|
||||
.fa{
|
||||
color: $warning-color;
|
||||
}
|
||||
}
|
||||
.morphing-error{
|
||||
.circle{
|
||||
stroke: $danger-color;
|
||||
}
|
||||
.fa{
|
||||
color: $danger-color;
|
||||
}
|
||||
}
|
||||
.btn-toggle{
|
||||
height: 40px;
|
||||
|
||||
&.btn-lg{
|
||||
height: 55px;
|
||||
|
||||
&.resize{
|
||||
width: 53px;
|
||||
height: 53px;
|
||||
|
||||
.btn-round{
|
||||
width: 52px;
|
||||
height: 52px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&.resize{
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
margin-top: 1px;
|
||||
padding: 0;
|
||||
border-radius: 40px;
|
||||
background-color: transparent !important;
|
||||
}
|
||||
}
|
||||
@@ -1,9 +0,0 @@
|
||||
.progress {
|
||||
background-color: #E5E5E5;
|
||||
border-radius: 3px;
|
||||
box-shadow: none;
|
||||
height: 4px;
|
||||
}
|
||||
.progress-thin{
|
||||
height: 2px;
|
||||
}
|
||||
@@ -1,12 +0,0 @@
|
||||
.section{
|
||||
padding: 30px 0;
|
||||
|
||||
position: relative;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
.section-gray{
|
||||
background-color: #EEEEEE;
|
||||
}
|
||||
.section-white{
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
@@ -1,255 +0,0 @@
|
||||
.sidebar{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 260px;
|
||||
display: block;
|
||||
z-index: 1;
|
||||
color: #fff;
|
||||
font-weight: 200;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
|
||||
.sidebar-wrapper{
|
||||
position: relative;
|
||||
max-height: none;
|
||||
min-height: 100%;
|
||||
overflow: hidden;
|
||||
width: 260px;
|
||||
z-index: 4;
|
||||
}
|
||||
|
||||
.sidebar-background{
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: block;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
}
|
||||
|
||||
.logo{
|
||||
padding: $navbar-padding-a;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
||||
|
||||
p{
|
||||
float: left;
|
||||
font-size: 20px;
|
||||
margin: 10px 10px;
|
||||
color: $white-color;
|
||||
line-height: 20px;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
.simple-text{
|
||||
text-transform: uppercase;
|
||||
padding: $padding-small-vertical $padding-zero;
|
||||
display: block;
|
||||
font-size: $font-size-large;
|
||||
color: $white-color;
|
||||
text-align: center;
|
||||
font-weight: $font-weight-normal;
|
||||
line-height: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.logo-tim{
|
||||
border-radius: 50%;
|
||||
border: 1px solid #333;
|
||||
display: block;
|
||||
height: 61px;
|
||||
width: 61px;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
|
||||
img{
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
}
|
||||
|
||||
.nav{
|
||||
margin-top: 20px;
|
||||
|
||||
li{
|
||||
|
||||
> a{
|
||||
color: #FFFFFF;
|
||||
margin: 5px 15px;
|
||||
opacity: .86;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
&:hover > a{
|
||||
background: rgba(255,255,255,0.13);
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&.active > a{
|
||||
color: #FFFFFF;
|
||||
opacity: 1;
|
||||
background: rgba(255,255,255,0.23);
|
||||
|
||||
}
|
||||
|
||||
h4, h5 {
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
h1,h2,h3,h4,h5 {
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
p{
|
||||
margin: 10px 0;
|
||||
padding-left: 10px;
|
||||
line-height: 30px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
i{
|
||||
font-size: 28px;
|
||||
float: left;
|
||||
margin-right: 15px;
|
||||
line-height: 30px;
|
||||
width: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.sidebar,
|
||||
body > .navbar-collapse{
|
||||
.logo{
|
||||
padding: $navbar-padding-a;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
|
||||
|
||||
p{
|
||||
float: left;
|
||||
font-size: 20px;
|
||||
margin: 10px 10px;
|
||||
color: $white-color;
|
||||
line-height: 20px;
|
||||
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
}
|
||||
|
||||
.simple-text{
|
||||
text-transform: uppercase;
|
||||
padding: $padding-small-vertical $padding-zero;
|
||||
display: block;
|
||||
font-size: $font-size-large;
|
||||
color: $white-color;
|
||||
text-align: center;
|
||||
font-weight: $font-weight-normal;
|
||||
line-height: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.logo-tim{
|
||||
border-radius: 50%;
|
||||
border: 1px solid #333;
|
||||
display: block;
|
||||
height: 61px;
|
||||
width: 61px;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
|
||||
img{
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
}
|
||||
}
|
||||
|
||||
&:after,
|
||||
&:before{
|
||||
display: block;
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
&:before{
|
||||
opacity: .33;
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
&:after{
|
||||
@include icon-gradient($black-color-top, $black-color-bottom);
|
||||
z-index: 3;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&[data-image]:after,
|
||||
&.has-image:after{
|
||||
opacity: .77;
|
||||
}
|
||||
|
||||
&[data-color="blue"]:after{
|
||||
@include icon-gradient($new-dark-blue, $blue-color-bottom);
|
||||
}
|
||||
&[data-color="azure"]:after{
|
||||
@include icon-gradient($new-blue, $azure-color-bottom);
|
||||
}
|
||||
&[data-color="green"]:after{
|
||||
@include icon-gradient($new-green, $green-color-bottom);
|
||||
}
|
||||
&[data-color="orange"]:after{
|
||||
@include icon-gradient($new-orange, $orange-color-bottom);
|
||||
}
|
||||
&[data-color="red"]:after{
|
||||
@include icon-gradient($new-red, $red-color-bottom);
|
||||
}
|
||||
&[data-color="purple"]:after{
|
||||
@include icon-gradient($new-purple, $purple-color-bottom);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.main-panel{
|
||||
background: rgba(203,203,210,.15);
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
float: right;
|
||||
width: $sidebar-width;
|
||||
min-height: 100%;
|
||||
|
||||
> .content{
|
||||
padding: 30px 15px;
|
||||
min-height: calc(100% - 123px);
|
||||
}
|
||||
|
||||
> .footer{
|
||||
border-top: 1px solid #e7e7e7;
|
||||
}
|
||||
|
||||
.navbar{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar,
|
||||
.main-panel{
|
||||
overflow: auto;
|
||||
max-height: 100%;
|
||||
height: 100%;
|
||||
-webkit-transition-property: top,bottom;
|
||||
transition-property: top,bottom;
|
||||
-webkit-transition-duration: .2s,.2s;
|
||||
transition-duration: .2s,.2s;
|
||||
-webkit-transition-timing-function: linear,linear;
|
||||
transition-timing-function: linear,linear;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
@@ -1,218 +0,0 @@
|
||||
|
||||
/*!
|
||||
* jQuery UI Slider 1.10.4
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright 2014 jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*
|
||||
* http://api.jqueryui.com/slider/#theming
|
||||
*/
|
||||
.ui-slider {
|
||||
position: relative;
|
||||
text-align: left;
|
||||
}
|
||||
.ui-slider .ui-slider-handle {
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
width: 1.2em;
|
||||
height: 1.2em;
|
||||
cursor: default;
|
||||
}
|
||||
.ui-slider .ui-slider-range {
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
font-size: .7em;
|
||||
display: block;
|
||||
border: 0;
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
/* For IE8 - See #6727 */
|
||||
.ui-slider.ui-state-disabled .ui-slider-handle,
|
||||
.ui-slider.ui-state-disabled .ui-slider-range {
|
||||
filter: inherit;
|
||||
}
|
||||
|
||||
.ui-slider-horizontal {
|
||||
height: 4px;
|
||||
}
|
||||
.ui-slider-horizontal .ui-slider-handle {
|
||||
margin-left: -10px;
|
||||
top: -7px;
|
||||
}
|
||||
.ui-slider-horizontal .ui-slider-range {
|
||||
top: 0;
|
||||
height: 100%;
|
||||
}
|
||||
.ui-slider-horizontal .ui-slider-range-min {
|
||||
left: 0;
|
||||
}
|
||||
.ui-slider-horizontal .ui-slider-range-max {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.ui-slider-vertical {
|
||||
width: .8em;
|
||||
height: 100px;
|
||||
}
|
||||
.ui-slider-vertical .ui-slider-handle {
|
||||
left: -.3em;
|
||||
margin-left: 0;
|
||||
margin-bottom: -.6em;
|
||||
}
|
||||
.ui-slider-vertical .ui-slider-range {
|
||||
left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
.ui-slider-vertical .ui-slider-range-min {
|
||||
bottom: 0;
|
||||
}
|
||||
.ui-slider-vertical .ui-slider-range-max {
|
||||
top: 0;
|
||||
}
|
||||
|
||||
/* Component containers
|
||||
----------------------------------*/
|
||||
.ui-widget {
|
||||
font-size: 1.1em/*{fsDefault}*/;
|
||||
}
|
||||
.ui-widget .ui-widget {
|
||||
font-size: 1em;
|
||||
}
|
||||
.ui-widget input,
|
||||
.ui-widget select,
|
||||
.ui-widget textarea,
|
||||
.ui-widget button {
|
||||
font-size: 1em;
|
||||
}
|
||||
.ui-widget-content {
|
||||
background-color: #E5E5E5;
|
||||
}
|
||||
.ui-widget-content a {
|
||||
color: #222222/*{fcContent}*/;
|
||||
}
|
||||
.ui-widget-header {
|
||||
background: #999999;
|
||||
color: #222222;
|
||||
font-weight: bold;
|
||||
}
|
||||
.ui-widget-header a {
|
||||
color: #222222;
|
||||
}
|
||||
|
||||
.slider-primary .ui-widget-header{
|
||||
background-color: #3472F7;
|
||||
}
|
||||
.slider-info .ui-widget-header{
|
||||
background-color: #2C93FF;
|
||||
}
|
||||
.slider-success .ui-widget-header{
|
||||
background-color: #05AE0E;
|
||||
}
|
||||
.slider-warning .ui-widget-header{
|
||||
background-color: #FF9500;
|
||||
}
|
||||
.slider-danger .ui-widget-header{
|
||||
background-color: #FF3B30;
|
||||
}
|
||||
|
||||
/* Interaction states
|
||||
----------------------------------*/
|
||||
.ui-state-default,
|
||||
.ui-widget-content .ui-state-default,
|
||||
.ui-widget-header .ui-state-default {
|
||||
background: rgb(255,255,255); /* Old browsers */
|
||||
background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(241,241,242,1) 100%); /* FF3.6+ */
|
||||
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(241,241,242,1))); /* Chrome,Safari4+ */
|
||||
background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(241,241,242,1) 100%); /* Chrome10+,Safari5.1+ */
|
||||
background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(241,241,242,1) 100%); /* Opera 11.10+ */
|
||||
background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(241,241,242,1) 100%); /* IE10+ */
|
||||
background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(241,241,242,1) 100%); /* W3C */
|
||||
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f1f1f2',GradientType=0 ); /* IE6-9 */
|
||||
|
||||
border-radius: 50%;
|
||||
box-shadow: 0 1px 1px #FFFFFF inset, 0 1px 2px rgba(0, 0, 0, 0.4);
|
||||
height:15px;
|
||||
width:15px;
|
||||
cursor:pointer;
|
||||
}
|
||||
.ui-state-default a,
|
||||
.ui-state-default a:link,
|
||||
.ui-state-default a:visited {
|
||||
color: #555555/*{fcDefault}*/;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.ui-state-hover a,
|
||||
.ui-state-hover a:hover,
|
||||
.ui-state-hover a:link,
|
||||
.ui-state-hover a:visited,
|
||||
.ui-state-focus a,
|
||||
.ui-state-focus a:hover,
|
||||
.ui-state-focus a:link,
|
||||
.ui-state-focus a:visited {
|
||||
color: #212121/*{fcHover}*/;
|
||||
text-decoration: none;
|
||||
}
|
||||
.ui-state-active a,
|
||||
.ui-state-active a:link,
|
||||
.ui-state-active a:visited {
|
||||
color: #212121/*{fcActive}*/;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* Interaction Cues
|
||||
----------------------------------*/
|
||||
.ui-state-highlight,
|
||||
.ui-widget-content .ui-state-highlight,
|
||||
.ui-widget-header .ui-state-highlight {
|
||||
border: 1px solid #fcefa1;
|
||||
background: #fbf9ee;
|
||||
color: #363636;
|
||||
}
|
||||
.ui-state-highlight a,
|
||||
.ui-widget-content .ui-state-highlight a,
|
||||
.ui-widget-header .ui-state-highlight a {
|
||||
color: #363636;
|
||||
}
|
||||
.ui-state-error,
|
||||
.ui-widget-content .ui-state-error,
|
||||
.ui-widget-header .ui-state-error {
|
||||
border: 1px solid $danger-color/*{borderColorError}*/;
|
||||
background-color: $danger-color;
|
||||
color: $danger-color/*{fcError}*/;
|
||||
}
|
||||
.ui-state-error a,
|
||||
.ui-widget-content .ui-state-error a,
|
||||
.ui-widget-header .ui-state-error a {
|
||||
color: $danger-color/*{fcError}*/;
|
||||
}
|
||||
.ui-state-error-text,
|
||||
.ui-widget-content .ui-state-error-text,
|
||||
.ui-widget-header .ui-state-error-text {
|
||||
color: $danger-color/*{fcError}*/;
|
||||
}
|
||||
.ui-priority-primary,
|
||||
.ui-widget-content .ui-priority-primary,
|
||||
.ui-widget-header .ui-priority-primary {
|
||||
font-weight: bold;
|
||||
}
|
||||
.ui-priority-secondary,
|
||||
.ui-widget-content .ui-priority-secondary,
|
||||
.ui-widget-header .ui-priority-secondary {
|
||||
opacity: .7;
|
||||
filter:Alpha(Opacity=70);
|
||||
font-weight: normal;
|
||||
}
|
||||
.ui-state-disabled,
|
||||
.ui-widget-content .ui-state-disabled,
|
||||
.ui-widget-header .ui-state-disabled {
|
||||
opacity: .35;
|
||||
filter:Alpha(Opacity=35);
|
||||
background-image: none;
|
||||
}
|
||||
.ui-state-disabled .ui-icon {
|
||||
filter:Alpha(Opacity=35); /* For IE8 - See #6059 */
|
||||
}
|
||||
@@ -1,76 +0,0 @@
|
||||
.btn-social {
|
||||
//@include btn-styles($default-color, $default-states-color);
|
||||
opacity: 0.85;
|
||||
padding: 8px 9px;
|
||||
|
||||
.fa {
|
||||
font-size: 18px;
|
||||
vertical-align: middle;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
&.btn-round {
|
||||
padding: 9px 10px;
|
||||
}
|
||||
|
||||
&.btn-simple {
|
||||
padding: 9px 5px;
|
||||
font-size: 16px;
|
||||
|
||||
.fa{
|
||||
font-size: 20px;
|
||||
position: relative;
|
||||
top: -2px;
|
||||
width: 24px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.btn-facebook {
|
||||
@include social-buttons-color($social-facebook);
|
||||
}
|
||||
|
||||
.btn-twitter {
|
||||
@include social-buttons-color($social-twitter);
|
||||
}
|
||||
|
||||
.btn-pinterest {
|
||||
@include social-buttons-color($social-pinterest);
|
||||
}
|
||||
|
||||
.btn-google {
|
||||
@include social-buttons-color($social-google);
|
||||
}
|
||||
|
||||
.btn-linkedin {
|
||||
@include social-buttons-color($social-linkedin);
|
||||
}
|
||||
|
||||
.btn-dribbble {
|
||||
@include social-buttons-color($social-dribbble);
|
||||
}
|
||||
|
||||
.btn-github {
|
||||
@include social-buttons-color($social-github);
|
||||
}
|
||||
|
||||
.btn-youtube {
|
||||
@include social-buttons-color($social-youtube);
|
||||
}
|
||||
|
||||
.btn-stumbleupon {
|
||||
@include social-buttons-color($social-stumbleupon);
|
||||
}
|
||||
|
||||
.btn-reddit {
|
||||
@include social-buttons-color($social-reddit);
|
||||
}
|
||||
|
||||
.btn-tumblr {
|
||||
@include social-buttons-color($social-tumblr);
|
||||
}
|
||||
|
||||
.btn-behance{
|
||||
@include social-buttons-color($social-behance);
|
||||
}
|
||||
@@ -1,57 +0,0 @@
|
||||
.table{
|
||||
|
||||
.radio,
|
||||
.checkbox{
|
||||
position: relative;
|
||||
height: 20px;
|
||||
display: block;
|
||||
width: 20px;
|
||||
padding: 0px 0px;
|
||||
margin: 0px 5px;
|
||||
text-align: center;
|
||||
|
||||
.icons{
|
||||
left: 5px;
|
||||
}
|
||||
}
|
||||
> thead > tr > th,
|
||||
> tbody > tr > th,
|
||||
> tfoot > tr > th,
|
||||
> thead > tr > td,
|
||||
> tbody > tr > td,
|
||||
> tfoot > tr > td{
|
||||
padding: 12px 8px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
> thead > tr > th{
|
||||
border-bottom-width: 1px;
|
||||
font-size: $font-size-small;
|
||||
text-transform: uppercase;
|
||||
color: $dark-gray;
|
||||
font-weight: $font-weight-normal;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.td-actions .btn{
|
||||
@include opacity(0.36);
|
||||
|
||||
&.btn-xs{
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
}
|
||||
.td-actions{
|
||||
min-width: 90px;
|
||||
}
|
||||
|
||||
> tbody > tr{
|
||||
position: relative;
|
||||
|
||||
&:hover{
|
||||
.td-actions .btn{
|
||||
@include opacity(1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,207 +0,0 @@
|
||||
/* Navigation menu */
|
||||
.nav-pills {
|
||||
> li + li {
|
||||
margin-left: 0;
|
||||
}
|
||||
> li > a {
|
||||
border: 1px solid $info-color;
|
||||
border-radius: 0;
|
||||
color: $info-color;
|
||||
margin-left: -1px;
|
||||
|
||||
&:hover,
|
||||
&:focus{
|
||||
background-color: #F5F5F5;
|
||||
}
|
||||
}
|
||||
> li.active > a,
|
||||
> li.active > a:hover,
|
||||
> li.active > a:focus {
|
||||
background-color: $info-color;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
> li:first-child > a{
|
||||
border-radius: 4px 0 0 4px;
|
||||
margin: 0;
|
||||
}
|
||||
> li:last-child > a{
|
||||
border-radius: 0 4px 4px 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.pagination.pagination-no-border > li > a,
|
||||
.pagination.pagination-no-border > li > span{
|
||||
border: 0;
|
||||
}
|
||||
.pagination > li > a, .pagination > li > span, .pagination > li:first-child > a, .pagination > li:first-child > span, .pagination > li:last-child > a, .pagination > li:last-child > span{
|
||||
border-radius: 50%;
|
||||
margin: 0 2px;
|
||||
color: $default-states-color;
|
||||
}
|
||||
.pagination > li.active > a, .pagination > li.active > span, .pagination > li.active > a:hover, .pagination > li.active > span:hover, .pagination > li.active > a:focus, .pagination > li.active > span:focus {
|
||||
background-color: $info-color;
|
||||
border: 0;
|
||||
color: #FFFFFF;
|
||||
padding: 7px 13px;
|
||||
}
|
||||
|
||||
.nav-pills-blue > li.active > a,
|
||||
.nav-pills-blue > li.active > a:hover,
|
||||
.nav-pills-blue > li.active > a:focus,
|
||||
.pagination-blue > li.active > a,
|
||||
.pagination-blue > li.active > span,
|
||||
.pagination-blue > li.active > a:hover,
|
||||
.pagination-blue > li.active > span:hover,
|
||||
.pagination-blue > li.active > a:focus,
|
||||
.pagination-blue > li.active > span:focus{
|
||||
background-color: $primary-color;
|
||||
}
|
||||
|
||||
.nav-pills-azure > li.active > a,
|
||||
.nav-pills-azure > li.active > a:hover,
|
||||
.nav-pills-azure > li.active > a:focus,
|
||||
.pagination-azure > li.active > a,
|
||||
.pagination-azure > li.active > span,
|
||||
.pagination-azure > li.active > a:hover,
|
||||
.pagination-azure > li.active > span:hover,
|
||||
.pagination-azure > li.active > a:focus,
|
||||
.pagination-azure > li.active > span:focus{
|
||||
background-color: $info-color;
|
||||
}
|
||||
|
||||
.nav-pills-green > li.active > a,
|
||||
.nav-pills-green > li.active > a:hover,
|
||||
.nav-pills-green > li.active > a:focus,
|
||||
.pagination-green > li.active > a,
|
||||
.pagination-green > li.active > span,
|
||||
.pagination-green > li.active > a:hover,
|
||||
.pagination-green > li.active > span:hover,
|
||||
.pagination-green > li.active > a:focus,
|
||||
.pagination-green > li.active > span:focus{
|
||||
background-color: $success-color;
|
||||
}
|
||||
|
||||
.nav-pills-orange > li.active > a,
|
||||
.nav-pills-orange > li.active > a:hover,
|
||||
.nav-pills-orange > li.active > a:focus,
|
||||
.pagination-orange > li.active > a,
|
||||
.pagination-orange > li.active > span,
|
||||
.pagination-orange > li.active > a:hover,
|
||||
.pagination-orange > li.active > span:hover,
|
||||
.pagination-orange > li.active > a:focus,
|
||||
.pagination-orange > li.active > span:focus{
|
||||
background-color: $warning-color;
|
||||
}
|
||||
|
||||
.nav-pills-red > li.active > a,
|
||||
.nav-pills-red > li.active > a:hover,
|
||||
.nav-pills-red > li.active > a:focus,
|
||||
.pagination-red > li.active > a,
|
||||
.pagination-red > li.active > span,
|
||||
.pagination-red > li.active > a:hover,
|
||||
.pagination-red > li.active > span:hover,
|
||||
.pagination-red > li.active > a:focus,
|
||||
.pagination-red > li.active > span:focus{
|
||||
background-color: $danger-color;
|
||||
}
|
||||
.nav-pills-blue > li > a {
|
||||
@include pill-style($primary-color);
|
||||
}
|
||||
.nav-pills-azure > li > a {
|
||||
@include pill-style($info-color);
|
||||
}
|
||||
.nav-pills-green > li > a {
|
||||
@include pill-style($success-color);
|
||||
}
|
||||
.nav-pills-orange > li > a {
|
||||
@include pill-style($warning-color);
|
||||
}
|
||||
.nav-pills-red > li > a {
|
||||
@include pill-style($danger-color);
|
||||
}
|
||||
|
||||
.nav-text, .nav-icons{
|
||||
margin: $margin-bottom;
|
||||
|
||||
> li > a{
|
||||
display: block;
|
||||
padding: 0px $padding-base-horizontal;
|
||||
color: $dark-gray;
|
||||
text-align: center;
|
||||
@include opacity(0.8);
|
||||
|
||||
&:hover,
|
||||
&:focus{
|
||||
background-color: $transparent-bg;
|
||||
@include opacity(1);
|
||||
}
|
||||
}
|
||||
> li:first-child a{
|
||||
padding-left: 0;
|
||||
}
|
||||
> li.active a{
|
||||
color: $info-color;
|
||||
}
|
||||
}
|
||||
.nav-icons > li{
|
||||
display: inline-block;
|
||||
> a{
|
||||
padding: 0 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
> a i{
|
||||
font-size: $font-size-h4;
|
||||
margin-bottom: 10px;
|
||||
width: $font-size-h4;
|
||||
}
|
||||
}
|
||||
.nav-icons.nav-stacked > li{
|
||||
display: block;
|
||||
> a {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
}
|
||||
.nav-blue > li.active a{
|
||||
color: $primary-color;
|
||||
}
|
||||
.nav-azure > li.active a{
|
||||
color: $info-color;
|
||||
}
|
||||
.nav-green > li.active a{
|
||||
color: $success-color;
|
||||
}
|
||||
.nav-orange > li.active a{
|
||||
color: $warning-color;
|
||||
}
|
||||
.nav-red > li.active a{
|
||||
color: $danger-color;
|
||||
}
|
||||
|
||||
.nav-text{
|
||||
margin: $margin-bottom;
|
||||
|
||||
> li > a{
|
||||
font-size: $font-size-h6;
|
||||
text-transform: uppercase;
|
||||
padding: 3px 0;
|
||||
text-align: left;
|
||||
font-weight: $font-weight-semi;
|
||||
|
||||
}
|
||||
> li:first-child > a{
|
||||
padding-top: 0;
|
||||
}
|
||||
h4{
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.nav-text:not(.nav-stacked){
|
||||
> li{
|
||||
display: inline-block;
|
||||
}
|
||||
> li > a{
|
||||
margin-right: 15px;
|
||||
}
|
||||
}
|
||||
@@ -1,118 +0,0 @@
|
||||
.tagsinput {
|
||||
height: $height-base;
|
||||
overflow-y: auto;
|
||||
text-align: left;
|
||||
.tag {
|
||||
cursor: pointer;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
margin: 5px 3px 5px 0;
|
||||
@include label-style();
|
||||
}
|
||||
|
||||
.tag:hover{
|
||||
padding-left: 10px;
|
||||
padding-right: 14px;
|
||||
}
|
||||
|
||||
.tagsinput-add {
|
||||
color: $black-color;
|
||||
cursor: pointer;
|
||||
display: inline-block;
|
||||
font-size: 14px;
|
||||
padding: 5px 6px;
|
||||
margin: 5px 0 0;
|
||||
vertical-align: top;
|
||||
@include opacity(0.8);
|
||||
|
||||
&:hover,
|
||||
&:focus{
|
||||
@include opacity(1);
|
||||
}
|
||||
}
|
||||
.tagsinput-add:before {
|
||||
content: "\f067";
|
||||
font-family: "FontAwesome";
|
||||
}
|
||||
|
||||
.tagsinput-remove-link {
|
||||
color: $default-color;
|
||||
cursor: pointer;
|
||||
font-size: 12px;
|
||||
padding: 2px 0;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
opacity: 0;
|
||||
text-align: right;
|
||||
text-decoration: none;
|
||||
top: 0;
|
||||
width: 100%;
|
||||
z-index: 2;
|
||||
}
|
||||
.tag:hover .tagsinput-remove-link {
|
||||
opacity: 1;
|
||||
padding-right: 6px;
|
||||
}
|
||||
.tagsinput-remove-link:before {
|
||||
content: "\f00d";
|
||||
font-family: "FontAwesome";
|
||||
}
|
||||
.tagsinput-add-container {
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
}
|
||||
input{
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: $black-color;
|
||||
margin: 0;
|
||||
outline: medium none !important;
|
||||
padding: 0 0 0 5px;
|
||||
vertical-align: top;
|
||||
width: 30px;
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
&.tag-blue .tag,
|
||||
&.tag-blue .tagsinput-remove-link{
|
||||
@include label-color($primary-color);
|
||||
}
|
||||
&.tag-azure .tag,
|
||||
&.tag-azure .tagsinput-remove-link{
|
||||
@include label-color($info-color);
|
||||
}
|
||||
&.tag-green .tag,
|
||||
&.tag-green .tagsinput-remove-link{
|
||||
@include label-color($success-color);
|
||||
}
|
||||
&.tag-orange .tag,
|
||||
&.tag-orange .tagsinput-remove-link{
|
||||
@include label-color($warning-color);
|
||||
}
|
||||
&.tag-red .tag,
|
||||
&.tag-red .tagsinput-remove-link{
|
||||
@include label-color($danger-color);
|
||||
}
|
||||
|
||||
&.tag-fill{
|
||||
&.tag-blue .tag{
|
||||
@include label-color-fill($primary-color);
|
||||
}
|
||||
&.tag-azure .tag{
|
||||
@include label-color-fill($info-color);
|
||||
}
|
||||
&.tag-green .tag{
|
||||
@include label-color-fill($success-color);
|
||||
}
|
||||
&.tag-orange .tag{
|
||||
@include label-color-fill($warning-color);
|
||||
}
|
||||
&.tag-red .tag{
|
||||
@include label-color-fill($danger-color);
|
||||
}
|
||||
}
|
||||
&.tag-fill .tagsinput-remove-link{
|
||||
color: $white-color;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,155 +0,0 @@
|
||||
.tooltip {
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-bold;
|
||||
|
||||
&.top {
|
||||
margin-top: -11px;
|
||||
padding: 0;
|
||||
}
|
||||
&.top .tooltip-inner:after {
|
||||
border-top: 11px solid #FAE6A4;
|
||||
border-left: 11px solid rgba(0, 0, 0, 0);
|
||||
border-right: 11px solid rgba(0, 0, 0, 0);
|
||||
bottom: -10px;
|
||||
}
|
||||
&.top .tooltip-inner:before {
|
||||
border-top: 11px solid rgba(0, 0, 0, 0.2);
|
||||
border-left: 11px solid rgba(0, 0, 0, 0);
|
||||
border-right: 11px solid rgba(0, 0, 0, 0);
|
||||
bottom: -11px;
|
||||
}
|
||||
&.bottom {
|
||||
margin-top: 11px;
|
||||
padding: 0;
|
||||
}
|
||||
&.bottom .tooltip-inner:after {
|
||||
border-bottom: 11px solid #FAE6A4;
|
||||
border-left: 11px solid rgba(0, 0, 0, 0);
|
||||
border-right: 11px solid rgba(0, 0, 0, 0);
|
||||
top: -10px;
|
||||
}
|
||||
&.bottom .tooltip-inner:before {
|
||||
border-bottom: 11px solid rgba(0, 0, 0, 0.2);
|
||||
border-left: 11px solid rgba(0, 0, 0, 0);
|
||||
border-right: 11px solid rgba(0, 0, 0, 0);
|
||||
top: -11px;
|
||||
}
|
||||
&.left{
|
||||
margin-left: -11px;
|
||||
padding: 0;
|
||||
}
|
||||
&.left .tooltip-inner:after {
|
||||
border-left: 11px solid #FAE6A4;
|
||||
border-top: 11px solid rgba(0, 0, 0, 0);
|
||||
border-bottom: 11px solid rgba(0, 0, 0, 0);
|
||||
right: -10px;
|
||||
left: auto;
|
||||
margin-left: 0;
|
||||
}
|
||||
&.left .tooltip-inner:before {
|
||||
border-left: 11px solid rgba(0, 0, 0, 0.2);
|
||||
border-top: 11px solid rgba(0, 0, 0, 0);
|
||||
border-bottom: 11px solid rgba(0, 0, 0, 0);
|
||||
right: -11px;
|
||||
left: auto;
|
||||
margin-left: 0;
|
||||
}
|
||||
&.right{
|
||||
margin-left: 11px;
|
||||
padding: 0;
|
||||
}
|
||||
&.right .tooltip-inner:after {
|
||||
border-right: 11px solid #FAE6A4;
|
||||
border-top: 11px solid rgba(0, 0, 0, 0);
|
||||
border-bottom: 11px solid rgba(0, 0, 0, 0);
|
||||
left: -10px;
|
||||
top: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
&.right .tooltip-inner:before {
|
||||
border-right: 11px solid rgba(0, 0, 0, 0.2);
|
||||
border-top: 11px solid rgba(0, 0, 0, 0);
|
||||
border-bottom: 11px solid rgba(0, 0, 0, 0);
|
||||
left: -11px;
|
||||
top: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.tooltip-arrow{
|
||||
display: none;
|
||||
opacity: 0;
|
||||
}
|
||||
.tooltip-inner {
|
||||
background-color: #FAE6A4;
|
||||
border-radius: 4px;
|
||||
box-shadow: 0 1px 13px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(115, 71, 38, 0.23);
|
||||
color: #734726;
|
||||
max-width: 200px;
|
||||
padding: 6px 10px;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
}
|
||||
.tooltip-inner:after {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
left: 100%;
|
||||
margin-left: -60%;
|
||||
position: absolute;
|
||||
}
|
||||
.tooltip-inner:before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
left: 100%;
|
||||
margin-left: -60%;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.popover{
|
||||
padding: 0;
|
||||
border-radius: $border-radius-extreme;
|
||||
z-index: 1031;
|
||||
border: 0;
|
||||
@include box-shadow(none);
|
||||
}
|
||||
.popover-title{
|
||||
font-size: $font-paragraph;
|
||||
background-color: $azure-navbar;
|
||||
font-weight: normal;
|
||||
line-height: 22px;
|
||||
padding: 8px 15px;
|
||||
margin: 0;
|
||||
color: $white-color;
|
||||
text-align: center;
|
||||
border-radius: $border-radius-extreme $border-radius-extreme 0 0;
|
||||
}
|
||||
.popover-content{
|
||||
padding: 9px 15px;
|
||||
}
|
||||
.popover .arrow{
|
||||
border: 0;
|
||||
}
|
||||
.popover.top .arrow{
|
||||
margin-left: 0;
|
||||
}
|
||||
.popover.bottom .arrow:after{
|
||||
border-bottom-color: $azure-navbar;
|
||||
}
|
||||
.popover-filter{
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1030;
|
||||
background-color: #000000;
|
||||
@include opacity(0);
|
||||
visibility: hidden;
|
||||
|
||||
transition: visibility 0s linear 0.3s,opacity 0.3s linear;
|
||||
}
|
||||
.popover-filter.in{
|
||||
visibility:visible;
|
||||
@include opacity(0.2);
|
||||
transition-delay: 0s;
|
||||
}
|
||||
@@ -1,265 +0,0 @@
|
||||
//== Buttons
|
||||
//
|
||||
//## For each of Bootstrap's buttons, define text, background and border color.
|
||||
|
||||
$none: 0 !default;
|
||||
$border-thin: 1px !default;
|
||||
$border-thick: 2px !default;
|
||||
|
||||
$white-color: #FFFFFF !default;
|
||||
$white-bg: #FFFFFF !default;
|
||||
|
||||
$smoke-bg: #F5F5F5 !default;
|
||||
|
||||
$black-bg: rgba(30,30,30,.97) !default;
|
||||
|
||||
$black-color: #333333 !default;
|
||||
$black-hr: #444444 !default;
|
||||
|
||||
$light-gray: #E3E3E3 !default;
|
||||
$medium-gray: #DDDDDD !default;
|
||||
$medium-dark-gray: #AAAAAA !default;
|
||||
$dark-gray: #9A9A9A !default;
|
||||
|
||||
$transparent-bg: transparent !default;
|
||||
|
||||
$default-color: #888888 !default;
|
||||
$default-bg: #888888 !default;
|
||||
$default-states-color: #777777 !default;
|
||||
|
||||
$primary-color: #3472F7 !default;
|
||||
$primary-bg: #3472F7 !default;
|
||||
$primary-states-color: #1D62F0 !default;
|
||||
|
||||
$success-color: #87CB16 !default;
|
||||
$success-bg: #87CB16 !default;
|
||||
$success-states-color: #049F0C !default;
|
||||
|
||||
$info-color: #1DC7EA !default;
|
||||
$info-bg: #1DC7EA !default;
|
||||
$info-states-color: lighten($info-color, 8%) !default;
|
||||
|
||||
$warning-color: #FF9500 !default;
|
||||
$warning-bg: #FF9500 !default;
|
||||
$warning-states-color: #ED8D00 !default;
|
||||
|
||||
|
||||
$danger-color: #FF4A55 !default;
|
||||
$danger-bg: #FF4A55 !default;
|
||||
$danger-states-color: #EE2D20 !default;
|
||||
|
||||
|
||||
|
||||
$link-disabled-color: #666666 !default;
|
||||
|
||||
|
||||
/* light colors */
|
||||
$light-blue: rgba($primary-color, .2);
|
||||
$light-azure: rgba($info-color, .2);
|
||||
$light-green: rgba($success-color, .2);
|
||||
$light-orange: rgba($warning-color, .2);
|
||||
$light-red: rgba($danger-color, .2);
|
||||
|
||||
|
||||
//== Components
|
||||
//
|
||||
|
||||
$padding-base-vertical: 8px !default;
|
||||
$padding-base-horizontal: 16px !default;
|
||||
|
||||
$padding-round-vertical: 9px !default;
|
||||
$padding-round-horizontal: 18px !default;
|
||||
|
||||
$padding-simple-vertical: 10px !default;
|
||||
$padding-simple-horizontal: 18px !default;
|
||||
|
||||
$padding-large-vertical: 14px !default;
|
||||
$padding-large-horizontal: 30px !default;
|
||||
|
||||
$padding-small-vertical: 5px !default;
|
||||
$padding-small-horizontal: 10px !default;
|
||||
|
||||
$padding-xs-vertical: 1px !default;
|
||||
$padding-xs-horizontal: 5px !default;
|
||||
|
||||
$padding-label-vertical: 2px !default;
|
||||
$padding-label-horizontal: 12px !default;
|
||||
|
||||
$margin-large-vertical: 30px !default;
|
||||
$margin-base-vertical: 15px !default;
|
||||
|
||||
$padding-zero: 0px !default;
|
||||
|
||||
$margin-bottom: 0 0 10px 0 !default;
|
||||
$border-radius-small: 3px !default;
|
||||
$border-radius-base: 4px !default;
|
||||
$border-radius-large: 6px !default;
|
||||
$border-radius-extreme: 10px !default;
|
||||
|
||||
$border-radius-large-top: $border-radius-large $border-radius-large 0 0 !default;
|
||||
$border-radius-large-bottom: 0 0 $border-radius-large $border-radius-large !default;
|
||||
|
||||
$btn-round-radius: 30px !default;
|
||||
|
||||
$height-base: 40px !default;
|
||||
|
||||
$font-size-base: 14px !default;
|
||||
$font-size-small: 12px !default;
|
||||
$font-size-medium: 16px !default;
|
||||
$font-size-large: 18px !default;
|
||||
$font-size-large-navbar: 20px !default;
|
||||
|
||||
$font-size-h1: 52px !default;
|
||||
$font-size-h2: 36px !default;
|
||||
$font-size-h3: 28px !default;
|
||||
$font-size-h4: 22px !default;
|
||||
$font-size-h5: 16px !default;
|
||||
$font-size-h6: 14px !default;
|
||||
$font-paragraph: 16px !default;
|
||||
$font-size-navbar: 16px !default;
|
||||
$font-size-small: 12px !default;
|
||||
|
||||
$font-weight-light: 300 !default;
|
||||
$font-weight-normal: 400 !default;
|
||||
$font-weight-semi: 500 !default;
|
||||
$font-weight-bold: 600 !default;
|
||||
|
||||
$line-height-general: 1.5 !default;
|
||||
$line-height: 20px !default;
|
||||
$line-height-lg: 54px !default;
|
||||
|
||||
$sidebar-width: calc(100% - 260px) !default;
|
||||
|
||||
|
||||
$border-radius-top: 10px 10px 0 0 !default;
|
||||
$border-radius-bottom: 0 0 10px 10px !default;
|
||||
|
||||
$dropdown-shadow: 1px 2px 3px rgba(0, 0, 0, 0.125);
|
||||
|
||||
$general-transition-time: 300ms !default;
|
||||
|
||||
$slow-transition-time: 370ms !default;
|
||||
$dropdown-coordinates: 29px -50px !default;
|
||||
|
||||
$fast-transition-time: 150ms !default;
|
||||
|
||||
$ultra-fast-transition-time: 100ms !default;
|
||||
|
||||
$select-coordinates: 50% -40px !default;
|
||||
|
||||
$transition-linear: linear !default;
|
||||
$transition-bezier: cubic-bezier(0.34, 1.61, 0.7, 1) !default;
|
||||
$transition-ease: ease 0s;
|
||||
$transition-ease-in: ease-in !default;
|
||||
$transition-ease-out: ease-out !default;
|
||||
|
||||
|
||||
$navbar-padding-a: 10px 15px;
|
||||
$navbar-margin-a: 10px 3px;
|
||||
|
||||
$padding-social-a: 10px 5px;
|
||||
|
||||
$navbar-margin-a-btn: 15px 3px;
|
||||
$navbar-margin-a-btn-round: 16px 3px;
|
||||
|
||||
$navbar-padding-a-icons: 6px 15px;
|
||||
$navbar-margin-a-icons: 6px 3px;
|
||||
|
||||
$navbar-padding-brand: 15px 15px;
|
||||
$navbar-margin-brand: 5px 0px;
|
||||
|
||||
$navbar-margin-brand-icons: 12px auto;
|
||||
|
||||
$navbar-margin-btn: 15px 3px;
|
||||
|
||||
$height-icon: 64px !default;
|
||||
$width-icon: 64px !default;
|
||||
$padding-icon: 12px !default;
|
||||
$border-radius-icon: 15px !default;
|
||||
|
||||
$size-icon: 64px;
|
||||
$size-icon-sm: 32px;
|
||||
|
||||
|
||||
$height-icon-sm: 32px;
|
||||
$width-icon-sm: 32px;
|
||||
$padding-icon-sm: 4px;
|
||||
$border-radius-icon-sm: 7px;
|
||||
|
||||
$height-icon-message: 40px;
|
||||
$width-icon-message: 40px;
|
||||
|
||||
$height-icon-message-sm: 20px;
|
||||
$width-icon-message-sm: 20px;
|
||||
|
||||
$default-color-top: #d9d9d9 !default;
|
||||
$default-color-bottom: #909297 !default;
|
||||
|
||||
$blue-color-top: #4087ea;
|
||||
$blue-color-bottom: #533ce1;
|
||||
|
||||
$azure-color-top: #45c0fd;
|
||||
$azure-color-bottom: #4091ff;
|
||||
|
||||
$green-color-top: #a1eb3a;
|
||||
$green-color-bottom: #6dc030;
|
||||
|
||||
$orange-color-top: #ffb33b;
|
||||
$orange-color-bottom: #ff5221;
|
||||
|
||||
$red-color-top: #ff3b30;
|
||||
$red-color-bottom: #bb0502;
|
||||
|
||||
$purple-color-top: #df55e1;
|
||||
$purple-color-bottom: #943bea;
|
||||
|
||||
$pink-color-top: #ff2a63;
|
||||
$pink-color-bottom: #ff2e2e;
|
||||
|
||||
$black-color-top: #787878;
|
||||
$black-color-bottom: #343434;
|
||||
|
||||
$social-facebook: #3b5998;
|
||||
$social-twitter: #55acee;
|
||||
$social-pinterest: #cc2127;
|
||||
$social-google: #dd4b39;
|
||||
$social-linkedin: #0976b4;
|
||||
$social-dribbble: #ea4c89;
|
||||
$social-github: #333333;
|
||||
$social-youtube: #e52d27;
|
||||
$social-stumbleupon: #eb4924;
|
||||
$social-reddit: #ff4500;
|
||||
$social-tumblr: #35465c;
|
||||
$social-behance: #1769ff;
|
||||
|
||||
|
||||
$filter-blue: darken($primary-color, 10%);
|
||||
$filter-azure: darken($info-color, 10%);
|
||||
$filter-green: darken($success-color, 10%);
|
||||
$filter-orange: darken($warning-color, 10%);
|
||||
$filter-red: darken($danger-color, 10%);
|
||||
|
||||
|
||||
$new-blue: #1DC7EA;
|
||||
$new-purple: #9368E9;
|
||||
$new-red: #FB404B;
|
||||
$new-green: #87CB16;
|
||||
$new-orange: #FFA534;
|
||||
$new-dark-blue: #1F77D0;
|
||||
$new-black: #5e5e5e;
|
||||
|
||||
|
||||
$topbar-x: topbar-x !default;
|
||||
$topbar-back: topbar-back !default;
|
||||
$bottombar-x: bottombar-x !default;
|
||||
$bottombar-back: bottombar-back !default;
|
||||
|
||||
|
||||
$white-navbar: rgba(#FFFFFF, .96);
|
||||
$blue-navbar: lighten($new-dark-blue, 10%);
|
||||
$azure-navbar: lighten($new-blue, 15%);
|
||||
$green-navbar: lighten($new-green, 10%);
|
||||
$orange-navbar: lighten($new-orange, 10%);
|
||||
$red-navbar: lighten($new-red, 10%);
|
||||
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
$prefixes: ('', '-moz-', '-webkit-', '-ms-') !default;
|
||||
|
||||
@mixin circle-animation(){
|
||||
@for $i from 0 to length($prefixes) {
|
||||
@include circle-animation-details(nth($prefixes, $i + 1));
|
||||
}
|
||||
}
|
||||
|
||||
@mixin circle-animation-details($name){
|
||||
#{$name}animation-name: spin;
|
||||
#{$name}animation-duration: 1250ms;
|
||||
#{$name}animation-iteration-count: infinite;
|
||||
#{$name}animation-timing-function: linear;
|
||||
|
||||
}
|
||||
@keyframes spin {
|
||||
from { transform:rotate(0deg); }
|
||||
to { transform:rotate(360deg); }
|
||||
}
|
||||
|
||||
@-webkit-keyframes spin {
|
||||
from { -webkit-transform: rotate(0deg); }
|
||||
to { -webkit-transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
@-moz-keyframes spin {
|
||||
from { -moz-transform: rotate(0deg); }
|
||||
to { -moz-transform: rotate(360deg); }
|
||||
}
|
||||
|
||||
@-ms-keyframes spin {
|
||||
from { -ms-transform: rotate(0deg); }
|
||||
to { -ms-transform: rotate(360deg); }
|
||||
}
|
||||
@@ -1,43 +0,0 @@
|
||||
@mixin social-buttons-color ($color){
|
||||
|
||||
border-color: $color;
|
||||
color: $color;
|
||||
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active,
|
||||
&.active,
|
||||
.open > &.dropdown-toggle {
|
||||
background-color: $transparent-bg;
|
||||
color: $color;
|
||||
border-color: $color;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&:disabled,
|
||||
&[disabled],
|
||||
&.disabled {
|
||||
background-color: $transparent-bg;
|
||||
border-color: $color;
|
||||
}
|
||||
|
||||
&.btn-fill {
|
||||
color: $white-color;
|
||||
background-color: $color;
|
||||
opacity: 0.9;
|
||||
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active,
|
||||
&.active,
|
||||
.open > &.dropdown-toggle{
|
||||
background-color: $color;
|
||||
color: $white-color;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -1,44 +0,0 @@
|
||||
/*!
|
||||
|
||||
=========================================================
|
||||
* Light Bootstrap Dashboard - v1.3.1.0
|
||||
=========================================================
|
||||
|
||||
* Product Page: http://www.creative-tim.com/product/light-bootstrap-dashboard
|
||||
* Copyright 2017 Creative Tim (http://www.creative-tim.com)
|
||||
* Licensed under MIT (https://github.com/creativetimofficial/light-bootstrap-dashboard/blob/master/LICENSE.md)
|
||||
|
||||
=========================================================
|
||||
|
||||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
*/
|
||||
|
||||
@import "lbd/variables";
|
||||
@import "lbd/mixins";
|
||||
|
||||
@import "lbd/typography";
|
||||
|
||||
// Core CSS
|
||||
@import "lbd/misc";
|
||||
@import "lbd/sidebar-and-main-panel";
|
||||
@import "lbd/buttons";
|
||||
@import "lbd/inputs";
|
||||
|
||||
@import "lbd/alerts";
|
||||
@import "lbd/tables";
|
||||
|
||||
@import "lbd/checkbox-radio-switch";
|
||||
@import "lbd/navbars";
|
||||
@import "lbd/footers";
|
||||
|
||||
// Fancy Stuff
|
||||
|
||||
@import "lbd/dropdown";
|
||||
@import "lbd/cards";
|
||||
@import "lbd/chartist";
|
||||
@import "lbd/responsive";
|
||||
|
||||
|
||||
|
||||
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
/*!
|
||||
|
||||
=========================================================
|
||||
* Paper Dashboard - v1.1.2
|
||||
=========================================================
|
||||
|
||||
* Product Page: http://www.creative-tim.com/product/paper-dashboard
|
||||
* Copyright 2017 Creative Tim (http://www.creative-tim.com)
|
||||
* Licensed under MIT (https://github.com/creativetimofficial/paper-dashboard/blob/master/LICENSE.md)
|
||||
|
||||
=========================================================
|
||||
|
||||
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
*/
|
||||
|
||||
|
||||
@import "paper/variables";
|
||||
@import "paper/mixins";
|
||||
|
||||
@import "paper/typography";
|
||||
|
||||
// Core CSS
|
||||
@import "paper/misc";
|
||||
@import "paper/sidebar-and-main-panel";
|
||||
@import "paper/buttons";
|
||||
@import "paper/inputs";
|
||||
|
||||
@import "paper/alerts";
|
||||
@import "paper/tables";
|
||||
|
||||
@import "paper/checkbox-radio";
|
||||
@import "paper/navbars";
|
||||
@import "paper/footers";
|
||||
|
||||
// Fancy Stuff
|
||||
|
||||
@import "paper/dropdown";
|
||||
@import "paper/cards";
|
||||
@import "paper/chartist";
|
||||
@import "paper/responsive";
|
||||
|
||||
|
||||
|
||||
|
||||
+10
-28
@@ -28,30 +28,7 @@
|
||||
left: 15px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
margin-top: -15px;
|
||||
}
|
||||
|
||||
button.close{
|
||||
position: absolute;
|
||||
right: 10px;
|
||||
top: 50%;
|
||||
margin-top: -13px;
|
||||
z-index: 1033;
|
||||
background-color: #FFFFFF;
|
||||
display: block;
|
||||
border-radius: 50%;
|
||||
opacity: .4;
|
||||
line-height: 11px;
|
||||
width: 25px;
|
||||
height: 25px;
|
||||
outline: 0 !important;
|
||||
text-align: center;
|
||||
padding: 3px;
|
||||
font-weight: 300;
|
||||
|
||||
&:hover{
|
||||
opacity: .55;
|
||||
}
|
||||
margin-top: -20px;
|
||||
}
|
||||
|
||||
.close ~ span{
|
||||
@@ -69,14 +46,19 @@
|
||||
}
|
||||
}
|
||||
.alert-info{
|
||||
background-color: $azure-navbar;
|
||||
background-color: $bg-info;
|
||||
color: $info-states-color;
|
||||
}
|
||||
.alert-success {
|
||||
background-color: $green-navbar;
|
||||
background-color: $bg-success;
|
||||
color: $success-states-color;
|
||||
}
|
||||
.alert-warning {
|
||||
background-color: $orange-navbar;
|
||||
background-color: $bg-warning;
|
||||
color: $warning-states-color;
|
||||
}
|
||||
.alert-danger {
|
||||
background-color: $red-navbar;
|
||||
background-color: $bg-danger;
|
||||
color: $danger-states-color;
|
||||
}
|
||||
|
||||
+32
-26
@@ -1,16 +1,19 @@
|
||||
.btn{
|
||||
.btn,
|
||||
.navbar .navbar-nav > li > a.btn{
|
||||
border-radius: $border-radius-btn-base;
|
||||
box-sizing: border-box;
|
||||
border-width: $border-thick;
|
||||
background-color: $transparent-bg;
|
||||
font-weight: $font-weight-normal;
|
||||
font-size: $font-size-base;
|
||||
font-weight: $font-weight-semi;
|
||||
|
||||
@include opacity(.8);
|
||||
padding: $padding-base-vertical $padding-base-horizontal;
|
||||
|
||||
@include btn-styles($default-color, $default-states-color);
|
||||
@include transition($fast-transition-time, linear);
|
||||
|
||||
&:hover,
|
||||
&:focus{
|
||||
@include opacity(1);
|
||||
outline: 0 !important;
|
||||
}
|
||||
&:active,
|
||||
@@ -22,20 +25,31 @@
|
||||
|
||||
&.btn-icon{
|
||||
padding: $padding-base-vertical;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.btn-group .btn + .btn,
|
||||
.btn-group .btn + .btn-group,
|
||||
.btn-group .btn-group + .btn,
|
||||
.btn-group .btn-group + .btn-group{
|
||||
margin-left: -2px;
|
||||
}
|
||||
|
||||
// Apply the mixin to the buttons
|
||||
//.btn-default { @include btn-styles($default-color, $default-states-color); }
|
||||
.btn-primary { @include btn-styles($primary-color, $primary-states-color); }
|
||||
.btn-success { @include btn-styles($success-color, $success-states-color); }
|
||||
.btn-info { @include btn-styles($info-color, $info-states-color); }
|
||||
.btn-warning { @include btn-styles($warning-color, $warning-states-color); }
|
||||
.btn-danger { @include btn-styles($danger-color, $danger-states-color); }
|
||||
.navbar .navbar-nav > li > a.btn-primary, .btn-primary { @include btn-styles($primary-color, $primary-states-color); }
|
||||
.navbar .navbar-nav > li > a.btn-success, .btn-success { @include btn-styles($success-color, $success-states-color); }
|
||||
.navbar .navbar-nav > li > a.btn-info, .btn-info { @include btn-styles($info-color, $info-states-color); }
|
||||
.navbar .navbar-nav > li > a.btn-warning, .btn-warning { @include btn-styles($warning-color, $warning-states-color); }
|
||||
.navbar .navbar-nav > li > a.btn-danger, .btn-danger { @include btn-styles($danger-color, $danger-states-color); }
|
||||
.btn-neutral {
|
||||
@include btn-styles($white-color, $white-color);
|
||||
|
||||
&:hover,
|
||||
&:focus{
|
||||
color: $default-color;
|
||||
}
|
||||
|
||||
&:active,
|
||||
&.active,
|
||||
.open > &.dropdown-toggle{
|
||||
@@ -43,10 +57,12 @@
|
||||
color: $default-color;
|
||||
}
|
||||
|
||||
&.btn-fill,
|
||||
&.btn-fill{
|
||||
color: $default-color;
|
||||
}
|
||||
&.btn-fill:hover,
|
||||
&.btn-fill:focus{
|
||||
color: $default-color;
|
||||
color: $default-states-color;
|
||||
}
|
||||
|
||||
&.btn-simple:active,
|
||||
@@ -62,18 +78,8 @@
|
||||
@include opacity(.5);
|
||||
}
|
||||
}
|
||||
.btn-round{
|
||||
border-width: $border-thin;
|
||||
border-radius: $btn-round-radius !important;
|
||||
padding: $padding-round-vertical $padding-round-horizontal;
|
||||
|
||||
&.btn-icon{
|
||||
padding: $padding-round-vertical;
|
||||
}
|
||||
}
|
||||
.btn-simple{
|
||||
border: $none;
|
||||
font-size: $font-size-medium;
|
||||
padding: $padding-base-vertical $padding-base-horizontal;
|
||||
|
||||
&.btn-icon{
|
||||
@@ -81,14 +87,14 @@
|
||||
}
|
||||
}
|
||||
.btn-lg{
|
||||
@include btn-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $border-radius-large);
|
||||
@include btn-size($padding-large-vertical, $padding-large-horizontal, $font-size-large, $border-radius-btn-large, $line-height-small);
|
||||
font-weight: $font-weight-normal;
|
||||
}
|
||||
.btn-sm{
|
||||
@include btn-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $border-radius-small);
|
||||
@include btn-size($padding-small-vertical, $padding-small-horizontal, $font-size-small, $border-radius-btn-small, $line-height-small);
|
||||
}
|
||||
.btn-xs {
|
||||
@include btn-size($padding-xs-vertical, $padding-xs-horizontal, $font-size-small, $border-radius-small);
|
||||
@include btn-size($padding-xs-vertical, $padding-xs-horizontal, $font-size-xs, $border-radius-btn-small, $line-height-small);
|
||||
}
|
||||
.btn-wd {
|
||||
min-width: 140px;
|
||||
+103
-67
@@ -1,53 +1,40 @@
|
||||
.card{
|
||||
border-radius: $border-radius-base;
|
||||
box-shadow: 0 1px 2px rgba(0,0,0,.05),0 0 0 1px rgba(63,63,68,.1);
|
||||
border-radius: $border-radius-extreme;
|
||||
box-shadow: 0 2px 2px rgba(204, 197, 185, 0.5);
|
||||
background-color: #FFFFFF;
|
||||
margin-bottom: 30px;
|
||||
|
||||
color: $card-black-color;
|
||||
margin-bottom: 20px;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
|
||||
.image{
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
height: 260px;
|
||||
border-radius: $border-radius-base $border-radius-base 0 0;
|
||||
border-radius: $border-radius-extreme $border-radius-extreme 0 0;
|
||||
position: relative;
|
||||
-webkit-transform-style: preserve-3d;
|
||||
-moz-transform-style: preserve-3d;
|
||||
transform-style: preserve-3d;
|
||||
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.filter{
|
||||
position: absolute;
|
||||
z-index: 2;
|
||||
background-color: rgba(0,0,0,.68);
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
text-align: center;
|
||||
|
||||
@include opacity(0);
|
||||
|
||||
.btn{
|
||||
@include vertical-align();
|
||||
}
|
||||
}
|
||||
&:hover .filter{
|
||||
@include opacity(1);
|
||||
}
|
||||
.btn-hover{
|
||||
@include opacity(0);
|
||||
}
|
||||
&:hover .btn-hover{
|
||||
@include opacity(1);
|
||||
}
|
||||
.content{
|
||||
padding: 15px 15px 10px 15px;
|
||||
}
|
||||
.header{
|
||||
padding: 15px 15px 0;
|
||||
padding: 20px 20px 0;
|
||||
}
|
||||
.description{
|
||||
font-size: $font-paragraph;
|
||||
color: $font-color;
|
||||
}
|
||||
|
||||
h6{
|
||||
font-size: $font-size-small;
|
||||
margin: 0;
|
||||
}
|
||||
.category,
|
||||
label{
|
||||
@@ -55,43 +42,36 @@
|
||||
font-weight: $font-weight-normal;
|
||||
color: $dark-gray;
|
||||
margin-bottom: 0px;
|
||||
|
||||
i{
|
||||
font-size: $font-paragraph;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
label{
|
||||
font-size: $font-size-small;
|
||||
font-size: 15px;
|
||||
margin-bottom: 5px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.title{
|
||||
margin: $none;
|
||||
color: $black-color;
|
||||
color: $card-black-color;
|
||||
font-weight: $font-weight-light;
|
||||
}
|
||||
.avatar{
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
overflow: hidden;
|
||||
border-radius: 50%;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.description{
|
||||
font-size: $font-size-base;
|
||||
color: #333;
|
||||
}
|
||||
.footer{
|
||||
padding: 0;
|
||||
background-color: $transparent-bg;
|
||||
line-height: 30px;
|
||||
|
||||
|
||||
.legend{
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
|
||||
hr{
|
||||
margin-top: 5px;
|
||||
margin-bottom: 5px;
|
||||
@@ -99,6 +79,12 @@
|
||||
}
|
||||
.stats{
|
||||
color: #a9a9a9;
|
||||
font-weight: 300;
|
||||
i{
|
||||
margin-right: 2px;
|
||||
min-width: 15px;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
.footer div{
|
||||
display: inline-block;
|
||||
@@ -112,10 +98,7 @@
|
||||
.author i{
|
||||
font-size: $font-size-base;
|
||||
}
|
||||
h6{
|
||||
font-size: $font-size-small;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
&.card-separator:after{
|
||||
height: 100%;
|
||||
right: -15px;
|
||||
@@ -125,36 +108,62 @@
|
||||
content: "";
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
|
||||
.ct-chart{
|
||||
margin: 30px 0 30px;
|
||||
height: 245px;
|
||||
}
|
||||
|
||||
|
||||
.table{
|
||||
tbody td:first-child,
|
||||
thead th:first-child{
|
||||
padding-left: 15px;
|
||||
}
|
||||
|
||||
|
||||
tbody td:last-child,
|
||||
thead th:last-child{
|
||||
padding-right: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.alert{
|
||||
border-radius: $border-radius-base;
|
||||
position: relative;
|
||||
|
||||
|
||||
&.alert-with-icon{
|
||||
padding-left: 65px;
|
||||
}
|
||||
}
|
||||
.icon-big{
|
||||
font-size: 3em;
|
||||
min-height: 64px;
|
||||
}
|
||||
.numbers{
|
||||
font-size: 2em;
|
||||
text-align: right;
|
||||
p{
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
ul.team-members{
|
||||
li{
|
||||
padding: 10px 0px;
|
||||
&:not(:last-child){
|
||||
border-bottom: 1px solid $medium-pale-bg;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.card-user{
|
||||
.image{
|
||||
height: 110px;
|
||||
border-radius: 8px 8px 0 0;
|
||||
height: 150px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
|
||||
img{
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
.image-plain{
|
||||
height: 0;
|
||||
@@ -163,27 +172,57 @@
|
||||
.author{
|
||||
text-align: center;
|
||||
text-transform: none;
|
||||
margin-top: -70px;
|
||||
margin-top: -65px;
|
||||
.title{
|
||||
color: $default-states-color;
|
||||
small{
|
||||
color: $card-muted-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
.avatar{
|
||||
width: 124px;
|
||||
height: 124px;
|
||||
border: 5px solid #FFFFFF;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
border-radius: 50%;
|
||||
position: relative;
|
||||
margin-bottom: 15px;
|
||||
|
||||
|
||||
&.border-white{
|
||||
border: 5px solid $white-color;
|
||||
}
|
||||
&.border-gray{
|
||||
border-color: #EEEEEE;
|
||||
border: 5px solid $card-muted-color;
|
||||
}
|
||||
}
|
||||
.title{
|
||||
font-weight: 600;
|
||||
line-height: 24px;
|
||||
}
|
||||
.description{
|
||||
margin-top: 10px;
|
||||
}
|
||||
.content{
|
||||
min-height: 240px;
|
||||
min-height: 200px;
|
||||
}
|
||||
|
||||
&.card-plain{
|
||||
.avatar{
|
||||
height: 190px;
|
||||
width: 190px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.card-map{
|
||||
.map{
|
||||
height: 500px;
|
||||
padding-top: 20px;
|
||||
|
||||
> div{
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
.card-user,
|
||||
.card-price{
|
||||
.footer{
|
||||
@@ -197,11 +236,8 @@
|
||||
background-color: transparent;
|
||||
box-shadow: none;
|
||||
border-radius: 0;
|
||||
|
||||
|
||||
.image{
|
||||
border-radius: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,132 @@
|
||||
/* Checkbox and radio */
|
||||
.checkbox,
|
||||
.radio {
|
||||
margin-bottom: 12px;
|
||||
padding-left: 30px;
|
||||
position: relative;
|
||||
-webkit-transition: color,opacity 0.25s linear;
|
||||
transition: color,opacity 0.25s linear;
|
||||
font-size: $font-size-base;
|
||||
font-weight: normal;
|
||||
line-height: 1.5;
|
||||
color: $font-color;
|
||||
cursor: pointer;
|
||||
|
||||
.icons {
|
||||
color: $font-color;
|
||||
display: block;
|
||||
height: 20px;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 20px;
|
||||
text-align: center;
|
||||
line-height: 21px;
|
||||
font-size: 20px;
|
||||
cursor: pointer;
|
||||
-webkit-transition: color,opacity 0.15s linear;
|
||||
transition: color,opacity 0.15s linear;
|
||||
|
||||
opacity: .50;
|
||||
}
|
||||
|
||||
|
||||
&.checked{
|
||||
.icons{
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
input{
|
||||
outline: none !important;
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.checkbox,
|
||||
.radio{
|
||||
label{
|
||||
padding-left: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.checkbox .icons .first-icon,
|
||||
.radio .icons .first-icon,
|
||||
.checkbox .icons .second-icon,
|
||||
.radio .icons .second-icon {
|
||||
display: inline-table;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
background-color: transparent;
|
||||
margin: 0;
|
||||
@include opacity(1);
|
||||
}
|
||||
.checkbox .icons .second-icon,
|
||||
.radio .icons .second-icon {
|
||||
@include opacity(0);
|
||||
}
|
||||
.checkbox:hover,
|
||||
.radio:hover {
|
||||
-webkit-transition: color 0.2s linear;
|
||||
transition: color 0.2s linear;
|
||||
}
|
||||
.checkbox:hover .first-icon,
|
||||
.radio:hover .first-icon {
|
||||
@include opacity(0);
|
||||
}
|
||||
.checkbox:hover .second-icon,
|
||||
.radio:hover .second-icon {
|
||||
@include opacity (1);
|
||||
}
|
||||
.checkbox.checked,
|
||||
.radio.checked {
|
||||
// color: $info-color;
|
||||
}
|
||||
.checkbox.checked .first-icon,
|
||||
.radio.checked .first-icon {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.checkbox.checked .second-icon,
|
||||
.radio.checked .second-icon {
|
||||
opacity: 1;
|
||||
filter: alpha(opacity=100);
|
||||
// color: $info-color;
|
||||
-webkit-transition: color 0.2s linear;
|
||||
transition: color 0.2s linear;
|
||||
}
|
||||
.checkbox.disabled,
|
||||
.radio.disabled {
|
||||
cursor: default;
|
||||
color: $medium-gray;
|
||||
}
|
||||
.checkbox.disabled .icons,
|
||||
.radio.disabled .icons {
|
||||
color: $medium-gray;
|
||||
}
|
||||
.checkbox.disabled .first-icon,
|
||||
.radio.disabled .first-icon {
|
||||
opacity: 1;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
.checkbox.disabled .second-icon,
|
||||
.radio.disabled .second-icon {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.checkbox.disabled.checked .icons,
|
||||
.radio.disabled.checked .icons {
|
||||
color: $medium-gray;
|
||||
}
|
||||
.checkbox.disabled.checked .first-icon,
|
||||
.radio.disabled.checked .first-icon {
|
||||
opacity: 0;
|
||||
filter: alpha(opacity=0);
|
||||
}
|
||||
.checkbox.disabled.checked .second-icon,
|
||||
.radio.disabled.checked .second-icon {
|
||||
opacity: 1;
|
||||
color: $medium-gray;
|
||||
filter: alpha(opacity=100);
|
||||
}
|
||||
+41
-46
@@ -1,19 +1,35 @@
|
||||
.dropdown-menu{
|
||||
visibility: hidden;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: $pale-bg;
|
||||
border: 0 none;
|
||||
border-radius: $border-radius-extreme;
|
||||
display: block;
|
||||
z-index: 9000;
|
||||
margin-top: 10px;
|
||||
padding: 0px;
|
||||
position: absolute;
|
||||
visibility: hidden;
|
||||
z-index: 9000;
|
||||
|
||||
@include opacity(0);
|
||||
@include box-shadow($dropdown-shadow);
|
||||
|
||||
// the style for opening dropdowns on mobile devices; for the desktop version check the _responsive.scss file
|
||||
.open &{
|
||||
@include opacity(1);
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.divider{
|
||||
background-color: $medium-pale-bg;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
.dropdown-header{
|
||||
color: $dark-gray;
|
||||
font-size: $font-size-small;
|
||||
padding: $padding-dropdown-vertical $padding-dropdown-horizontal;
|
||||
}
|
||||
|
||||
// the style for the dropdown menu that appears under select, it is different from the default one
|
||||
.select &{
|
||||
border-radius: $border-radius-bottom;
|
||||
@include box-shadow(none);
|
||||
@@ -27,8 +43,10 @@
|
||||
}
|
||||
|
||||
> li > a {
|
||||
padding: $padding-base-vertical $padding-base-horizontal;
|
||||
color: #333333;
|
||||
color: $font-color;
|
||||
font-size: $font-size-base;
|
||||
padding: $padding-dropdown-vertical $padding-dropdown-horizontal;
|
||||
@include transition-none();
|
||||
|
||||
img{
|
||||
margin-top: -3px;
|
||||
@@ -59,56 +77,35 @@
|
||||
|
||||
> li > a:hover,
|
||||
> li > a:focus {
|
||||
background-color: $smoke-bg;
|
||||
color: #333333;
|
||||
background-color: $default-color;
|
||||
color: $fill-font-color;
|
||||
opacity: 1;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
&.dropdown-blue > li > a:hover,
|
||||
&.dropdown-blue > li > a:focus{
|
||||
background-color: $light-blue;
|
||||
&.dropdown-primary > li > a:hover,
|
||||
&.dropdown-primary > li > a:focus{
|
||||
background-color: $primary-color;
|
||||
}
|
||||
&.dropdown-azure > li > a:hover,
|
||||
&.dropdown-azure > li > a:focus{
|
||||
background-color: $light-azure;
|
||||
&.dropdown-info > li > a:hover,
|
||||
&.dropdown-info > li > a:focus{
|
||||
background-color: $info-color;
|
||||
}
|
||||
&.ct-green > li > a:hover,
|
||||
&.ct-green > li > a:focus{
|
||||
background-color: $light-green;
|
||||
&.dropdown-success > li > a:hover,
|
||||
&.dropdown-success > li > a:focus{
|
||||
background-color: $success-color;
|
||||
}
|
||||
&.dropdown-orange > li > a:hover,
|
||||
&.dropdown-orange > li > a:focus{
|
||||
background-color: $light-orange;
|
||||
&.dropdown-warning > li > a:hover,
|
||||
&.dropdown-warning > li > a:focus{
|
||||
background-color: $warning-color;
|
||||
}
|
||||
&.dropdown-red > li > a:hover,
|
||||
&.dropdown-red > li > a:focus{
|
||||
background-color: $light-red;
|
||||
&.dropdown-danger > li > a:hover,
|
||||
&.dropdown-danger > li > a:focus{
|
||||
background-color: $danger-color;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.dropdown-with-icons{
|
||||
> li > a{
|
||||
padding-left: 0px;
|
||||
line-height: 28px;
|
||||
}
|
||||
i{
|
||||
text-align: center;
|
||||
line-height: 28px;
|
||||
float: left;
|
||||
|
||||
&[class^="pe-"]{
|
||||
font-size: 24px;
|
||||
width: 46px;
|
||||
}
|
||||
&[class^="fa"]{
|
||||
font-size: 14px;
|
||||
width: 38px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//fix bug for the select items in btn-group
|
||||
.btn-group.select{
|
||||
overflow: hidden;
|
||||
@@ -116,5 +113,3 @@
|
||||
.btn-group.select.open{
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,42 @@
|
||||
.footer{
|
||||
background-attachment: fixed;
|
||||
position: relative;
|
||||
line-height: 20px;
|
||||
nav {
|
||||
ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: normal;
|
||||
li{
|
||||
display: inline-block;
|
||||
padding: 10px 15px;
|
||||
margin: 15px 3px;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
a:not(.btn){
|
||||
color: $font-color;
|
||||
display: block;
|
||||
margin-bottom: 3px;
|
||||
|
||||
&:focus,
|
||||
&:hover{
|
||||
color: $default-states-color;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.copyright{
|
||||
color: $font-color;
|
||||
padding: 10px 15px;
|
||||
font-size: 14px;
|
||||
white-space: nowrap;
|
||||
margin: 15px 3px;
|
||||
line-height: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.heart{
|
||||
color: $danger-color;
|
||||
}
|
||||
}
|
||||
+58
-28
@@ -12,40 +12,47 @@
|
||||
}
|
||||
|
||||
.form-control {
|
||||
background-color: $white-bg;
|
||||
border: 1px solid $light-gray;
|
||||
background-color: $gray-input-bg;
|
||||
border: medium none;
|
||||
border-radius: $border-radius-base;
|
||||
color: #565656;
|
||||
@include input-size($padding-base-vertical, $padding-base-horizontal - 4, $height-base);
|
||||
color: $font-color;
|
||||
font-size: $font-size-base;
|
||||
transition: background-color 0.3s ease 0s;
|
||||
@include input-size($padding-base-vertical, $padding-base-horizontal, $height-base);
|
||||
@include box-shadow(none);
|
||||
|
||||
&:focus{
|
||||
background-color: $white-bg;
|
||||
border: 1px solid $medium-dark-gray;
|
||||
@include box-shadow(none);
|
||||
outline: 0 !important;
|
||||
color: #333333;
|
||||
outline: 0 !important;
|
||||
}
|
||||
|
||||
.has-success &,
|
||||
.has-error &,
|
||||
.has-success &:focus,
|
||||
.has-error &:focus{
|
||||
border-color: $light-gray;
|
||||
@include box-shadow(none);
|
||||
}
|
||||
|
||||
.has-success &{
|
||||
background-color: $success-input-bg;
|
||||
color: $success-color;
|
||||
&.border-input{
|
||||
border: 1px solid $success-color;
|
||||
}
|
||||
}
|
||||
.has-success &:focus{
|
||||
border-color: $success-color;
|
||||
background-color: $white-bg;
|
||||
}
|
||||
.has-error &{
|
||||
background-color: $danger-input-bg;
|
||||
color: $danger-color;
|
||||
&.border-input{
|
||||
border: 1px solid $danger-color;
|
||||
}
|
||||
}
|
||||
.has-error &:focus{
|
||||
border-color: $danger-color;
|
||||
background-color: $white-bg;
|
||||
}
|
||||
|
||||
& + .form-control-feedback{
|
||||
@@ -57,9 +64,10 @@
|
||||
top: 50%;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
&.border-input{
|
||||
border: 1px solid $table-line-color;
|
||||
}
|
||||
.open &{
|
||||
border-radius: $border-radius-base $border-radius-base 0 0;
|
||||
border-bottom-color: transparent;
|
||||
}
|
||||
}
|
||||
@@ -70,42 +78,51 @@
|
||||
}
|
||||
|
||||
.has-error{
|
||||
.form-control-feedback{
|
||||
.form-control-feedback, .control-label{
|
||||
color: $danger-color;
|
||||
}
|
||||
}
|
||||
.has-success{
|
||||
.form-control-feedback{
|
||||
color: $success-color
|
||||
.form-control-feedback, .control-label{
|
||||
color: $success-color;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
.input-group-addon {
|
||||
background-color: $white-color;
|
||||
border: 1px solid $light-gray;
|
||||
background-color: $gray-input-bg;
|
||||
border: medium none;
|
||||
border-radius: $border-radius-base;
|
||||
|
||||
|
||||
.has-success &,
|
||||
.has-error &{
|
||||
background-color: $white-color;
|
||||
border: 1px solid $light-gray;
|
||||
}
|
||||
.has-error .form-control:focus + &{
|
||||
border-color: $danger-color;
|
||||
color: $danger-color;
|
||||
}
|
||||
.has-success .form-control:focus + &{
|
||||
border-color: $success-color;
|
||||
color: $success-color;
|
||||
}
|
||||
.form-control:focus + &,
|
||||
.form-control:focus ~ &{
|
||||
background-color: $white-color;
|
||||
border-color: $dark-gray;
|
||||
}
|
||||
}
|
||||
|
||||
.border-input{
|
||||
.input-group-addon{
|
||||
border: solid 1px $table-line-color;
|
||||
}
|
||||
}
|
||||
.input-group{
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.input-group[disabled]{
|
||||
.input-group-addon{
|
||||
background-color: $light-gray;
|
||||
}
|
||||
}
|
||||
.input-group .form-control:first-child,
|
||||
.input-group-addon:first-child,
|
||||
.input-group-btn:first-child > .dropdown-toggle,
|
||||
@@ -119,11 +136,22 @@
|
||||
border-left: 0 none;
|
||||
}
|
||||
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
|
||||
background-color: $smoke-bg;
|
||||
color: $default-color;
|
||||
background-color: $light-gray;
|
||||
cursor: not-allowed;
|
||||
@include placeholder($dark-gray,1);
|
||||
}
|
||||
.form-control[disabled]::-moz-placeholder{
|
||||
@include placeholder($dark-gray,1);
|
||||
}
|
||||
.form-control[disabled]:-moz-placeholder{
|
||||
@include placeholder($medium-gray,1);
|
||||
}
|
||||
.form-control[disabled]::-webkit-input-placeholder{
|
||||
@include placeholder($medium-gray,1);
|
||||
}
|
||||
.form-control[disabled]:-ms-input-placeholder{
|
||||
@include placeholder($medium-gray,1);
|
||||
}
|
||||
|
||||
.input-group-btn .btn{
|
||||
border-width: $border-thin;
|
||||
padding: $padding-round-vertical $padding-base-horizontal;
|
||||
@@ -135,7 +163,9 @@
|
||||
.input-group-btn:last-child > .btn{
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.input-group-focus .input-group-addon{
|
||||
border-color: $dark-gray;
|
||||
textarea.form-control{
|
||||
max-width: 100%;
|
||||
padding: 10px 18px;
|
||||
resize: none;
|
||||
}
|
||||
|
||||
+25
-18
@@ -1,37 +1,39 @@
|
||||
/* General overwrite */
|
||||
body,
|
||||
.wrapper{
|
||||
min-height: 100vh;
|
||||
position: relative;
|
||||
body{
|
||||
color: $font-color;
|
||||
font-size: $font-size-base;
|
||||
font-family: 'Muli', Arial, sans-serif;
|
||||
.wrapper{
|
||||
min-height: 100vh;
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
a{
|
||||
color: $info-color;
|
||||
|
||||
|
||||
&:hover, &:focus{
|
||||
color: $info-states-color;
|
||||
text-decoration: none;
|
||||
color: $info-states-color;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
a:focus, a:active,
|
||||
a:focus, a:active,
|
||||
button::-moz-focus-inner,
|
||||
input::-moz-focus-inner,
|
||||
input[type="reset"]::-moz-focus-inner,
|
||||
input[type="button"]::-moz-focus-inner,
|
||||
input[type="submit"]::-moz-focus-inner,
|
||||
select::-moz-focus-inner,
|
||||
input[type="file"] > input[type="button"]::-moz-focus-inner{
|
||||
outline:0;
|
||||
outline:0 !important;
|
||||
}
|
||||
.ui-slider-handle:focus,
|
||||
.navbar-toggle,
|
||||
input:focus {
|
||||
input:focus,
|
||||
button:focus {
|
||||
outline : 0 !important;
|
||||
}
|
||||
|
||||
/* Animations */
|
||||
.form-control,
|
||||
.input-group-addon,
|
||||
.form-control,
|
||||
.input-group-addon,
|
||||
.tagsinput,
|
||||
.navbar,
|
||||
.navbar .alert{
|
||||
@@ -47,16 +49,21 @@ input:focus {
|
||||
@include transition($ultra-fast-transition-time, $transition-ease-in);
|
||||
}
|
||||
.fa{
|
||||
width: 18px;
|
||||
width: 21px;
|
||||
text-align: center;
|
||||
}
|
||||
.fa-base{
|
||||
font-size: 1.25em !important;
|
||||
}
|
||||
|
||||
.margin-top{
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
hr{
|
||||
border-color: $medium-pale-bg;
|
||||
}
|
||||
.wrapper{
|
||||
position: relative;
|
||||
top: 0;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
+2
-7
@@ -10,13 +10,8 @@
|
||||
@import "mixins/inputs";
|
||||
@import "mixins/labels";
|
||||
@import "mixins/tabs";
|
||||
|
||||
@import "mixins/navbars";
|
||||
@import "mixins/icons";
|
||||
@import "mixins/social-buttons";
|
||||
|
||||
@import "mixins/morphing-buttons";
|
||||
|
||||
@import "mixins/cards";
|
||||
|
||||
@import "mixins/chartist";
|
||||
@import "mixins/chartist";
|
||||
@import "mixins/sidebar";
|
||||
+177
-177
@@ -4,54 +4,40 @@
|
||||
> a:focus{
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.navbar{
|
||||
border: $none;
|
||||
font-size: $font-size-navbar;
|
||||
border-radius: 0;
|
||||
|
||||
.navbar-brand {
|
||||
font-weight: $font-weight-normal;
|
||||
font-size: $font-size-navbar;
|
||||
z-index: 3;
|
||||
|
||||
.navbar-brand{
|
||||
font-weight: $font-weight-bold;
|
||||
margin: $navbar-margin-brand;
|
||||
padding: $navbar-padding-brand;
|
||||
font-size: $font-size-large-navbar;
|
||||
}
|
||||
.navbar-nav{
|
||||
> li > a {
|
||||
padding: $navbar-padding-a;
|
||||
line-height: 1.42857;
|
||||
margin: $navbar-margin-a;
|
||||
position: relative;
|
||||
padding: $navbar-padding-a;
|
||||
|
||||
i,
|
||||
p{
|
||||
display: inline-block;
|
||||
margin: 0;
|
||||
}
|
||||
i{
|
||||
position: relative;
|
||||
top: 1px;
|
||||
}
|
||||
}
|
||||
> li > a.btn{
|
||||
margin: $navbar-margin-a-btn;
|
||||
padding: $padding-base-vertical $padding-base-horizontal;
|
||||
}
|
||||
> li > a.btn-round{
|
||||
margin: $navbar-margin-a-btn-round;
|
||||
}
|
||||
> li > a [class^="fa"]{
|
||||
font-size: $font-size-large + 1;
|
||||
position: relative;
|
||||
line-height: 16px;
|
||||
top: 1px;
|
||||
}
|
||||
|
||||
.notification{
|
||||
position: absolute;
|
||||
background-color: #FB404B;
|
||||
text-align: center;
|
||||
border-radius: 10px;
|
||||
min-width: 18px;
|
||||
padding: 0 5px;
|
||||
height: 18px;
|
||||
font-size: 12px;
|
||||
color: #FFFFFF;
|
||||
font-weight: bold;
|
||||
line-height: 18px;
|
||||
top: 0px;
|
||||
left: 7px;
|
||||
}
|
||||
}
|
||||
.btn{
|
||||
margin: $navbar-margin-btn;
|
||||
@@ -60,17 +46,6 @@
|
||||
.btn-simple{
|
||||
font-size: $font-size-medium;
|
||||
}
|
||||
.caret{
|
||||
// @include center-item();
|
||||
}
|
||||
|
||||
&.fixed{
|
||||
width: calc(100% - $sidebar-width);
|
||||
right: 0;
|
||||
left: auto;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.navbar-nav > li > .dropdown-menu{
|
||||
@@ -78,113 +53,38 @@
|
||||
margin-top: -5px;
|
||||
}
|
||||
|
||||
.navbar-transparent, [class*="navbar-ct"]{
|
||||
.navbar-brand{
|
||||
color: $white-color;
|
||||
@include opacity(.9);
|
||||
|
||||
&:focus,
|
||||
&:hover{
|
||||
background-color: transparent;
|
||||
@include opacity(1);
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-nav{
|
||||
> li > a:not(.btn){
|
||||
color: $white-color;
|
||||
border-color: $white-color;
|
||||
@include opacity(0.8);
|
||||
}
|
||||
> .active > a:not(.btn),
|
||||
> .active > a:hover:not(.btn),
|
||||
> .active > a:focus:not(.btn),
|
||||
> li > a:hover:not(.btn),
|
||||
> li > a:focus:not(.btn){
|
||||
background-color: transparent;
|
||||
border-radius: 3px;
|
||||
color: $white-color;
|
||||
@include opacity(1);
|
||||
}
|
||||
.nav > li > a.btn:hover{
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
> .dropdown > a .caret,
|
||||
> .dropdown > a:hover .caret,
|
||||
> .dropdown > a:focus .caret{
|
||||
border-bottom-color: $white-color;
|
||||
border-top-color: $white-color;
|
||||
}
|
||||
|
||||
> .open > a,
|
||||
> .open > a:hover,
|
||||
> .open > a:focus {
|
||||
background-color: transparent;
|
||||
color: $white-color;
|
||||
@include opacity(1);
|
||||
}
|
||||
}
|
||||
|
||||
.btn-default{
|
||||
color: $white-color;
|
||||
border-color: $white-color;
|
||||
}
|
||||
.btn-default.btn-fill{
|
||||
color: $dark-gray;
|
||||
background-color: $white-color;
|
||||
@include opacity(.9);
|
||||
}
|
||||
.btn-default.btn-fill:hover,
|
||||
.btn-default.btn-fill:focus,
|
||||
.btn-default.btn-fill:active,
|
||||
.btn-default.btn-fill.active,
|
||||
.open .dropdown-toggle.btn-fill.btn-default{
|
||||
border-color: $white-color;
|
||||
@include opacity(1);
|
||||
}
|
||||
|
||||
}
|
||||
.navbar-transparent{
|
||||
.dropdown-menu .divider{
|
||||
background-color: rgba($white-color,.2);
|
||||
}
|
||||
}
|
||||
|
||||
.nav-open .nav .caret{
|
||||
border-bottom-color: $white-color;
|
||||
border-top-color: $white-color;
|
||||
}
|
||||
|
||||
.navbar-default {
|
||||
background-color: $white-navbar;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||
|
||||
background-color: $bg-nude;
|
||||
border-bottom: 1px solid $medium-gray;
|
||||
|
||||
.brand{
|
||||
color: $font-color !important;
|
||||
}
|
||||
.navbar-nav{
|
||||
> li > a:not(.btn){
|
||||
color: $dark-gray;
|
||||
}
|
||||
|
||||
> .active > a,
|
||||
> .active > a:not(.btn):hover,
|
||||
> .active > a:not(.btn):focus,
|
||||
> li > a:not(.btn):hover,
|
||||
|
||||
> .active > a,
|
||||
> .active > a:not(.btn):hover,
|
||||
> .active > a:not(.btn):focus,
|
||||
> li > a:not(.btn):hover,
|
||||
> li > a:not(.btn):focus {
|
||||
background-color: transparent;
|
||||
border-radius: 3px;
|
||||
color: $info-color;
|
||||
@include opacity(1);
|
||||
}
|
||||
|
||||
> .dropdown > a:hover .caret,
|
||||
|
||||
> .dropdown > a:hover .caret,
|
||||
> .dropdown > a:focus .caret {
|
||||
border-bottom-color: $info-color;
|
||||
border-top-color: $info-color;
|
||||
|
||||
|
||||
}
|
||||
|
||||
> .open > a,
|
||||
> .open > a:hover,
|
||||
|
||||
> .open > a,
|
||||
> .open > a:hover,
|
||||
> .open > a:focus{
|
||||
background-color: transparent;
|
||||
color: $info-color;
|
||||
@@ -193,9 +93,9 @@
|
||||
.navbar-toggle:hover,.navbar-toggle:focus {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
&:not(.navbar-transparent) .btn-default:hover{
|
||||
color: $info-color;
|
||||
border-color: $info-color;
|
||||
@@ -204,43 +104,19 @@
|
||||
&:not(.navbar-transparent) .btn-neutral:hover,
|
||||
&:not(.navbar-transparent) .btn-neutral:active{
|
||||
color: $dark-gray;
|
||||
}
|
||||
}
|
||||
|
||||
/* Navbar with icons */
|
||||
|
||||
.navbar-icons{
|
||||
&.navbar .navbar-brand{
|
||||
margin-top: 12px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.navbar-nav{
|
||||
> li > a{
|
||||
text-align: center;
|
||||
padding: $navbar-padding-a-icons;
|
||||
margin: $navbar-margin-a-icons;
|
||||
}
|
||||
|
||||
[class^="pe"] {
|
||||
font-size: 30px;
|
||||
position: relative;
|
||||
}
|
||||
p {
|
||||
margin: 3px 0 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-form{
|
||||
@include box-shadow(none);
|
||||
.form-control{
|
||||
@include light-form();
|
||||
@include light-form();
|
||||
height: 22px;
|
||||
font-size: $font-size-navbar;
|
||||
line-height: $line-height-general;
|
||||
color: $light-gray;
|
||||
}
|
||||
.navbar-transparent & .form-control,
|
||||
.navbar-transparent & .form-control,
|
||||
[class*="navbar-ct"] & .form-control{
|
||||
color: $white-color;
|
||||
border: $none;
|
||||
@@ -249,20 +125,20 @@
|
||||
|
||||
}
|
||||
|
||||
.navbar-ct-blue{
|
||||
@include navbar-color($blue-navbar);
|
||||
.navbar-ct-primary{
|
||||
@include navbar-color($bg-primary);
|
||||
}
|
||||
.navbar-ct-azure{
|
||||
@include navbar-color($azure-navbar);
|
||||
.navbar-ct-info{
|
||||
@include navbar-color($bg-info);
|
||||
}
|
||||
.navbar-ct-green{
|
||||
@include navbar-color($green-navbar);
|
||||
.navbar-ct-success{
|
||||
@include navbar-color($bg-success);
|
||||
}
|
||||
.navbar-ct-orange{
|
||||
@include navbar-color($orange-navbar);
|
||||
.navbar-ct-warning{
|
||||
@include navbar-color($bg-warning);
|
||||
}
|
||||
.navbar-ct-red{
|
||||
@include navbar-color($red-navbar);
|
||||
.navbar-ct-danger{
|
||||
@include navbar-color($bg-danger);
|
||||
}
|
||||
|
||||
.navbar-transparent{
|
||||
@@ -275,19 +151,143 @@
|
||||
margin-top: 19px;
|
||||
margin-bottom: 19px;
|
||||
border: $none;
|
||||
|
||||
|
||||
.icon-bar {
|
||||
background-color: $white-color;
|
||||
}
|
||||
.navbar-collapse,
|
||||
.navbar-collapse,
|
||||
.navbar-form {
|
||||
border-color: transparent;
|
||||
}
|
||||
|
||||
|
||||
&.navbar-default .navbar-toggle:hover,
|
||||
&.navbar-default .navbar-toggle:focus {
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-transparent, [class*="navbar-ct"]{
|
||||
|
||||
.navbar-brand{
|
||||
|
||||
@include opacity(.9);
|
||||
|
||||
&:focus,
|
||||
|
||||
&:hover{
|
||||
|
||||
background-color: transparent;
|
||||
|
||||
@include opacity(1);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.navbar-brand:not([class*="text"]){
|
||||
|
||||
color: $white-color;
|
||||
|
||||
}
|
||||
|
||||
.navbar-nav{
|
||||
|
||||
> li > a:not(.btn){
|
||||
|
||||
color: $white-color;
|
||||
|
||||
border-color: $white-color;
|
||||
|
||||
@include opacity(0.8);
|
||||
|
||||
}
|
||||
|
||||
> .active > a:not(.btn),
|
||||
|
||||
> .active > a:hover:not(.btn),
|
||||
|
||||
> .active > a:focus:not(.btn),
|
||||
|
||||
> li > a:hover:not(.btn),
|
||||
|
||||
> li > a:focus:not(.btn){
|
||||
|
||||
background-color: transparent;
|
||||
|
||||
border-radius: 3px;
|
||||
|
||||
color: $white-color;
|
||||
|
||||
@include opacity(1);
|
||||
|
||||
}
|
||||
|
||||
.nav > li > a.btn:hover{
|
||||
|
||||
background-color: transparent;
|
||||
|
||||
}
|
||||
|
||||
> .dropdown > a .caret,
|
||||
|
||||
> .dropdown > a:hover .caret,
|
||||
|
||||
> .dropdown > a:focus .caret{
|
||||
|
||||
border-bottom-color: $white-color;
|
||||
|
||||
border-top-color: $white-color;
|
||||
|
||||
}
|
||||
|
||||
> .open > a,
|
||||
|
||||
> .open > a:hover,
|
||||
|
||||
> .open > a:focus {
|
||||
|
||||
background-color: transparent;
|
||||
|
||||
color: $white-color;
|
||||
|
||||
@include opacity(1);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.btn-default{
|
||||
|
||||
color: $white-color;
|
||||
|
||||
border-color: $white-color;
|
||||
|
||||
}
|
||||
|
||||
.btn-default.btn-fill{
|
||||
|
||||
color: $dark-gray;
|
||||
|
||||
background-color: $white-color;
|
||||
|
||||
@include opacity(.9);
|
||||
|
||||
}
|
||||
|
||||
.btn-default.btn-fill:hover,
|
||||
|
||||
.btn-default.btn-fill:focus,
|
||||
|
||||
.btn-default.btn-fill:active,
|
||||
|
||||
.btn-default.btn-fill.active,
|
||||
|
||||
.open .dropdown-toggle.btn-fill.btn-default{
|
||||
|
||||
border-color: $white-color;
|
||||
|
||||
@include opacity(1);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
+176
-142
@@ -1,51 +1,62 @@
|
||||
@media (min-width: 992px){
|
||||
@media (min-width: 992px){
|
||||
.navbar{
|
||||
min-height: 75px;
|
||||
}
|
||||
.navbar-form {
|
||||
margin-top: 21px;
|
||||
margin-bottom: 21px;
|
||||
padding-left: 5px;
|
||||
padding-right: 5px;
|
||||
}
|
||||
.navbar-nav > li > .dropdown-menu, .dropdown .dropdown-menu{
|
||||
@include transform-scale(0);
|
||||
@include transition($slow-transition-time, $transition-bezier);
|
||||
.navbar-search-form{
|
||||
display: none;
|
||||
}
|
||||
.navbar-nav > li > .dropdown-menu,
|
||||
.dropdown .dropdown-menu{
|
||||
transform: translate3d(0px, -40px, 0px);
|
||||
transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0.3s ease 0s, height 0s linear 0.35s;
|
||||
}
|
||||
.navbar-nav > li.open > .dropdown-menu, .dropdown.open .dropdown-menu{
|
||||
@include transform-scale(1);
|
||||
@include transform-origin($dropdown-coordinates);
|
||||
|
||||
transform: translate3d(0px, 0px, 0px);
|
||||
}
|
||||
|
||||
|
||||
.navbar-nav > li > .dropdown-menu:before{
|
||||
border-bottom: 11px solid rgba(0, 0, 0, 0.2);
|
||||
border-bottom: 11px solid $medium-pale-bg;
|
||||
border-left: 11px solid rgba(0, 0, 0, 0);
|
||||
border-right: 11px solid rgba(0, 0, 0, 0);
|
||||
content: "";
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 12px;
|
||||
right: 12px;
|
||||
top: -11px;
|
||||
}
|
||||
.navbar-nav > li > .dropdown-menu:after {
|
||||
border-bottom: 11px solid #FFFFFF;
|
||||
border-bottom: 11px solid $pale-bg;
|
||||
border-left: 11px solid rgba(0, 0, 0, 0);
|
||||
border-right: 11px solid rgba(0, 0, 0, 0);
|
||||
content: "";
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
left: 12px;
|
||||
right: 12px;
|
||||
top: -10px;
|
||||
}
|
||||
|
||||
.navbar-nav.navbar-right > li > .dropdown-menu:before{
|
||||
left: auto;
|
||||
right: 12px;
|
||||
|
||||
.navbar-nav.navbar-left > li > .dropdown-menu:before{
|
||||
right: auto;
|
||||
left: 12px;
|
||||
}
|
||||
|
||||
.navbar-nav.navbar-right > li > .dropdown-menu:after{
|
||||
left: auto;
|
||||
right: 12px;
|
||||
|
||||
.navbar-nav.navbar-left > li > .dropdown-menu:after{
|
||||
right: auto;
|
||||
left: 12px;
|
||||
}
|
||||
|
||||
|
||||
.navbar{
|
||||
.navbar-header{
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.footer:not(.footer-big){
|
||||
nav > ul{
|
||||
li:first-child{
|
||||
@@ -53,11 +64,11 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
body > .navbar-collapse.collapse{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
|
||||
.card{
|
||||
form{
|
||||
[class*="col-"]{
|
||||
@@ -75,11 +86,11 @@
|
||||
|
||||
/* Changes for small display */
|
||||
|
||||
@media (max-width: 991px){
|
||||
@media (max-width: 991px){
|
||||
.sidebar{
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
.main-panel{
|
||||
width: 100%;
|
||||
}
|
||||
@@ -90,9 +101,12 @@
|
||||
body {
|
||||
position: relative;
|
||||
}
|
||||
h6{
|
||||
font-size: 1em;
|
||||
}
|
||||
.wrapper{
|
||||
@include transform-translate-x(0px);
|
||||
@include transition (0.33s, cubic-bezier(0.685, 0.0473, 0.346, 1));
|
||||
@include transition (0.33s, cubic-bezier(0.685, 0.0473, 0.346, 1));
|
||||
left: 0;
|
||||
background-color: white;
|
||||
}
|
||||
@@ -107,19 +121,19 @@
|
||||
.navbar .navbar-collapse.collapsing{
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
|
||||
.navbar-nav > li{
|
||||
float: none;
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
body > .navbar-collapse {
|
||||
|
||||
.off-canvas-sidebar {
|
||||
position: fixed;
|
||||
display: block;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 250px;
|
||||
width: 230px;
|
||||
right: 0;
|
||||
z-index: 1032;
|
||||
visibility: visible;
|
||||
@@ -127,48 +141,128 @@
|
||||
overflow-y: visible;
|
||||
border-top: none;
|
||||
text-align: left;
|
||||
padding: 0;
|
||||
|
||||
@include transform-translate-x(250px);
|
||||
padding-right: 0px;
|
||||
padding-left: 0;
|
||||
|
||||
@include transform-translate-x(230px);
|
||||
@include transition (0.33s, cubic-bezier(0.685, 0.0473, 0.346, 1));
|
||||
> ul {
|
||||
|
||||
.sidebar-wrapper {
|
||||
position: relative;
|
||||
z-index: 4;
|
||||
overflow-y:scroll;
|
||||
height: calc(100vh - 61px);
|
||||
width: 100%;
|
||||
z-index: 3;
|
||||
overflow-y: scroll;
|
||||
height: 100%;
|
||||
box-shadow: inset 1px 0px 0px 0px $medium-gray;
|
||||
}
|
||||
.nav > li{
|
||||
& > a{
|
||||
padding: 30px 25px;
|
||||
|
||||
.nav{
|
||||
margin-top: 0;
|
||||
padding: 10px $margin-base-vertical 0;
|
||||
|
||||
> li{
|
||||
|
||||
> a{
|
||||
margin: 0px 0px;
|
||||
color: $default-color;
|
||||
text-transform: uppercase;
|
||||
font-weight: 600;
|
||||
font-size: $font-size-small;
|
||||
line-height: $line-height-general;
|
||||
padding: 10px 0;
|
||||
|
||||
&:hover,
|
||||
&.active{
|
||||
color: $default-states-color;
|
||||
}
|
||||
|
||||
p,
|
||||
.notification,
|
||||
.caret,
|
||||
{
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.caret{
|
||||
float: right;
|
||||
position: relative;
|
||||
top: 12px;
|
||||
}
|
||||
|
||||
i{
|
||||
font-size: 18px;
|
||||
margin-right: 10px;
|
||||
line-height: 26px;
|
||||
}
|
||||
}
|
||||
|
||||
&.active > a{
|
||||
|
||||
&:before{
|
||||
border-right: none;
|
||||
border-left: 12px solid $medium-gray;
|
||||
border-top: 12px solid transparent;
|
||||
border-bottom: 12px solid transparent;
|
||||
right: auto;
|
||||
margin-left: -$margin-base-vertical;
|
||||
left: 0px;
|
||||
top: 10px;
|
||||
}
|
||||
|
||||
&:after{
|
||||
border-right: none;
|
||||
border-left: 12px solid $bg-nude;
|
||||
border-top: 12px solid transparent;
|
||||
border-bottom: 12px solid transparent;
|
||||
right: auto;
|
||||
margin-left: -$margin-base-vertical;
|
||||
left: -1px;
|
||||
top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
&::before{
|
||||
|
||||
&::after{
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
background-color: #282828;
|
||||
background-color: $bg-nude;
|
||||
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(112, 112, 112, 0) 60%, rgba(186, 186, 186, 0.15) 100%);
|
||||
display: block;
|
||||
content: "";
|
||||
z-index: 1;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
&.has-image::after{
|
||||
@include black-filter(.8);
|
||||
}
|
||||
|
||||
.logo{
|
||||
position: relative;
|
||||
z-index: 4;
|
||||
padding-top: 11px;
|
||||
padding-bottom: 11px;
|
||||
}
|
||||
}
|
||||
|
||||
.divider{
|
||||
height: 1px;
|
||||
margin: 10px 0;
|
||||
}
|
||||
}
|
||||
.nav-open .navbar-collapse{
|
||||
@include transform-translate-x(0px);
|
||||
}
|
||||
.nav-open .navbar .container{
|
||||
left: -250px;
|
||||
left: -230px;
|
||||
}
|
||||
.nav-open .wrapper{
|
||||
left: 0;
|
||||
@include transform-translate-x(-250px);
|
||||
@include transform-translate-x(-230px);
|
||||
}
|
||||
.navbar-toggle .icon-bar {
|
||||
display: block;
|
||||
@@ -179,7 +273,7 @@
|
||||
border-radius: 1px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
|
||||
.navbar-header .navbar-toggle {
|
||||
margin: 10px 15px 10px 0;
|
||||
width: 40px;
|
||||
@@ -194,7 +288,7 @@
|
||||
top: 0px;
|
||||
@include bar-animation($topbar-back);
|
||||
}
|
||||
.bar2 {
|
||||
.bar2 {
|
||||
opacity: 1;
|
||||
}
|
||||
.bar3 {
|
||||
@@ -212,12 +306,12 @@
|
||||
bottom: 6px;
|
||||
@include bar-animation($bottombar-x);
|
||||
}
|
||||
|
||||
|
||||
@include topbar-x-rotation();
|
||||
@include topbar-back-rotation();
|
||||
@include bottombar-x-rotation();
|
||||
@include bottombar-back-rotation();
|
||||
|
||||
|
||||
@-webkit-keyframes fadeIn {
|
||||
0% {opacity: 0;}
|
||||
100% {opacity: 1;}
|
||||
@@ -230,73 +324,26 @@
|
||||
0% {opacity: 0;}
|
||||
100% {opacity: 1;}
|
||||
}
|
||||
|
||||
|
||||
.dropdown-menu .divider{
|
||||
background-color: rgba(229, 229, 229, 0.15);
|
||||
}
|
||||
|
||||
|
||||
.navbar-nav {
|
||||
margin: 1px 0;
|
||||
|
||||
.open .dropdown-menu > li {
|
||||
& > a{
|
||||
padding: 15px 15px 5px 50px;
|
||||
}
|
||||
|
||||
&:first-child > a{
|
||||
padding: 5px 15px 5px 50px;
|
||||
}
|
||||
|
||||
&:last-child > a {
|
||||
padding: 15px 15px 25px 50px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[class*="navbar-"] .navbar-nav {
|
||||
& > li > a,
|
||||
> li > a:hover,
|
||||
> li > a:focus,
|
||||
.active > a,
|
||||
.active > a:hover,
|
||||
.active > a:focus,
|
||||
.open .dropdown-menu > li > a,
|
||||
.open .dropdown-menu > li > a:hover,
|
||||
.open .dropdown-menu > li > a:focus,
|
||||
.navbar-nav .open .dropdown-menu > li > a:active {
|
||||
color: white;
|
||||
}
|
||||
|
||||
& > li > a,
|
||||
> li > a:hover,
|
||||
> li > a:focus,
|
||||
.open .dropdown-menu > li > a,
|
||||
.open .dropdown-menu > li > a:hover,
|
||||
.open .dropdown-menu > li > a:focus{
|
||||
opacity: .7;
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
&.navbar-nav .open .dropdown-menu > li > a:active {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
& .dropdown > a{
|
||||
&:hover .caret {
|
||||
border-bottom-color: #777;
|
||||
border-top-color: #777;
|
||||
}
|
||||
&:active .caret {
|
||||
border-bottom-color: white;
|
||||
border-top-color: white;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.dropdown-menu {
|
||||
display: none;
|
||||
|
||||
& > li > a{
|
||||
&:hover,
|
||||
&:focus{
|
||||
background-color: transparent;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.navbar-fixed-top {
|
||||
-webkit-backface-visibility: hidden;
|
||||
}
|
||||
@@ -307,30 +354,11 @@
|
||||
opacity: 0;
|
||||
top: 0;
|
||||
left: auto;
|
||||
right: 250px;
|
||||
right: 230px;
|
||||
content: "";
|
||||
z-index: 9999;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.social-line .btn{
|
||||
margin: $margin-bottom;
|
||||
}
|
||||
.subscribe-line .form-control{
|
||||
margin: $margin-bottom;
|
||||
}
|
||||
.social-line.pull-right{
|
||||
float: none;
|
||||
}
|
||||
.footer nav.pull-left{
|
||||
float: none !important;
|
||||
}
|
||||
.footer:not(.footer-big) nav > ul li{
|
||||
float: none;
|
||||
}
|
||||
.social-area.pull-right{
|
||||
float: none !important;
|
||||
}
|
||||
.form-control + .form-control-feedback{
|
||||
margin-top: -8px;
|
||||
}
|
||||
@@ -349,7 +377,7 @@
|
||||
.media-post .media-body{
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
.navbar-collapse.collapse{
|
||||
height: 100% !important;
|
||||
}
|
||||
@@ -372,17 +400,23 @@
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
.navbar-collapse{
|
||||
.nav p{
|
||||
font-size: $font-size-base;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
[class^="pe-7s-"]{
|
||||
float: left;
|
||||
font-size: 20px;
|
||||
margin-right: 10px;
|
||||
|
||||
.main-panel > .content{
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
.nav .open > a{
|
||||
&,
|
||||
&:focus,
|
||||
&:hover{
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.footer .copyright{
|
||||
padding: 0px 15px;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -403,11 +437,11 @@
|
||||
.table-responsive {
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
border: 1px solid #dddddd;
|
||||
overflow-x: scroll;
|
||||
overflow-y: hidden;
|
||||
-ms-overflow-style: -ms-autohiding-scrollbar;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
+194
@@ -0,0 +1,194 @@
|
||||
.sidebar{
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
.sidebar-wrapper{
|
||||
position: relative;
|
||||
max-height: none;
|
||||
min-height: 100%;
|
||||
overflow: hidden;
|
||||
width: 260px;
|
||||
z-index: 4;
|
||||
box-shadow: inset -1px 0px 0px 0px $medium-gray;
|
||||
}
|
||||
.sidebar-background{
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
display: block;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-size: cover;
|
||||
background-position: center center;
|
||||
}
|
||||
|
||||
}
|
||||
.sidebar,
|
||||
.off-canvas-sidebar{
|
||||
width: 260px;
|
||||
display: block;
|
||||
font-weight: 200;
|
||||
|
||||
.logo{
|
||||
padding: 18px 0px;
|
||||
margin: 0 20px;
|
||||
|
||||
p{
|
||||
float: left;
|
||||
font-size: 20px;
|
||||
margin: 10px 10px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.simple-text{
|
||||
text-transform: uppercase;
|
||||
padding: $padding-small-vertical $padding-zero;
|
||||
display: block;
|
||||
font-size: $font-size-large;
|
||||
text-align: center;
|
||||
font-weight: $font-weight-normal;
|
||||
line-height: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
.nav{
|
||||
margin-top: 20px;
|
||||
|
||||
li{
|
||||
> a{
|
||||
margin: 10px 0px;
|
||||
padding-left: 25px;
|
||||
padding-right: 25px;
|
||||
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
&:hover > a{
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&.active > a{
|
||||
color: $primary-color;
|
||||
opacity: 1;
|
||||
|
||||
&:before{
|
||||
border-right: 17px solid $medium-gray;
|
||||
border-top: 17px solid transparent;
|
||||
border-bottom: 17px solid transparent;
|
||||
content: "";
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 8px;
|
||||
}
|
||||
|
||||
&:after{
|
||||
border-right: 17px solid $bg-nude;
|
||||
border-top: 17px solid transparent;
|
||||
border-bottom: 17px solid transparent;
|
||||
content: "";
|
||||
display: inline-block;
|
||||
position: absolute;
|
||||
right: -1px;
|
||||
top: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
p{
|
||||
margin: 0;
|
||||
line-height: 30px;
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
i{
|
||||
font-size: 24px;
|
||||
float: left;
|
||||
margin-right: 15px;
|
||||
line-height: 30px;
|
||||
width: 30px;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
&:after,
|
||||
&:before{
|
||||
display: block;
|
||||
content: "";
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 2;
|
||||
background: $white-background-color;
|
||||
}
|
||||
|
||||
&,
|
||||
&[data-background-color="white"]{
|
||||
@include sidebar-background-color($white-background-color, $default-color);
|
||||
}
|
||||
&[data-background-color="black"]{
|
||||
@include sidebar-background-color($black-background-color, $white-color);
|
||||
}
|
||||
|
||||
&[data-active-color="primary"]{
|
||||
@include sidebar-active-color($primary-color);
|
||||
}
|
||||
&[data-active-color="info"]{
|
||||
@include sidebar-active-color($info-color);
|
||||
}
|
||||
&[data-active-color="success"]{
|
||||
@include sidebar-active-color($success-color);
|
||||
}
|
||||
&[data-active-color="warning"]{
|
||||
@include sidebar-active-color($warning-color);
|
||||
}
|
||||
&[data-active-color="danger"]{
|
||||
@include sidebar-active-color($danger-color);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
.main-panel{
|
||||
background-color: $bg-nude;
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
float: right;
|
||||
width: $sidebar-width;
|
||||
min-height: 100%;
|
||||
|
||||
> .content{
|
||||
padding: 30px 15px;
|
||||
min-height: calc(100% - 123px);
|
||||
}
|
||||
|
||||
> .footer{
|
||||
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.navbar{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebar,
|
||||
.main-panel{
|
||||
overflow: auto;
|
||||
max-height: 100%;
|
||||
height: 100%;
|
||||
-webkit-transition-property: top,bottom;
|
||||
transition-property: top,bottom;
|
||||
-webkit-transition-duration: .2s,.2s;
|
||||
transition-duration: .2s,.2s;
|
||||
-webkit-transition-timing-function: linear,linear;
|
||||
transition-timing-function: linear,linear;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
@@ -0,0 +1,77 @@
|
||||
.table{
|
||||
thead,
|
||||
tbody,
|
||||
tfoot{
|
||||
tr > th,
|
||||
tr > td{
|
||||
border-top: 1px solid $table-line-color;
|
||||
}
|
||||
}
|
||||
> thead > tr > th{
|
||||
border-bottom-width: 0;
|
||||
font-size: $font-size-h5;
|
||||
font-weight: $font-weight-light;
|
||||
}
|
||||
|
||||
.radio,
|
||||
.checkbox{
|
||||
margin-top: 0;
|
||||
margin-bottom: 22px;
|
||||
padding: 0;
|
||||
width: 15px;
|
||||
}
|
||||
> thead > tr > th,
|
||||
> tbody > tr > th,
|
||||
> tfoot > tr > th,
|
||||
> thead > tr > td,
|
||||
> tbody > tr > td,
|
||||
> tfoot > tr > td{
|
||||
padding: 12px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.th-description{
|
||||
max-width: 150px;
|
||||
}
|
||||
.td-price{
|
||||
font-size: 26px;
|
||||
font-weight: $font-weight-light;
|
||||
margin-top: 5px;
|
||||
text-align: right;
|
||||
}
|
||||
.td-total{
|
||||
font-weight: $font-weight-bold;
|
||||
font-size: $font-size-h5;
|
||||
padding-top: 20px;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.td-actions .btn{
|
||||
|
||||
&.btn-sm,
|
||||
&.btn-xs{
|
||||
padding-left: 3px;
|
||||
padding-right: 3px;
|
||||
}
|
||||
}
|
||||
|
||||
> tbody > tr{
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
.table-striped{
|
||||
tbody > tr:nth-of-type(2n+1) {
|
||||
background-color: #fff;
|
||||
}
|
||||
tbody > tr:nth-of-type(2n) {
|
||||
background-color: $pale-bg;
|
||||
}
|
||||
> thead > tr > th,
|
||||
> tbody > tr > th,
|
||||
> tfoot > tr > th,
|
||||
> thead > tr > td,
|
||||
> tbody > tr > td,
|
||||
> tfoot > tr > td{
|
||||
padding: 15px 8px;
|
||||
}
|
||||
}
|
||||
+60
-33
@@ -1,28 +1,11 @@
|
||||
/* Font Smoothing */
|
||||
body,
|
||||
h1, .h1,
|
||||
h2, .h2,
|
||||
h3, .h3,
|
||||
h4, .h4,
|
||||
h5, .h5,
|
||||
h6, .h6,
|
||||
p,
|
||||
.navbar,
|
||||
.brand,
|
||||
.btn-simple,
|
||||
.alert,
|
||||
a,
|
||||
.td-name,
|
||||
td,
|
||||
button.close{
|
||||
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, .navbar, .brand, a, .td-name, td{
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-family: "Roboto","Helvetica Neue",Arial,sans-serif;
|
||||
font-weight: $font-weight-normal;
|
||||
font-family: 'Muli', "Helvetica", Arial, sans-serif;
|
||||
}
|
||||
|
||||
h1, .h1, h2, .h2, h3, .h3, h4, .h4{
|
||||
font-weight: $font-weight-light;
|
||||
font-weight: $font-weight-normal;
|
||||
margin: $margin-large-vertical 0 $margin-base-vertical;
|
||||
}
|
||||
|
||||
@@ -34,14 +17,18 @@ h2, .h2{
|
||||
}
|
||||
h3, .h3{
|
||||
font-size: $font-size-h3;
|
||||
line-height: 1.4;
|
||||
margin: 20px 0 10px;
|
||||
}
|
||||
h4, .h4{
|
||||
font-size: $font-size-h4;
|
||||
line-height: 30px;
|
||||
font-weight: $font-weight-bold;
|
||||
line-height: 1.2em;
|
||||
}
|
||||
h5, .h5 {
|
||||
font-size: $font-size-h5;
|
||||
font-weight: $font-weight-normal;
|
||||
line-height: 1.4em;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
h6, .h6{
|
||||
@@ -63,28 +50,68 @@ h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small
|
||||
h1 small, h2 small, h3 small, h1 .small, h2 .small, h3 .small {
|
||||
font-size: 60%;
|
||||
}
|
||||
|
||||
h1 .subtitle{
|
||||
display: block;
|
||||
margin: 0 0 $margin-large-vertical;
|
||||
.title-uppercase{
|
||||
text-transform: uppercase;
|
||||
}
|
||||
blockquote{
|
||||
font-style: italic;
|
||||
}
|
||||
blockquote small{
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.text-muted{
|
||||
color: #9A9A9A;
|
||||
color: $medium-gray;
|
||||
}
|
||||
.text-primary, .text-primary:hover{
|
||||
color: #1D62F0 !important;
|
||||
color: $primary-states-color;
|
||||
}
|
||||
.text-info, .text-info:hover{
|
||||
color: $info-color !important;
|
||||
color: $info-states-color;
|
||||
}
|
||||
.text-success, .text-success:hover{
|
||||
color: $success-color !important;
|
||||
color: $success-states-color;
|
||||
}
|
||||
.text-warning, .text-warning:hover{
|
||||
color: $warning-color !important;
|
||||
color: $warning-states-color;
|
||||
}
|
||||
.text-danger, .text-danger:hover{
|
||||
color: $danger-color !important;
|
||||
color: $danger-states-color;
|
||||
}
|
||||
.glyphicon{
|
||||
line-height: 1;
|
||||
}
|
||||
strong{
|
||||
color: $default-states-color;
|
||||
}
|
||||
.icon-primary{
|
||||
color: $primary-color;
|
||||
}
|
||||
.icon-info{
|
||||
color: $info-color;
|
||||
}
|
||||
.icon-success{
|
||||
color: $success-color;
|
||||
}
|
||||
.icon-warning{
|
||||
color: $warning-color;
|
||||
}
|
||||
.icon-danger{
|
||||
color: $danger-color;
|
||||
}
|
||||
.chart-legend{
|
||||
.text-primary, .text-primary:hover{
|
||||
color: $primary-color;
|
||||
}
|
||||
.text-info, .text-info:hover{
|
||||
color: $info-color;
|
||||
}
|
||||
.text-success, .text-success:hover{
|
||||
color: $success-color;
|
||||
}
|
||||
.text-warning, .text-warning:hover{
|
||||
color: $warning-color;
|
||||
}
|
||||
.text-danger, .text-danger:hover{
|
||||
color: $danger-color;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,262 @@
|
||||
$font-color: #66615b !default;
|
||||
$fill-font-color: rgba(255, 255, 255, 0.7);
|
||||
|
||||
$none: 0 !default;
|
||||
$border-thin: 1px !default;
|
||||
$border-thick: 2px !default;
|
||||
|
||||
$white-color: #FFFFFF !default;
|
||||
$white-bg: #FFFFFF !default;
|
||||
|
||||
$smoke-bg: #F5F5F5 !default;
|
||||
$pale-bg: #FFFCF5 !default;
|
||||
$medium-pale-bg: #F1EAE0 !default;
|
||||
|
||||
$table-line-color: #CCC5B9 !default;
|
||||
$muted-color: #a49e93 !default;
|
||||
|
||||
$black-bg: rgba(30,30,30,.97) !default;
|
||||
|
||||
$black-color: #333333 !default;
|
||||
$black-hr: #444444 !default;
|
||||
|
||||
$white-background-color: #FFFFFF !default;
|
||||
$black-background-color: #212120 !default;
|
||||
|
||||
$light-gray: #E3E3E3 !default;
|
||||
$medium-gray: #DDDDDD !default;
|
||||
$dark-gray: #9A9A9A !default;
|
||||
|
||||
$gray-input-bg: #fffcf5 !default;
|
||||
$danger-input-bg: #FFC0A4 !default;
|
||||
$success-input-bg: #ABF3CB !default;
|
||||
$other-medium-gray: #A49E93 !default;
|
||||
$transparent-bg: transparent !default;
|
||||
|
||||
$default-color: #66615B !default;
|
||||
$default-bg: #66615B !default;
|
||||
$default-states-color: #403D39 !default;
|
||||
|
||||
$primary-color: #7A9E9F !default;
|
||||
$primary-bg: #7A9E9F !default;
|
||||
$primary-states-color: #427C89 !default;
|
||||
|
||||
$success-color: #7AC29A !default;
|
||||
$success-bg: #7AC29A !default;
|
||||
$success-states-color: #42A084 !default;
|
||||
|
||||
$info-color: #68B3C8 !default;
|
||||
$info-bg: #68B3C8 !default;
|
||||
$info-states-color: #3091B2 !default;
|
||||
|
||||
$warning-color: #F3BB45 !default;
|
||||
$warning-bg: #F3BB45 !default;
|
||||
$warning-states-color: #BB992F !default;
|
||||
|
||||
|
||||
$danger-color: #EB5E28 !default;
|
||||
$danger-bg: #EB5E28 !default;
|
||||
$danger-states-color: #B33C12 !default;
|
||||
|
||||
|
||||
$link-disabled-color: #666666 !default;
|
||||
|
||||
|
||||
/* light colors - used for select dropdown */
|
||||
|
||||
$light-blue: rgba($primary-color, .2);
|
||||
$light-azure: rgba($info-color, .2);
|
||||
$light-green: rgba($success-color, .2);
|
||||
$light-orange: rgba($warning-color, .2);
|
||||
$light-red: rgba($danger-color, .2);
|
||||
|
||||
|
||||
//== Components
|
||||
//
|
||||
$padding-base-vertical: 7px !default;
|
||||
$padding-base-horizontal: 18px !default;
|
||||
|
||||
$padding-round-vertical: 9px !default;
|
||||
$padding-round-horizontal: 18px !default;
|
||||
|
||||
$padding-simple-vertical: 10px !default;
|
||||
$padding-simple-horizontal: 18px !default;
|
||||
|
||||
$padding-large-vertical: 11px !default;
|
||||
$padding-large-horizontal: 30px !default;
|
||||
|
||||
$padding-small-vertical: 4px !default;
|
||||
$padding-small-horizontal: 10px !default;
|
||||
|
||||
$padding-xs-vertical: 2px !default;
|
||||
$padding-xs-horizontal: 5px !default;
|
||||
|
||||
$padding-label-vertical: 2px !default;
|
||||
$padding-label-horizontal: 12px !default;
|
||||
|
||||
// padding for links inside dropdown menu
|
||||
$padding-dropdown-vertical: 10px !default;
|
||||
$padding-dropdown-horizontal: 15px !default;
|
||||
|
||||
$margin-large-vertical: 30px !default;
|
||||
$margin-base-vertical: 15px !default;
|
||||
|
||||
// border radius for buttons
|
||||
$border-radius-btn-small: 26px !default;
|
||||
$border-radius-btn-base: 20px !default;
|
||||
$border-radius-btn-large: 50px !default;
|
||||
|
||||
|
||||
// Cristina: am schimbat aici si s-au modificat inputurile
|
||||
$margin-bottom: 0 0 10px 0 !default;
|
||||
$border-radius-small: 3px !default;
|
||||
$border-radius-base: 4px !default;
|
||||
$border-radius-large: 6px !default;
|
||||
$border-radius-extreme: 6px !default;
|
||||
|
||||
$border-radius-large-top: $border-radius-large $border-radius-large 0 0 !default;
|
||||
$border-radius-large-bottom: 0 0 $border-radius-large $border-radius-large !default;
|
||||
|
||||
$btn-round-radius: 30px !default;
|
||||
|
||||
$height-base: 40px !default;
|
||||
|
||||
$font-size-base: 14px !default;
|
||||
$font-size-xs: 12px !default;
|
||||
$font-size-small: 12px !default;
|
||||
$font-size-medium: 16px !default;
|
||||
$font-size-large: 18px !default;
|
||||
$font-size-large-navbar: 20px !default;
|
||||
|
||||
$font-size-h1: 3.2em !default;
|
||||
$font-size-h2: 2.6em !default;
|
||||
$font-size-h3: 1.825em !default;
|
||||
$font-size-h4: 1.5em !default;
|
||||
$font-size-h5: 1.25em !default;
|
||||
$font-size-h6: 0.9em !default;
|
||||
$font-paragraph: 16px !default;
|
||||
$font-size-navbar: 16px !default;
|
||||
$font-size-small: 12px !default;
|
||||
|
||||
$font-weight-light: 300 !default;
|
||||
$font-weight-normal: 400 !default;
|
||||
$font-weight-semi: 500 !default;
|
||||
$font-weight-bold: 600 !default;
|
||||
|
||||
$line-height-small: 20px !default;
|
||||
$line-height-general: 1.4em !default;
|
||||
$line-height: 36px !default;
|
||||
$line-height-lg: 54px !default;
|
||||
|
||||
|
||||
$border-radius-top: 10px 10px 0 0 !default;
|
||||
$border-radius-bottom: 0 0 10px 10px !default;
|
||||
|
||||
$dropdown-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(17, 16, 15, 0.1);
|
||||
|
||||
$general-transition-time: 300ms !default;
|
||||
|
||||
$slow-transition-time: 300ms !default;
|
||||
$dropdown-coordinates: 29px -50px !default;
|
||||
|
||||
$fast-transition-time: 150ms !default;
|
||||
$select-coordinates: 50% -40px !default;
|
||||
|
||||
$transition-linear: linear !default;
|
||||
$transition-bezier: cubic-bezier(0.34, 1.61, 0.7, 1) !default;
|
||||
$transition-ease: ease 0s;
|
||||
|
||||
$navbar-padding-a: 10px 15px;
|
||||
$navbar-margin-a: 15px 0px;
|
||||
|
||||
$padding-social-a: 10px 5px;
|
||||
|
||||
$navbar-margin-a-btn: 15px 3px;
|
||||
$navbar-margin-a-btn-round: 16px 3px;
|
||||
|
||||
|
||||
$navbar-padding-brand: 20px 15px;
|
||||
$navbar-margin-brand: 5px 0px;
|
||||
|
||||
$navbar-margin-brand-icons: 12px auto;
|
||||
|
||||
$navbar-margin-btn: 15px 3px;
|
||||
|
||||
$height-icon: 64px !default;
|
||||
$width-icon: 64px !default;
|
||||
$padding-icon: 12px !default;
|
||||
$border-radius-icon: 15px !default;
|
||||
|
||||
|
||||
$white-navbar: rgba(#FFFFFF, .96);
|
||||
$blue-navbar: rgba(#34ACDC, .98);
|
||||
$azure-navbar: rgba(#5BCAFF, .98);
|
||||
$green-navbar: rgba(#4CD964, .98);
|
||||
$orange-navbar: rgba(#FF9500, .98);
|
||||
$red-navbar: rgba(#FF4C40, .98);
|
||||
|
||||
$bg-nude: #f4f3ef !default;
|
||||
$bg-primary: #8ECFD5 !default;
|
||||
$bg-info: #7CE4FE !default;
|
||||
$bg-success: #8EF3C5 !default;
|
||||
$bg-warning: #FFE28C !default;
|
||||
$bg-danger: #FF8F5E !default;
|
||||
|
||||
$topbar-x: topbar-x !default;
|
||||
$topbar-back: topbar-back !default;
|
||||
$bottombar-x: bottombar-x !default;
|
||||
$bottombar-back: bottombar-back !default;
|
||||
|
||||
$transition-linear: linear !default;
|
||||
$transition-bezier: cubic-bezier(0.34, 1.61, 0.7, 1) !default;
|
||||
$transition-ease: ease 0s;
|
||||
$transition-ease-in: ease-in !default;
|
||||
$transition-ease-out: ease-out !default;
|
||||
|
||||
$general-transition-time: 300ms !default;
|
||||
|
||||
$slow-transition-time: 370ms !default;
|
||||
$dropdown-coordinates: 29px -50px !default;
|
||||
|
||||
$fast-transition-time: 150ms !default;
|
||||
|
||||
$ultra-fast-transition-time: 100ms !default;
|
||||
|
||||
$select-coordinates: 50% -40px !default;
|
||||
|
||||
$padding-zero: 0px !default;
|
||||
|
||||
$sidebar-width: calc(100% - 260px) !default;
|
||||
$medium-dark-gray: #AAAAAA !default;
|
||||
|
||||
//variables used in cards
|
||||
$card-black-color: #252422 !default;
|
||||
$card-muted-color: #ccc5b9 !default;
|
||||
|
||||
|
||||
//variables used for sidebar
|
||||
$sidebar-background-dark-blue: #506367;
|
||||
|
||||
$sidebar-background-blue: #b8d8d8 !default;
|
||||
$sidebar-font-blue: #506568 !default;
|
||||
$sidebar-subtitle-blue: #7a9e9f !default;
|
||||
|
||||
$sidebar-background-green: #d5e5a3 !default;
|
||||
$sidebar-font-green: #60773d !default;
|
||||
$sidebar-subtitle-green: #92ac56 !default;
|
||||
|
||||
$sidebar-background-yellow: #ffe28c !default;
|
||||
$sidebar-font-yellow: #b25825 !default;
|
||||
$sidebar-subtitle-yellow: #d88715 !default;
|
||||
|
||||
$sidebar-background-brown: #d6c1ab !default;
|
||||
$sidebar-font-brown: #75442e !default;
|
||||
$sidebar-subtitle-brown: #a47e65 !default;
|
||||
|
||||
$sidebar-background-purple: #baa9ba !default;
|
||||
$sidebar-font-purple: #3a283d !default;
|
||||
$sidebar-subtitle-purple: #5a283d !default;
|
||||
|
||||
$sidebar-background-orange: #ff8f5e !default;
|
||||
$sidebar-font-orange: #772510 !default;
|
||||
$sidebar-subtitle-orange: #e95e37 !default;
|
||||
+24
-9
@@ -8,9 +8,12 @@
|
||||
&:active,
|
||||
&.active,
|
||||
.open > &.dropdown-toggle {
|
||||
background-color: $transparent-bg;
|
||||
color: $btn-states-color;
|
||||
border-color: $btn-states-color;
|
||||
background-color: $btn-color;
|
||||
color: $fill-font-color;
|
||||
border-color: $btn-color;
|
||||
.caret{
|
||||
border-top-color: $fill-font-color;
|
||||
}
|
||||
}
|
||||
|
||||
&.disabled,
|
||||
@@ -24,7 +27,7 @@
|
||||
&:active,
|
||||
&.active {
|
||||
background-color: $transparent-bg;
|
||||
border-color: $btn-color;
|
||||
border-color: $btn-color;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,6 +44,7 @@
|
||||
.open > &.dropdown-toggle{
|
||||
background-color: $btn-states-color;
|
||||
color: $white-color;
|
||||
border-color: $btn-states-color;
|
||||
}
|
||||
|
||||
.caret{
|
||||
@@ -48,21 +52,32 @@
|
||||
}
|
||||
}
|
||||
|
||||
&.btn-simple {
|
||||
&:hover,
|
||||
&:focus,
|
||||
&:active,
|
||||
&.active,
|
||||
.open > &.dropdown-toggle{
|
||||
background-color: $transparent-bg;
|
||||
color: $btn-states-color;
|
||||
}
|
||||
|
||||
.caret{
|
||||
border-top-color: $white-color;
|
||||
}
|
||||
}
|
||||
|
||||
.caret{
|
||||
border-top-color: $btn-color;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@mixin btn-size($padding-vertical, $padding-horizontal, $font-size, $border){
|
||||
@mixin btn-size($padding-vertical, $padding-horizontal, $font-size, $border, $line-height){
|
||||
font-size: $font-size;
|
||||
border-radius: $border;
|
||||
padding: $padding-vertical $padding-horizontal;
|
||||
|
||||
&.btn-round{
|
||||
padding: $padding-vertical + 1 $padding-horizontal;
|
||||
}
|
||||
|
||||
&.btn-simple{
|
||||
padding: $padding-vertical + 2 $padding-horizontal;
|
||||
}
|
||||
+39
-20
@@ -28,7 +28,7 @@ $ct-container-ratio: (1/1.618) !default;
|
||||
|
||||
// Text styles for labels
|
||||
$ct-text-color: rgba(0, 0, 0, 0.4) !default;
|
||||
$ct-text-size: 1.3rem !default;
|
||||
$ct-text-size: 0.9em !default;
|
||||
$ct-text-align: flex-start !default;
|
||||
$ct-text-justify: flex-start !default;
|
||||
$ct-text-line-height: 1;
|
||||
@@ -39,13 +39,13 @@ $ct-grid-dasharray: 2px !default;
|
||||
$ct-grid-width: 1px !default;
|
||||
|
||||
// Line chart properties
|
||||
$ct-line-width: 3px !default;
|
||||
$ct-line-width: 4px !default;
|
||||
$ct-line-dasharray: false !default;
|
||||
$ct-point-size: 8px !default;
|
||||
$ct-point-size: 10px !default;
|
||||
// Line chart point, can be either round or square
|
||||
$ct-point-shape: round !default;
|
||||
// Area fill transparency between 0 and 1
|
||||
$ct-area-opacity: 0.8 !default;
|
||||
$ct-area-opacity: 0.7 !default;
|
||||
|
||||
// Bar chart bar width
|
||||
$ct-bar-width: 10px !default;
|
||||
@@ -67,19 +67,38 @@ $ct-include-alternative-responsive-containers: $ct-include-classes !default;
|
||||
// Series names and colors. This can be extended or customized as desired. Just add more series and colors.
|
||||
$ct-series-names: (a, b, c, d, e, f, g, h, i, j, k, l, m, n, o) !default;
|
||||
$ct-series-colors: (
|
||||
$new-blue,
|
||||
$new-red,
|
||||
$new-orange,
|
||||
$new-purple,
|
||||
$new-green,
|
||||
$new-dark-blue,
|
||||
$new-black,
|
||||
$social-google,
|
||||
$social-tumblr,
|
||||
$social-youtube,
|
||||
$social-twitter,
|
||||
$social-pinterest,
|
||||
$social-behance,
|
||||
#6188e2,
|
||||
#a748ca
|
||||
) !default;
|
||||
$info-color,
|
||||
$warning-color,
|
||||
$danger-color,
|
||||
$success-color,
|
||||
$primary-color,
|
||||
rgba($info-color,.8),
|
||||
rgba($success-color,.8),
|
||||
rgba($warning-color,.8),
|
||||
rgba($danger-color,.8),
|
||||
rgba($primary-color,.8),
|
||||
rgba($info-color,.6),
|
||||
rgba($success-color,.6),
|
||||
rgba($warning-color,.6),
|
||||
rgba($danger-color,.6),
|
||||
rgba($primary-color,.6)
|
||||
|
||||
) !default;
|
||||
|
||||
// Paper Kit Colors
|
||||
|
||||
.ct-blue{
|
||||
stroke: $primary-color !important;
|
||||
}
|
||||
.ct-azure{
|
||||
stroke: $info-color !important;
|
||||
}
|
||||
.ct-green{
|
||||
stroke: $success-color !important;
|
||||
}
|
||||
.ct-orange{
|
||||
stroke: $warning-color !important;
|
||||
}
|
||||
.ct-red{
|
||||
stroke: $danger-color !important;
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
@mixin sidebar-background-color($background-color, $font-color){
|
||||
&:after,
|
||||
&:before{
|
||||
background-color: $background-color;
|
||||
}
|
||||
|
||||
.logo{
|
||||
border-bottom: 1px solid rgba($font-color,.3);
|
||||
|
||||
p{
|
||||
color: $font-color;
|
||||
}
|
||||
|
||||
.simple-text{
|
||||
color: $font-color;
|
||||
}
|
||||
}
|
||||
|
||||
.nav{
|
||||
li:not(.active){
|
||||
> a{
|
||||
color: $font-color;
|
||||
}
|
||||
}
|
||||
.divider{
|
||||
background-color: rgba($font-color,.2);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@mixin sidebar-active-color($font-color){
|
||||
.nav{
|
||||
li{
|
||||
&.active > a{
|
||||
color: $font-color;
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
+8
@@ -29,6 +29,14 @@
|
||||
transition: all $time $type;
|
||||
}
|
||||
|
||||
@mixin transition-none(){
|
||||
-webkit-transition: none;
|
||||
-moz-transition: none;
|
||||
-o-transition: none;
|
||||
-ms-transition: none;
|
||||
transition: none;
|
||||
}
|
||||
|
||||
@mixin transform-scale($value){
|
||||
-webkit-transform: scale($value);
|
||||
-moz-transform: scale($value);
|
||||
Reference in New Issue
Block a user