c
This commit is contained in:
453
diz_css.php
Normal file
453
diz_css.php
Normal file
@@ -0,0 +1,453 @@
|
||||
<style>
|
||||
:root {
|
||||
--main-bg-color: #303340;
|
||||
--main-text-color: #cbd0da;
|
||||
--button-bg-color: #87ab63;
|
||||
--button-padding: 10px 20px 10px 20px ;
|
||||
--button-border-radius: 0.28571429rem;
|
||||
--button-text-color: #fff;
|
||||
--footer-bg-color: #052433;
|
||||
--input-bg-color: #1e252e;
|
||||
--input-focus-outline: 1px solid #87ab63;
|
||||
--input-padding: 10px 10px 10px 10px;
|
||||
--input-text-color: #cbd0da;
|
||||
--inpur-border-radius: 6px;
|
||||
--diZCustomLink-text-color: #87ab63;
|
||||
--contact-us-shadow: 0px 0px 10px 0px #87ab63;
|
||||
--nav-bg-color: #232834;
|
||||
--footer-padding: 15px;
|
||||
--blog-bg-color: #202430;
|
||||
--remove-text-underline-topic: none;
|
||||
--purcha-details-button-border: 2px solid #87ab63;
|
||||
--purcha-details-button-text-color: #87ab63;
|
||||
--purcha-details-bg-color-hover: #222;
|
||||
--sign-bg-color: #202430;
|
||||
--danger-button-bg-color: #cc4848;
|
||||
--text-underline: #87ab63;
|
||||
--tab-button-bg-color: #232834;
|
||||
--tab-button-bg-color-active: #87ab63;
|
||||
--table-border-color: 1px solid #87ab63;
|
||||
--border-bottom-2px: 2px solid #87ab63;
|
||||
--profile-section-bg-color: #202430;
|
||||
--profile-img-border: 4px solid #87ab63;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--main-bg-color);
|
||||
color: var(--main-text-color);
|
||||
margin: 0;
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
max-width: 100%;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.diZchoosenButton, button, input[type='submit'] {
|
||||
background-color: var(--button-bg-color);
|
||||
padding: var(--button-padding);
|
||||
border-radius: var(--button-border-radius);
|
||||
color: var(--button-text-color);
|
||||
text-align: center;
|
||||
}
|
||||
.diZDangerButton{
|
||||
background-color: var(--danger-button-bg-color);
|
||||
padding: var(--button-padding);
|
||||
border-radius: var(--button-border-radius);
|
||||
color: var(--button-text-color);
|
||||
}
|
||||
|
||||
.footer-style{
|
||||
background-color: var(--footer-bg-color);
|
||||
}
|
||||
|
||||
.diZCustomLink{
|
||||
color: var(--diZCustomLink-text-color);
|
||||
padding-top: var(--footer-padding);
|
||||
}
|
||||
input[type='text'], input[type='number'], input[type='password'], input[type='email'], input[type='file'], textarea, select, .pell-content{
|
||||
background-color: var(--input-bg-color);
|
||||
padding: var(--input-padding);
|
||||
color: var(--input-text-color);
|
||||
border-radius: var(--inpur-border-radius);
|
||||
}
|
||||
input[type='text']:focus, input[type='number']:focus, input[type='password']:focus, input[type='email']:focus, input[type='file']:focus, textarea:focus, select:focus{
|
||||
outline: var(--input-focus-outline);
|
||||
}
|
||||
.newTopicForm, .ticketGenForm, .contact-us-form, .signin-form{
|
||||
box-shadow: var(--contact-us-shadow);
|
||||
padding: 10px;
|
||||
border-radius: 10px;
|
||||
}
|
||||
.navbar-style{
|
||||
background-color: var(--nav-bg-color);
|
||||
}
|
||||
|
||||
.diZblogStyle{
|
||||
background-color: var(--blog-bg-color);
|
||||
border-radius: 10px;
|
||||
}
|
||||
#htmlContent > div{
|
||||
color: #cbd0da;
|
||||
}
|
||||
#htmlContent{
|
||||
text-decoration: var(--remove-text-underline-topic)!important;
|
||||
}
|
||||
.purchase-button, .details-button{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
border: var(--purcha-details-button-border);
|
||||
border-radius: 0.5rem;
|
||||
color: var(--purcha-details-button-text-color);
|
||||
transition: border-color 0.3s;
|
||||
width: 100%;
|
||||
}
|
||||
.purchase-button:hover, .details-button:hover{
|
||||
background-color: var(--purcha-details-bg-color-hover);
|
||||
}
|
||||
.signin-section{
|
||||
background-color: var(--sign-bg-color);
|
||||
}
|
||||
.diZContainer{width:100%}@media (min-width: 640px){.diZContainer{max-width:640px}}@media (min-width: 768px){.diZContainer{max-width:768px}}@media (min-width: 1024px){.diZContainer{max-width:1024px}}@media (min-width: 1280px){.diZContainer{max-width:1280px}}@media (min-width: 1536px){.diZContainer{max-width:1536px}}
|
||||
.diZmxAuto{margin-left:auto;margin-right:auto}
|
||||
.diZmy20{margin-top:5rem;margin-bottom:5rem}
|
||||
.diZmy8{margin-top:2rem;margin-bottom:2rem}
|
||||
.diZmb4{margin-bottom:1rem;}
|
||||
.diZmt20{margin-top:5rem;}
|
||||
.diZmb20{margin-bottom:5rem}
|
||||
.diZw100{width: 100%;}
|
||||
.diZwFit{width: fit-content;}
|
||||
.diZTableBorder{
|
||||
border: var(--table-border-color);
|
||||
}
|
||||
|
||||
.diZTextUnderline {
|
||||
text-decoration: underline;
|
||||
text-decoration-color: var(--text-underline);
|
||||
text-decoration-thickness: 3px; /* Adjust thickness if needed */
|
||||
text-underline-offset: 4px;
|
||||
}
|
||||
.diZTextCenter{
|
||||
text-align: center;
|
||||
}
|
||||
.diZTextLeft{
|
||||
text-align: left;
|
||||
}
|
||||
.diZTextJustify{
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
/* Large screens (e.g., desktop) */
|
||||
@media (min-width: 1024px) {
|
||||
.diZSmallContainer {
|
||||
max-width: 40%;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
}
|
||||
/* Small screens (e.g., mobile) */
|
||||
@media (max-width: 768px) {
|
||||
.diZSmallContainer {
|
||||
max-width: 90%;
|
||||
padding-left: 10px;
|
||||
padding-right: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.nav_main_top {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0px 20px;
|
||||
}
|
||||
.logo img {
|
||||
height: 50px; /* Adjust height as needed */
|
||||
}
|
||||
|
||||
.nav_main_menu {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.nav_main_menu #navliClass {
|
||||
display: inline-block;
|
||||
justify-content: center;
|
||||
place-items: center;
|
||||
}
|
||||
|
||||
.nav_main_menu #navliClass #navHrefClass {
|
||||
display: block;
|
||||
padding: 12px 12px 10px 12px;
|
||||
text-decoration: none;
|
||||
color: #cbcaca;
|
||||
}
|
||||
|
||||
.nav_main_menu #navliClass #navHrefClass:hover {
|
||||
background-color: #222;
|
||||
}
|
||||
|
||||
.nav_main_menu #navliClass #navHrefClass.active {
|
||||
background-color: #222;
|
||||
}
|
||||
|
||||
.mobile-nav{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
position: fixed;
|
||||
bottom: 0px;
|
||||
width: 100%;
|
||||
justify-content: space-around;
|
||||
background-color: #3d3d3d;
|
||||
padding: 7px 0px 0px 0px;
|
||||
}
|
||||
.mobile-nav-content{
|
||||
padding: 5px 20px 5px 20px;
|
||||
background-color: #202430;
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
box-shadow: 0px 0px 1px 0px #ffffff70;
|
||||
color: #fff;
|
||||
font-size: 12px;
|
||||
}
|
||||
.nav-icon{
|
||||
font-size: 25px;
|
||||
color: #fff;
|
||||
}
|
||||
/* .nav-text{
|
||||
font-size: 10px;
|
||||
} */
|
||||
|
||||
.diZTopicNavbar{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
overflow-x: auto;
|
||||
justify-content: start;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
color: #87ab63;
|
||||
}
|
||||
.diZTopicNavbar>a{
|
||||
margin-right: 10px;
|
||||
padding: 10px;
|
||||
font-weight: bold;
|
||||
}
|
||||
/* Mobile (up to 600px) */
|
||||
@media only screen and (max-width: 600px) {
|
||||
.diZGridCols1-3 {
|
||||
grid-template-columns: repeat(1, 1fr);
|
||||
}
|
||||
.social{
|
||||
display: none;
|
||||
}
|
||||
.icon-center-position{
|
||||
justify-content: center;
|
||||
}
|
||||
}
|
||||
|
||||
/* Medium (601px - 1024px) */
|
||||
@media only screen and (min-width: 601px) and (max-width: 1024px) {
|
||||
.diZGridCols1-3 {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
|
||||
/* Large (1025px and above) */
|
||||
@media only screen and (min-width: 1025px) {
|
||||
.diZGridCols1-3 {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
}
|
||||
.grid-item {
|
||||
padding: 10px;
|
||||
text-align: center;
|
||||
border-radius: 15px;
|
||||
}
|
||||
.line-clamp-6 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 6;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
.line-clamp-1 {
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 1;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
}
|
||||
#htmlContent > img{
|
||||
border-top-left-radius: 10px;
|
||||
border-top-right-radius: 10px;
|
||||
width: 100%;
|
||||
height: 200px;
|
||||
}
|
||||
.diZBorderBottom{
|
||||
border-bottom: var(--border-bottom-2px);
|
||||
}
|
||||
.diZFlexBetween{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.diZFlexColumn{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
.diZFlexRow{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
||||
.diZJustifyCenter{
|
||||
justify-content: center;
|
||||
}
|
||||
.diZItemsCenter{
|
||||
place-items: center;
|
||||
}
|
||||
.pell-content {
|
||||
border-bottom: 2px solid black;
|
||||
}
|
||||
.diZPadding10px{
|
||||
padding: 10px;
|
||||
}
|
||||
.diZUppercase{
|
||||
text-transform: uppercase;
|
||||
}
|
||||
.tab {
|
||||
display: none;
|
||||
}
|
||||
.tab-header {
|
||||
cursor: pointer;
|
||||
padding: 10px;
|
||||
display: inline-flex;
|
||||
border: 1px solid #ccc;
|
||||
margin-right: -2px;
|
||||
background-color: var(--tab-button-bg-color);
|
||||
}
|
||||
.tab-header.active {
|
||||
background-color: var(--tab-button-bg-color-active);
|
||||
border-bottom: none;
|
||||
}
|
||||
.tab-content {
|
||||
padding: 10px;
|
||||
border-top: 1px solid #ccc;
|
||||
/* max-width: 600px;
|
||||
min-width: 600px; */
|
||||
/* width: 100%; */
|
||||
}
|
||||
.diZFlexRowCol {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
/* justify-content: center; */
|
||||
place-items: center;
|
||||
box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.5);
|
||||
}
|
||||
|
||||
/* Media query for large screens */
|
||||
@media (min-width: 768px) {
|
||||
.diZFlexRowCol {
|
||||
flex-direction: row;
|
||||
}
|
||||
}
|
||||
|
||||
.diZServicesImg{
|
||||
width: 100%;
|
||||
}
|
||||
.diZBorderTopRadius {
|
||||
border-top-left-radius: 10px;
|
||||
border-top-right-radius: 10px;
|
||||
}
|
||||
.diZBorderRadius{
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#qrcode{
|
||||
cursor: none;
|
||||
margin: 20px;
|
||||
padding: 20px;
|
||||
background-color: #fff;
|
||||
/* width: fit-content; */
|
||||
}
|
||||
.qrCodeSection{
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
place-items: center;
|
||||
}
|
||||
.diZCartDot{
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
background-color: #ff0000;
|
||||
border-radius: 50%;
|
||||
/* padding: 0px 3px 0px 3px; */
|
||||
margin-top: -6px;
|
||||
text-align: center;
|
||||
}
|
||||
.diZProfileSectionBG{
|
||||
background-color: var(--profile-section-bg-color);
|
||||
border-radius: 20px;
|
||||
padding: 20px;
|
||||
}
|
||||
.diZProfileIMGBorder{
|
||||
border: var(--profile-img-border);
|
||||
border-radius: 50%;
|
||||
|
||||
}
|
||||
.diZSpace{
|
||||
margin: 10px;
|
||||
}
|
||||
.diZOverflowAuto{
|
||||
overflow: auto;
|
||||
}
|
||||
.diZWhiteSpaceNowrap{
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/* For Toggle Button */
|
||||
|
||||
.diZtoggleBtn {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
width: 60px;
|
||||
height: 34px;
|
||||
}
|
||||
|
||||
.diZtoggleBtn .diZinputCheckbox {
|
||||
opacity: 0;
|
||||
width: 0;
|
||||
height: 0;
|
||||
}
|
||||
|
||||
.diZtoggleBtn .diZslider {
|
||||
position: absolute;
|
||||
cursor: pointer;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: #ccc;
|
||||
transition: .4s;
|
||||
border-radius: 34px;
|
||||
}
|
||||
|
||||
.diZtoggleBtn .diZinputCheckbox:checked + .diZslider {
|
||||
background-color: #87ab63;
|
||||
}
|
||||
|
||||
.diZtoggleBtn .diZinputCheckbox:checked + .diZslider:before {
|
||||
transform: translateX(26px);
|
||||
}
|
||||
|
||||
.diZtoggleBtn .diZslider:before {
|
||||
position: absolute;
|
||||
content: "";
|
||||
height: 26px;
|
||||
width: 26px;
|
||||
left: 4px;
|
||||
bottom: 4px;
|
||||
background-color: white;
|
||||
transition: .4s;
|
||||
border-radius: 50%;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user