This commit is contained in:
@ -26,6 +26,9 @@ body {
|
||||
color: var(--colorftbodylight);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
/* FONT */
|
||||
body {
|
||||
font-family: var(--fontbody);
|
||||
@ -61,6 +64,16 @@ a:hover {
|
||||
color: var(--colorfttitlelight-darker);
|
||||
}
|
||||
|
||||
.btn-link {
|
||||
text-decoration: none;
|
||||
cursor: pointer;
|
||||
color: var(--colorfttitlelight);
|
||||
}
|
||||
|
||||
.btn-link:hover {
|
||||
color: var(--colorfttitlelight-darker);
|
||||
}
|
||||
|
||||
main {
|
||||
display:flex;
|
||||
overflow:hidden;
|
||||
@ -99,6 +112,24 @@ border-width: 1px;
|
||||
padding:0.5rem;
|
||||
}
|
||||
|
||||
#page {
|
||||
overflow-y: auto;
|
||||
width:100%;
|
||||
}
|
||||
|
||||
.ckeditor-content img {
|
||||
max-width:100%;
|
||||
height:auto !important;
|
||||
}
|
||||
|
||||
.hide {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.card-body .form-group:first-child {
|
||||
margin-top: 0px !important;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
#header {
|
||||
display:none !important;
|
||||
@ -274,318 +305,138 @@ border-width: 1px;
|
||||
}
|
||||
}
|
||||
|
||||
/* PAGE */
|
||||
#page {
|
||||
overflow-y: auto;
|
||||
width:100%;
|
||||
}
|
||||
/*== CHILD ======================================================================================================================================= */
|
||||
|
||||
.ckeditor-content img {
|
||||
max-width:100%;
|
||||
height:auto !important;
|
||||
}
|
||||
|
||||
.hide {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.card-body .form-group:first-child {
|
||||
margin-top: 0px !important;
|
||||
}
|
||||
|
||||
|
||||
/* ITEM */
|
||||
.itemframe {
|
||||
width: 100%
|
||||
}
|
||||
|
||||
.items-list {
|
||||
display:flex;
|
||||
flex-wrap: wrap;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.item {
|
||||
padding:10px;
|
||||
display:flex;
|
||||
text-align: center;
|
||||
justify-content: center;
|
||||
margin-right:5px;
|
||||
margin-bottom:5px;
|
||||
flex-wrap: wrap;
|
||||
color: var(--colorftbodydark) !important;
|
||||
}
|
||||
|
||||
.item-action {
|
||||
width: 100%;
|
||||
color: var(--colorftbodydark) !important;
|
||||
padding-top:10px;
|
||||
height:35px;
|
||||
}
|
||||
|
||||
.item-action i {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.item-container {
|
||||
display:flex;
|
||||
flex-wrap: nowrap;
|
||||
justify-content: space-around;
|
||||
}
|
||||
|
||||
.item-content {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.item img {
|
||||
margin:0px auto 10px auto;
|
||||
|
||||
}
|
||||
|
||||
.item h3 {
|
||||
margin:0px;
|
||||
.child-sidebar {
|
||||
background-color: var(--colorbgbodyimportant);
|
||||
color: var(--colorftbodydark);
|
||||
}
|
||||
|
||||
.item-subtitle {
|
||||
font-size: 10px;
|
||||
margin:0px;
|
||||
.child-sidebar h3 {
|
||||
color: var(--colorftbodydark);
|
||||
}
|
||||
|
||||
.item-description {
|
||||
color: var(--colorftbodydark);
|
||||
text-align: left;
|
||||
padding: 0px 5px;
|
||||
}
|
||||
|
||||
.item-description img {
|
||||
max-width: 100% !important;
|
||||
height: auto !important;
|
||||
}
|
||||
.item-description p:last-child {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.item-verysmall {
|
||||
width: 80px;
|
||||
padding:5px 2px 2px 2px;
|
||||
}
|
||||
.item-verysmall .item-link {
|
||||
width: 76px;
|
||||
}
|
||||
.item-verysmall img {
|
||||
height:40px;
|
||||
}
|
||||
.item-verysmall h3{
|
||||
font-size: 10px;
|
||||
font-family: var(--fontbody);
|
||||
text-transform: uppercase;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.item-verysmall .item-subtitle{
|
||||
display:none;
|
||||
}
|
||||
.item-verysmall .item-action {
|
||||
padding-top:0px;
|
||||
height:25px;
|
||||
}
|
||||
.item-verysmall .item-action i {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.item-small {
|
||||
width: 100px;
|
||||
padding:10px 5px;
|
||||
}
|
||||
.item-small .item-link {
|
||||
width: 90px;
|
||||
}
|
||||
.item-small img {
|
||||
height:60px;
|
||||
}
|
||||
.item-small h3{
|
||||
font-size: 12px;
|
||||
font-family: var(--fontbody);
|
||||
text-transform: uppercase;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
.item-small .item-subtitle{
|
||||
display:none;
|
||||
}
|
||||
.item-small .item-action i {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
|
||||
.item-medium {
|
||||
width: 150px;
|
||||
}
|
||||
.item-medium .item-link {
|
||||
width: 130px;
|
||||
}
|
||||
.item-medium img {
|
||||
height:90px;
|
||||
}
|
||||
.item-medium h3{
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
|
||||
.item-large {
|
||||
width:300px;
|
||||
justify-content: left;
|
||||
}
|
||||
.item-large .item-link {
|
||||
display: flex;
|
||||
}
|
||||
.item-large img {
|
||||
height:120px;
|
||||
}
|
||||
.item-large .item-title {
|
||||
text-align:left;
|
||||
padding-left:10px;
|
||||
}
|
||||
.item-large h3{
|
||||
font-size: 25px;
|
||||
border-bottom: 1px solid var(--colorftbodydark);
|
||||
}
|
||||
.item-large .item-container {
|
||||
flex-direction: column;
|
||||
}
|
||||
.item-large .item-action {
|
||||
text-align: left;
|
||||
}
|
||||
.item-large .item-description {
|
||||
margin-top:15px;
|
||||
}
|
||||
|
||||
.item-list {
|
||||
width:100%;
|
||||
justify-content: left;
|
||||
margin-right: 0px;
|
||||
|
||||
}
|
||||
.item-list .item-container {
|
||||
flex-direction: column;
|
||||
width:100%;
|
||||
}
|
||||
.item-list .item-content {
|
||||
flex-wrap: nowrap;
|
||||
flex-direction: row;
|
||||
}
|
||||
.item-list .item-link {
|
||||
display:flex;
|
||||
align-items: center;
|
||||
}
|
||||
.item-list img {
|
||||
height:40px;
|
||||
margin:0px;
|
||||
}
|
||||
.item-list .item-title {
|
||||
text-align:left;
|
||||
padding-left:10px;
|
||||
}
|
||||
.item-list h3{
|
||||
font-size: 18px;
|
||||
font-family: var(--fontbody);
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.item-list .item-subtitle{
|
||||
display:none;
|
||||
}
|
||||
.item-list .item-action {
|
||||
width:auto;
|
||||
}
|
||||
|
||||
.item-list .item-description {
|
||||
padding:10px 0px 5px 0px;
|
||||
}
|
||||
|
||||
/* WIDGET */
|
||||
.widget{
|
||||
margin-bottom:30px;
|
||||
}
|
||||
.widget-bordered {
|
||||
border:1px solid;
|
||||
}
|
||||
.widget-menu {
|
||||
float: right;
|
||||
color: #fff;
|
||||
margin: 10px 5px 0px 0px;
|
||||
display:none;
|
||||
}
|
||||
.widget-menu i {
|
||||
cursor:pointer;
|
||||
}
|
||||
.widget-header {
|
||||
padding:10px 10px 5px 10px;
|
||||
font-family: var(--fonttitle);
|
||||
font-size: 25px;
|
||||
}
|
||||
.widget-logo {
|
||||
height:40px;
|
||||
margin-right:5px;
|
||||
margin-top:-5px;
|
||||
cursor: pointer;
|
||||
|
||||
}
|
||||
.widget-title {
|
||||
cursor: pointer;
|
||||
}
|
||||
.widget-body {
|
||||
padding: 5px 0px 0px 0px;
|
||||
}
|
||||
.widget-bordered .widget-body {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
.widget-body .items-list {
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
.widget-body .item-list:first-child {
|
||||
margin-top: 0px;
|
||||
}
|
||||
.widget-body .items-list:last-child {
|
||||
margin-bottom: -5px;
|
||||
}
|
||||
.widget-body .item-description {
|
||||
padding:10px 0px 0px 0px;
|
||||
}
|
||||
|
||||
.widget-body .slick {
|
||||
min-height: 200px;
|
||||
}
|
||||
.widget-body .slick-slide {
|
||||
min-height: 200px;
|
||||
}
|
||||
.widget-body .slick-arrow {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.widget-body .slick-dots {
|
||||
bottom: 5px;
|
||||
color: var(--colorftbodydark);
|
||||
}
|
||||
|
||||
.widgetplaceholder {
|
||||
background-color: var(--colorbgbodydark);
|
||||
}
|
||||
|
||||
.cat-list {
|
||||
.child-sidebar a {
|
||||
color: var(--colorfttitledark);
|
||||
background-color: var(--colorbgbodydark);
|
||||
padding: 5px 10px;
|
||||
display: inline-block;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.child-sidebar a:hover {
|
||||
color: var(--colorfttitledark-lighter);
|
||||
}
|
||||
|
||||
/*== GRID ======================================================================================================================================= */
|
||||
|
||||
|
||||
.gutter-sizer { width: 0%;float:left; }
|
||||
|
||||
.grid-sizer {
|
||||
width: 0.1%;
|
||||
margin-bottom: 0%;
|
||||
float:left;
|
||||
}
|
||||
|
||||
.grid-item {
|
||||
background-color:var(--colorbgbodydark);
|
||||
color: var(--colorfttitledark);
|
||||
overflow:hidden;
|
||||
}
|
||||
|
||||
.grid-image {
|
||||
width:100%;
|
||||
transition: transform 0.3s;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.grid-item-title {
|
||||
background-color:var(--colorbgbodyimportant);
|
||||
color: var(--colorfttitledark);
|
||||
width:auto;
|
||||
padding:15px;
|
||||
text-align:center;
|
||||
margin:auto;
|
||||
}
|
||||
|
||||
|
||||
.grid-item-size-1 { width: 100% }
|
||||
.grid-item-size-2 { width: 50% }
|
||||
.grid-item-size-3 { width: 33.3% }
|
||||
.grid-item-size-4 { width: 25% }
|
||||
.grid-item-size-5 { width: 20% }
|
||||
.grid-item-full { width: 100%; margin-bottom: 0%; font-size:20px;float:left; }
|
||||
.grid-item-full h1 {margin: 0; border:none; padding: 20px 0px 0px 10px; }
|
||||
|
||||
.grid-tag {font-style:italic}
|
||||
.grid-image {cursor: pointer;}
|
||||
|
||||
@media (max-width: 980px) {
|
||||
.grid-item-size-1 { width: 30% }
|
||||
.grid-item-size-2 { width: 50% }
|
||||
.grid-item-size-3 { width: 50% }
|
||||
.grid-item-size-4 { width: 50% }
|
||||
.grid-item-size-5 { width: 50% }
|
||||
}
|
||||
|
||||
|
||||
/*== HERO ======================================================================================================================================= */
|
||||
|
||||
|
||||
.herobody {
|
||||
min-height:500px;
|
||||
width:100%;
|
||||
padding:0px 100px;
|
||||
}
|
||||
|
||||
.herobody .title {
|
||||
height: auto;
|
||||
position: relative;
|
||||
top: 5%;
|
||||
left: 5%;
|
||||
font-size: 20px;
|
||||
width:40%;
|
||||
float: left;
|
||||
}
|
||||
|
||||
.heroheader span {
|
||||
color: var(--colorftbodydark);
|
||||
text-shadow: 1px 1px 2px black;
|
||||
}
|
||||
|
||||
.herobody .title h1, .heroheader h1, .heroheader h1 {
|
||||
color: var(--colorftbodydark);
|
||||
font-size: 50px;
|
||||
margin:0px;
|
||||
text-shadow: 1px 1px 2px black;
|
||||
}
|
||||
|
||||
.herobody .navigation {
|
||||
width:45%;
|
||||
position: relative;
|
||||
right: 5%;
|
||||
top: 5%;
|
||||
float: right;
|
||||
}
|
||||
|
||||
@media (max-width: 1099px) {
|
||||
.herobody {
|
||||
padding:0px 50px;
|
||||
}
|
||||
|
||||
.herobody .title {
|
||||
width:90%;
|
||||
}
|
||||
|
||||
.herobody .navigation {
|
||||
width:90%;
|
||||
}
|
||||
}
|
||||
|
||||
.herobody .grid-item {
|
||||
padding: 5px;
|
||||
background-color: transparent;
|
||||
height: 200px;
|
||||
}
|
||||
.herobody .grid-image {
|
||||
background-color: var(--colorbgbodydark);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user