123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236 |
- /*******************
- * Fonts
- *******************/
- @font-face {
- font-family: Dosis;
- src: url("../fonts/Dosis/Dosis-Regular.otf") format("opentype");
- }
- @font-face {
- font-family: Dosis;
- font-weight: bold;
- src: url("../fonts/Dosis/Dosis-Bold.otf") format("opentype");
- }
- @font-face {
- font-family: Dosis;
- font-weight: light;
- src: url("../fonts/Dosis/Dosis-Light.otf") format("opentype");
- }
- @font-face {
- font-family: Montserrat;
- src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
- }
- @font-face {
- font-family: Montserrat;
- font-weight: bold;
- src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
- }
- @font-face {
- font-family: TitilliumWeb;
- src: url("../fonts/Titillium_Web/TitilliumWeb-Regular.ttf") format("truetype");
- }
- @font-face {
- font-family: TitilliumWeb;
- font-weight: bold;
- src: url("../fonts/Titillium_Web/TitilliumWeb-Bold.ttf") format("truetype");
- }
- @font-face {
- font-family: TitilliumWeb;
- font-weight: light;
- src: url("../fonts/Titillium_Web/TitilliumWeb-Light.ttf") format("truetype");
- }
- /*******************
- * Generic
- *******************/
- #globalEditBtn {
- position: absolute;
- top: 5px;
- right: 5px;
- background: orange;
- z-index: 10000000;
- }
- body {
- font-family: 'Arial', 'Helvetica', sans-serif;
- }
- /*******************
- * Font Class Definitions
- *******************/
- .align-left {
- text-align: left;
- }
- .align-center {
- text-align: center;
- }
- .align-justify {
- text-align: justify;
- }
- .align-right {
- text-align: right;
- }
- /*******************
- * Spaces & Shapes
- *******************/
- .space {
- top:0;
- left:0;
- width: 100%;
- height: 100%;
- }
- .space > .spaceContent {
- border-width: 0;
- border-style: solid;
- border-color: transparent;
- overflow: hidden;
- width: 100%;
- height: 100%;
- position: absolute;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- .space.root {
- overflow: auto;
- position: relative;
- }
- .shape > a {
- color: inherit;
- text-decoration: inherit;
- }
- .shape .shapeContent {
- overflow: hidden;
- border-width: 0;
- border-style: solid;
- border-color: transparent;
- -moz-box-sizing: border-box;
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
- }
- body > .space {
- position: absolute;
- }
- /* Absolute Space */
- .space[data-type="AbsoluteSpace"] {
-
- }
- .space[data-type="AbsoluteSpace"] .shape, .space[data-type="AbsoluteSpace"] .space {
- position: absolute;
- }
- .space[data-type="AbsoluteSpace"] .shape .shapeContent {
- height: 100%;
- background-color: transparent;
- }
- .space[data-type="AbsoluteSpace"] .shape[data-type="TextShape"] {
-
- }
- .space[data-type="AbsoluteSpace"] .shape[data-type="ImageShape"] {
-
- }
- .shape[data-type="ImageShape"] img, body > .shape[data-type="ImageShape"] img {
- height: auto !important;
- max-height: 100%;
- max-width: 100%;
- width: auto !important;
- }
- /* Grid Space */
- .space[data-type="GridSpace"] {
-
- }
- .space[data-type="GridSpace"] .shape, .space[data-type="GridSpace"] .space {
- position: absolute;
- display: block;
- }
- .space[data-type="GridSpace"] .shape .shapeContent {
- width: 100%;
- height: 100%;
- padding: 0;
- }
- .space[data-type="GridSpace"] .shape[data-type="TextShape"] {
-
- }
- .space[data-type="GridSpace"] .shape[data-type="ImageShape"] {
-
- }
- /* Center Space */
- .root.space[data-type="CenterSpace"] {
- width: 100% !important;
- }
- .space[data-type="CenterSpace"] .shape, .space[data-type="CenterSpace"] .space {
- position: absolute;
- left: 50%;
- display: block;
- }
- .space[data-type="CenterSpace"] .shape .shapeContent {
- width: 100%;
- height: 100%;
- padding: 0;
- }
- .space[data-type="CenterSpace"] .shape[data-type="TextShape"] {
-
- }
- .space[data-type="CenterSpace"] .shape[data-type="ImageShape"] {
-
- }
- /*******************
- * Media Queries
- *******************/
- @media (min-width: 1220px) and (max-width: 2000px) {
-
- }
- @media (min-width: 1010px) and (max-width: 1220px) {
-
- }
- @media (min-width: 650px) and (max-width: 1010px) {
-
- }
- @media (max-width: 650px) {
- }
- @media screen and (max-width: 480px) {
-
- }
|