You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

192 lines
3.1 KiB

10 years ago
10 years ago
10 years ago
10 years ago
  1. /*******************************
  2. Global
  3. *******************************/
  4. html,
  5. body {
  6. font-size: 15px;
  7. height: 100%;
  8. }
  9. body {
  10. font-family: "Open Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  11. background: #FFFFFF;
  12. margin: 0px;
  13. padding: 0px;
  14. color: #555555;
  15. text-rendering: optimizeLegibility;
  16. min-width: 320px;
  17. }
  18. /*******************************
  19. UI Overrides
  20. *******************************/
  21. .ui.header {
  22. font-family: 'Source Sans Pro', "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  23. }
  24. .ui.header,
  25. h1,
  26. h2 {
  27. font-weight: normal !important;
  28. }
  29. h1.ui.header {
  30. font-size: 3em;
  31. }
  32. h4.ui.header,
  33. h5.ui.header,
  34. .ui.icon.header {
  35. font-weight: bold !important;
  36. }
  37. .ui.button {
  38. font-weight: normal;
  39. text-decoration: none;
  40. }
  41. a {
  42. color: #009FDA;
  43. text-decoration: none;
  44. -webkit-transition: color 0.3s ease;
  45. -moz-transition: color 0.3s ease;
  46. transition: color 0.3s ease;
  47. }
  48. a:hover {
  49. color: #00BAFF;
  50. }
  51. p a {
  52. font-weight: bold;
  53. }
  54. /*******************************
  55. Global
  56. *******************************/
  57. /*rtl:ignore*/
  58. .menu .right.menu > .mobile.item {
  59. display: none;
  60. }
  61. .ui.page.grid.segment {
  62. padding-top: 3.5rem;
  63. padding-bottom: 3.5rem;
  64. }
  65. .masthead.segment {
  66. background-image: url(images/bg.jpg);
  67. -webkit-background-size: cover;
  68. background-size: cover;
  69. margin: 0em;
  70. padding-top: 4rem;
  71. overflow: hidden;
  72. -webkit-box-shadow: 0 -20px 10px 0 rgba(0, 0, 0, 0.1) inset !important;
  73. box-shadow: 0 -20px 10px 0 rgba(0, 0, 0, 0.1) inset !important;
  74. }
  75. .masthead.segment .column {
  76. position: relative;
  77. }
  78. .masthead.segment .information {
  79. margin: 3em 1em 1em 280px;
  80. }
  81. .masthead.segment .information p {
  82. max-width: 600px;
  83. margin: 0em 0px 2em 0em;
  84. font-size: 1.2em;
  85. }
  86. .masthead.segment h1.ui.header .sub {
  87. font-size: 0.7em;
  88. }
  89. .masthead.segment .image {
  90. position: absolute;
  91. left: 0%;
  92. bottom: -110px;
  93. }
  94. .overview .divided.grid .header + p {
  95. min-height: 100px;
  96. }
  97. .ui.shape .icon,
  98. .link.list .icon {
  99. margin: 0em;
  100. padding: 0em;
  101. }
  102. .ui.cube.shape .side {
  103. background-color: transparent;
  104. }
  105. /*******************************
  106. Responsive
  107. *******************************/
  108. /* Mobile Only */
  109. @media only screen and (max-width : 768px) {
  110. .ui.page.grid.segment {
  111. padding-top: 2rem;
  112. padding-bottom: 2rem;
  113. }
  114. /*rtl:ignore*/
  115. .menu .right.menu > .item {
  116. display: none;
  117. }
  118. /*rtl:ignore*/
  119. .menu .right.menu > .mobile.item {
  120. display: block;
  121. }
  122. h1.ui.header {
  123. font-size: 1.5em;
  124. }
  125. .masthead.segment {
  126. -webkit-background-size: auto;
  127. background-size: auto;
  128. }
  129. .masthead.segment .information {
  130. margin-left: 190px;
  131. }
  132. .masthead.segment .image {
  133. bottom: -65px;
  134. width: 150px;
  135. }
  136. .masthead.segment .button {
  137. font-size: 1rem;
  138. }
  139. .overview .divided.grid .header .icon {
  140. font-size: 1.5em;
  141. }
  142. .overview .divided.grid .header + p {
  143. min-height: 0px;
  144. }
  145. .masthead.segment .column {
  146. font-size: 0.7rem;
  147. }
  148. .masthead.segment .column p {
  149. display: none;
  150. }
  151. /*rtl:ignore*/
  152. .selection.list .right.floated {
  153. display: none;
  154. }
  155. }
  156. @media only screen and (max-width : 1000px) {
  157. }