376 lines
6.6 KiB
Plaintext
376 lines
6.6 KiB
Plaintext
/*
|
|
DEMO STYLE
|
|
*/
|
|
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";
|
|
|
|
|
|
body {
|
|
font-family: 'Poppins', sans-serif;
|
|
background: #fafafa;
|
|
font-size: 0.9em;
|
|
/*background: url(../images/body_bg.jpg) repeat;*/
|
|
}
|
|
|
|
p {
|
|
font-family: 'Poppins', sans-serif;
|
|
font-size: 1.1em;
|
|
font-weight: 300;
|
|
line-height: 1.7em;
|
|
color: #999;
|
|
}
|
|
|
|
a, a:hover, a:focus {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
iframe {
|
|
width : 100%;
|
|
height : 100%;
|
|
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.navbar {
|
|
padding: 0px 0px 0px 0px;
|
|
background: #d4d4d4;
|
|
border: none;
|
|
border-radius: 0;
|
|
margin-bottom: 10px;
|
|
box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
|
|
height:58px;
|
|
}
|
|
|
|
.navbar-btn {
|
|
box-shadow: none;
|
|
outline: none !important;
|
|
border: none;
|
|
}
|
|
|
|
.line {
|
|
width: 100%;
|
|
height: 1px;
|
|
border-bottom: 1px dashed #ddd;
|
|
margin: 40px 0;
|
|
}
|
|
|
|
/* ---------------------------------------------------
|
|
SIDEBAR STYLE
|
|
----------------------------------------------------- */
|
|
|
|
.wrapper {
|
|
display: flex;
|
|
width: 100%;
|
|
align-items: stretch;
|
|
perspective: 1500px;
|
|
}
|
|
|
|
|
|
#sidebar {
|
|
min-width: 250px;
|
|
max-width: 250px;
|
|
background: #6494bc;
|
|
color: #fff;
|
|
transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
|
|
transform-origin: bottom left;
|
|
}
|
|
|
|
#sidebar.active {
|
|
margin-left: -250px;
|
|
transform: rotateY(100deg);
|
|
}
|
|
|
|
#sidebar .sidebar-header {
|
|
padding: 10px;
|
|
/*background: #4f4f4f;*/
|
|
background: #ab8181;
|
|
}
|
|
|
|
#sidebar ul.components {
|
|
padding: 20px 0;
|
|
border-bottom: 1px solid #47748b;
|
|
}
|
|
|
|
#sidebar ul p {
|
|
color: #fff;
|
|
padding: 10px;
|
|
}
|
|
|
|
#sidebar ul li a {
|
|
padding: 10px;
|
|
font-size: 1.1em;
|
|
display: block;
|
|
}
|
|
#sidebar ul li a:hover {
|
|
color: #7386D5;
|
|
background: #fff;
|
|
}
|
|
|
|
#sidebar ul li.active > a, a[aria-expanded="true"] {
|
|
color: #fff;
|
|
background: #6494bc;
|
|
}
|
|
|
|
|
|
a[data-toggle="collapse"] {
|
|
position: relative;
|
|
}
|
|
|
|
.dropdown-toggle::after {
|
|
display: block;
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 20px;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
ul ul a {
|
|
font-size: 0.9em !important;
|
|
padding-left: 30px !important;
|
|
background: #466884;
|
|
}
|
|
|
|
ul.CTAs {
|
|
padding: 20px;
|
|
}
|
|
|
|
ul.CTAs a {
|
|
text-align: center;
|
|
font-size: 0.9em !important;
|
|
display: block;
|
|
border-radius: 5px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
a.download {
|
|
background: #fff;
|
|
color: #7386D5;
|
|
}
|
|
|
|
a.article, a.article:hover {
|
|
background: #6d7fcc !important;
|
|
color: #fff !important;
|
|
}
|
|
|
|
|
|
|
|
/* ---------------------------------------------------
|
|
CONTENT STYLE
|
|
----------------------------------------------------- */
|
|
#content {
|
|
width: 100%;
|
|
padding: 0px 10px 10px 10px;
|
|
min-height: 100vh;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
#sidebarCollapse {
|
|
width: 40px;
|
|
height: 40px;
|
|
background: #d4d4d4;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#sidebarCollapse span {
|
|
width: 80%;
|
|
height: 2px;
|
|
margin: 0 auto;
|
|
display: block;
|
|
background: #555;
|
|
transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
|
|
transition-delay: 0.2s;
|
|
}
|
|
|
|
#sidebarCollapse span:first-of-type {
|
|
transform: rotate(45deg) translate(2px, 2px);
|
|
}
|
|
#sidebarCollapse span:nth-of-type(2) {
|
|
opacity: 0;
|
|
}
|
|
#sidebarCollapse span:last-of-type {
|
|
transform: rotate(-45deg) translate(1px, -1px);
|
|
}
|
|
|
|
|
|
#sidebarCollapse.active span {
|
|
transform: none;
|
|
opacity: 1;
|
|
margin: 5px auto;
|
|
}
|
|
|
|
hr.style1{
|
|
border-top: 1px solid #8c8b8b;
|
|
}
|
|
|
|
|
|
hr.style2 {
|
|
border-top: 3px double #8c8b8b;
|
|
}
|
|
|
|
hr.style3 {
|
|
border-top: 1px dashed #8c8b8b;
|
|
}
|
|
|
|
hr.style4 {
|
|
border-top: 1px dotted #8c8b8b;
|
|
}
|
|
|
|
hr.style5 {
|
|
background-color: #fff;
|
|
border-top: 2px dashed #8c8b8b;
|
|
}
|
|
|
|
|
|
hr.style6 {
|
|
background-color: #fff;
|
|
border-top: 2px dotted #8c8b8b;
|
|
}
|
|
|
|
hr.style7 {
|
|
border-top: 1px solid #8c8b8b;
|
|
border-bottom: 1px solid #fff;
|
|
}
|
|
|
|
|
|
hr.style8 {
|
|
border-top: 1px solid #8c8b8b;
|
|
border-bottom: 1px solid #fff;
|
|
}
|
|
hr.style8:after {
|
|
content: '';
|
|
display: block;
|
|
margin-top: 2px;
|
|
border-top: 1px solid #8c8b8b;
|
|
border-bottom: 1px solid #fff;
|
|
}
|
|
|
|
hr.style9 {
|
|
border-top: 1px dashed #8c8b8b;
|
|
border-bottom: 1px dashed #fff;
|
|
}
|
|
|
|
hr.style10 {
|
|
border-top: 1px dotted #8c8b8b;
|
|
border-bottom: 1px dotted #fff;
|
|
}
|
|
|
|
hr.style13 {
|
|
height: 10px;
|
|
border: 0;
|
|
box-shadow: 0 10px 10px -10px #8c8b8b inset;
|
|
}
|
|
|
|
|
|
hr.style14 {
|
|
border: 0;
|
|
height: 1px;
|
|
background-image: -webkit-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
|
|
background-image: -moz-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
|
|
background-image: -ms-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
|
|
background-image: -o-linear-gradient(left, #f0f0f0, #8c8b8b, #f0f0f0);
|
|
}
|
|
|
|
|
|
hr.style15 {
|
|
border-top: 4px double #8c8b8b;
|
|
text-align: center;
|
|
}
|
|
hr.style15:after {
|
|
content: '\002665';
|
|
display: inline-block;
|
|
position: relative;
|
|
top: -15px;
|
|
padding: 0 10px;
|
|
background: #f0f0f0;
|
|
color: #8c8b8b;
|
|
font-size: 18px;
|
|
}
|
|
|
|
hr.style16 {
|
|
border-top: 1px dashed #8c8b8b;
|
|
}
|
|
hr.style16:after {
|
|
content: '\002702';
|
|
display: inline-block;
|
|
position: relative;
|
|
top: -12px;
|
|
left: 40px;
|
|
padding: 0 3px;
|
|
background: #f0f0f0;
|
|
color: #8c8b8b;
|
|
font-size: 18px;
|
|
}
|
|
|
|
|
|
hr.style17 {
|
|
border-top: 1px solid #8c8b8b;
|
|
text-align: center;
|
|
}
|
|
hr.style17:after {
|
|
content: '§';
|
|
display: inline-block;
|
|
position: relative;
|
|
top: -14px;
|
|
padding: 0 10px;
|
|
background: #f0f0f0;
|
|
color: #8c8b8b;
|
|
font-size: 18px;
|
|
-webkit-transform: rotate(60deg);
|
|
-moz-transform: rotate(60deg);
|
|
transform: rotate(60deg);
|
|
}
|
|
|
|
|
|
hr.style18 {
|
|
height: 30px;
|
|
border-style: solid;
|
|
border-color: #8c8b8b;
|
|
border-width: 1px 0 0 0;
|
|
border-radius: 20px;
|
|
}
|
|
hr.style18:before {
|
|
display: block;
|
|
content: "";
|
|
height: 30px;
|
|
margin-top: -31px;
|
|
border-style: solid;
|
|
border-color: #8c8b8b;
|
|
border-width: 0 0 1px 0;
|
|
border-radius: 20px;
|
|
}
|
|
|
|
|
|
/* ---------------------------------------------------
|
|
MEDIAQUERIES
|
|
----------------------------------------------------- */
|
|
@media (max-width: 768px) {
|
|
#sidebar {
|
|
margin-left: -250px;
|
|
transform: rotateY(90deg);
|
|
}
|
|
#sidebar.active {
|
|
margin-left: 0;
|
|
transform: none;
|
|
}
|
|
#sidebarCollapse span:first-of-type,
|
|
#sidebarCollapse span:nth-of-type(2),
|
|
#sidebarCollapse span:last-of-type {
|
|
transform: none;
|
|
opacity: 1;
|
|
margin: 5px auto;
|
|
}
|
|
#sidebarCollapse.active span {
|
|
margin: 0 auto;
|
|
}
|
|
#sidebarCollapse.active span:first-of-type {
|
|
transform: rotate(45deg) translate(2px, 2px);
|
|
}
|
|
#sidebarCollapse.active span:nth-of-type(2) {
|
|
opacity: 0;
|
|
}
|
|
#sidebarCollapse.active span:last-of-type {
|
|
transform: rotate(-45deg) translate(1px, -1px);
|
|
}
|
|
|
|
}
|