style.css 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. /*******************
  2. * Fonts
  3. *******************/
  4. @font-face {
  5. font-family: Dosis;
  6. src: url("../fonts/Dosis/Dosis-Regular.otf") format("opentype");
  7. }
  8. @font-face {
  9. font-family: Dosis;
  10. font-weight: bold;
  11. src: url("../fonts/Dosis/Dosis-Bold.otf") format("opentype");
  12. }
  13. @font-face {
  14. font-family: Dosis;
  15. font-weight: light;
  16. src: url("../fonts/Dosis/Dosis-Light.otf") format("opentype");
  17. }
  18. @font-face {
  19. font-family: Montserrat;
  20. src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  21. }
  22. @font-face {
  23. font-family: Montserrat;
  24. font-weight: bold;
  25. src: url("../fonts/Montserrat/Montserrat-Bold.ttf") format("truetype");
  26. }
  27. @font-face {
  28. font-family: TitilliumWeb;
  29. src: url("../fonts/Titillium_Web/TitilliumWeb-Regular.ttf") format("truetype");
  30. }
  31. @font-face {
  32. font-family: TitilliumWeb;
  33. font-weight: bold;
  34. src: url("../fonts/Titillium_Web/TitilliumWeb-Bold.ttf") format("truetype");
  35. }
  36. @font-face {
  37. font-family: TitilliumWeb;
  38. font-weight: light;
  39. src: url("../fonts/Titillium_Web/TitilliumWeb-Light.ttf") format("truetype");
  40. }
  41. /*******************
  42. * Generic
  43. *******************/
  44. #globalEditBtn {
  45. position: absolute;
  46. top: 5px;
  47. right: 5px;
  48. background: orange;
  49. z-index: 10000000;
  50. }
  51. body {
  52. font-family: 'Arial', 'Helvetica', sans-serif;
  53. }
  54. /*******************
  55. * Font Class Definitions
  56. *******************/
  57. .align-left {
  58. text-align: left;
  59. }
  60. .align-center {
  61. text-align: center;
  62. }
  63. .align-justify {
  64. text-align: justify;
  65. }
  66. .align-right {
  67. text-align: right;
  68. }
  69. /*******************
  70. * Spaces & Shapes
  71. *******************/
  72. .space {
  73. top:0;
  74. left:0;
  75. width: 100%;
  76. height: 100%;
  77. }
  78. .space > .spaceContent {
  79. border-width: 0;
  80. border-style: solid;
  81. border-color: transparent;
  82. overflow: hidden;
  83. width: 100%;
  84. height: 100%;
  85. position: absolute;
  86. -moz-box-sizing: border-box;
  87. -webkit-box-sizing: border-box;
  88. box-sizing: border-box;
  89. }
  90. .space.root {
  91. overflow: auto;
  92. position: relative;
  93. }
  94. .shape > a {
  95. color: inherit;
  96. text-decoration: inherit;
  97. }
  98. .shape .shapeContent {
  99. overflow: hidden;
  100. border-width: 0;
  101. border-style: solid;
  102. border-color: transparent;
  103. -moz-box-sizing: border-box;
  104. -webkit-box-sizing: border-box;
  105. box-sizing: border-box;
  106. }
  107. body > .space {
  108. position: absolute;
  109. }
  110. /* Absolute Space */
  111. .space[data-type="AbsoluteSpace"] {
  112. }
  113. .space[data-type="AbsoluteSpace"] .shape, .space[data-type="AbsoluteSpace"] .space {
  114. position: absolute;
  115. }
  116. .space[data-type="AbsoluteSpace"] .shape .shapeContent {
  117. height: 100%;
  118. background-color: transparent;
  119. }
  120. .space[data-type="AbsoluteSpace"] .shape[data-type="TextShape"] {
  121. }
  122. .space[data-type="AbsoluteSpace"] .shape[data-type="ImageShape"] {
  123. }
  124. .shape[data-type="ImageShape"] img, body > .shape[data-type="ImageShape"] img {
  125. height: auto !important;
  126. max-height: 100%;
  127. max-width: 100%;
  128. width: auto !important;
  129. }
  130. /* Grid Space */
  131. .space[data-type="GridSpace"] {
  132. }
  133. .space[data-type="GridSpace"] .shape, .space[data-type="GridSpace"] .space {
  134. position: absolute;
  135. display: block;
  136. }
  137. .space[data-type="GridSpace"] .shape .shapeContent {
  138. width: 100%;
  139. height: 100%;
  140. padding: 0;
  141. }
  142. .space[data-type="GridSpace"] .shape[data-type="TextShape"] {
  143. }
  144. .space[data-type="GridSpace"] .shape[data-type="ImageShape"] {
  145. }
  146. /* Center Space */
  147. .root.space[data-type="CenterSpace"] {
  148. width: 100% !important;
  149. }
  150. .space[data-type="CenterSpace"] .shape, .space[data-type="CenterSpace"] .space {
  151. position: absolute;
  152. left: 50%;
  153. display: block;
  154. }
  155. .space[data-type="CenterSpace"] .shape .shapeContent {
  156. width: 100%;
  157. height: 100%;
  158. padding: 0;
  159. }
  160. .space[data-type="CenterSpace"] .shape[data-type="TextShape"] {
  161. }
  162. .space[data-type="CenterSpace"] .shape[data-type="ImageShape"] {
  163. }
  164. /*******************
  165. * Media Queries
  166. *******************/
  167. @media (min-width: 1220px) and (max-width: 2000px) {
  168. }
  169. @media (min-width: 1010px) and (max-width: 1220px) {
  170. }
  171. @media (min-width: 650px) and (max-width: 1010px) {
  172. }
  173. @media (max-width: 650px) {
  174. }
  175. @media screen and (max-width: 480px) {
  176. }