isite
Version:
Create High Level Multi-Language Web Site [Fast and Easy]
395 lines (336 loc) • 6.76 kB
CSS
@media all {
.loaded,
.hide {
visibility: collapse;
}
.flex,
.display-flex {
display: flex ;
}
.inline-flex,
.display-inline-flex {
display: inline-flex ;
}
.flexbox,
.display-flexbox {
display: flexbox ;
}
.flexbox,
.display-flexbox {
display: inline-flexbox ;
}
.block,
.display-block {
display: block ;
}
.none,
.display-none {
display: none ;
}
.inline,
.display-inline {
display: inline ;
}
.inline-block,
.display-inline-block {
display: inline-block ;
}
.inline-grid,
.display-inline-grid {
display: inline-grid ;
}
.fixed,
.position-fixed {
position: fixed ;
}
.relative,
.position-relative {
position: relative ;
}
.static,
.position-static {
position: static ;
}
.sticky,
.position-sticky {
position: sticky ;
}
.left,
.float-left {
float: left ;
}
.right,
.float-right {
float: right ;
}
.float-none {
float: none ;
}
.is-invalid {
border: 1px solid red ;
}
.is-valid {
border: 1px solid green ;
}
.text-center {
text-align: center ;
}
.text-left {
text-align: left ;
}
.text-right {
text-align: right ;
}
.pointer {
cursor: pointer ;
}
.bold {
font-weight: bold;
}
.italic {
font-style: italic;
}
.flex-center {
display: flex;
align-items: center;
justify-content: center;
}
.center {
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
flex-direction: column;
align-content: center;
text-align: center;
h1,h2,h3,
p,
b,
i,
img,
small,
span,
label {
text-align: center ;
}
}
.center i.center {
vertical-align: text-bottom;
}
.border {
border: 1px solid var(--theme-color) ;
}
.dashed {
border: 2px dashed var(--theme-color) ;
}
.no-border {
border: none ;
}
.no-border-left {
border-left: none ;
}
.no-border-right {
border-right: none ;
}
.no-border-top {
border-top: none ;
}
.no-border-bottom {
border-bottom: none ;
}
.no-border-radius {
border-radius: 0px ;
}
.border-radius {
border-radius: 5px ;
}
.margin {
margin: 5px ;
}
.padding {
padding: 5px ;
}
.text-shadow {
text-shadow: 1px 1px 1px #000 ;
}
.box-shadow {
box-shadow: 1px 1px 8px 2px #000 ;
}
.font-small {
font-size: small ;
}
.font-smaller {
font-size: smaller ;
}
.font-x-small {
font-size: x-small ;
}
.font-xx-small {
font-size: xx-small ;
}
.font-medium {
font-size: medium ;
}
.font-large {
font-size: large ;
}
.font-larger {
font-size: larger ;
}
.font-x-large {
font-size: x-large ;
}
.font-xx-large {
font-size: xx-large ;
}
.rtl,
.rtl * {
direction: rtl;
}
.ltr,
.ltr * {
direction: ltr;
}
.height-auto {
height: auto ;
}
.width-auto {
height: auto ;
}
.error {
text-align: center;
color: red;
}
.appearance-none {
-moz-appearance: none;
-webkit-appearance: none;
appearance: none;
}
.paper {
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 10px 0 -5px #eee, 0 10px 1px -4px rgba(0, 0, 0, 0.15), 0 20px 0 -10px #eee, 0 20px 1px -9px rgba(0, 0, 0, 0.15);
}
.full-width {
width: 100%;
margin: 0px;
}
.hover-scale:hover {
transform: scale(1.1);
}
.multi-lines {
white-space: pre-wrap;
}
.currency {
font-size: smaller;
font-weight: bold;
color: black;
text-shadow: 0 0 white;
text-transform: uppercase;
}
.ww {
width: 250px ;
white-space: pre-line ;
}
.w0 {
width: 1px ;
white-space: nowrap ;
}
.w50,
.w50 input {
width: 50px ;
display: contents ;
}
.w100,
.w100 input {
width: 100px ;
min-width: 100px ;
white-space: pre-line ;
}
.w125,
.w125 input {
width: 125px ;
min-width: 125px ;
white-space: pre-line ;
}
.w150,
.w150 input {
width: 150px ;
min-width: 150px ;
white-space: pre-line ;
}
.w175,
.w175 input {
width: 175px ;
min-width: 175px ;
white-space: pre-line ;
}
.w200,
.w200 input {
width: 200px ;
min-width: 200px ;
white-space: pre-line ;
}
.w225,
.w225 input {
width: 225px ;
min-width: 225px ;
white-space: pre-line ;
}
.w250,
.w250 input {
width: 250px ;
min-width: 250px ;
white-space: pre-line ;
}
.w275,
.w275 input {
width: 275px ;
min-width: 275px ;
white-space: pre-line ;
}
.w300,
.w300 input {
width: 300px ;
min-width: 300px ;
white-space: pre-line ;
}
.w350,
.w350 input {
width: 350px ;
min-width: 350px ;
white-space: pre-line ;
}
.w400,
.w400 input {
width: 400px ;
min-width: 400px ;
white-space: pre-line ;
}
.w450,
.w450 input {
width: 450px ;
min-width: 450px ;
white-space: pre-line ;
}
.w500,
.w500 input {
width: 500px ;
min-width: 500px ;
white-space: pre-line ;
}
}
.zoom {
transition: transform 0.5s;
position: fixed;
top: 0;
left: 0;
right: 0;
border: 0;
width: 100% ;
height: 100% ;
object-fit: contain;
z-index: 99999999;
background: #000;
padding: 0;
margin: 0;
}