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.

190 lines
3.0 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. background-size: cover;
  68. margin: 0em;
  69. padding-top: 4rem;
  70. overflow: hidden;
  71. -webkit-box-shadow: 0 -20px 10px 0 rgba(0, 0, 0, 0.1) inset !important;
  72. box-shadow: 0 -20px 10px 0 rgba(0, 0, 0, 0.1) inset !important;
  73. }
  74. .masthead.segment .column {
  75. position: relative;
  76. }
  77. .masthead.segment .information {
  78. margin: 3em 1em 1em 280px;
  79. }
  80. .masthead.segment .information p {
  81. max-width: 600px;
  82. margin: 0em 0px 2em 0em;
  83. font-size: 1.2em;
  84. }
  85. .masthead.segment h1.ui.header .sub {
  86. font-size: 0.7em;
  87. }
  88. .masthead.segment .image {
  89. position: absolute;
  90. left: 0%;
  91. bottom: -110px;
  92. }
  93. .overview .divided.grid .header + p {
  94. min-height: 100px;
  95. }
  96. .ui.shape .icon,
  97. .link.list .icon {
  98. margin: 0em;
  99. padding: 0em;
  100. }
  101. .ui.cube.shape .side {
  102. background-color: transparent;
  103. }
  104. /*******************************
  105. Responsive
  106. *******************************/
  107. /* Mobile Only */
  108. @media only screen and (max-width : 768px) {
  109. .ui.page.grid.segment {
  110. padding-top: 2rem;
  111. padding-bottom: 2rem;
  112. }
  113. /*rtl:ignore*/
  114. .menu .right.menu > .item {
  115. display: none;
  116. }
  117. /*rtl:ignore*/
  118. .menu .right.menu > .mobile.item {
  119. display: block;
  120. }
  121. h1.ui.header {
  122. font-size: 1.5em;
  123. }
  124. .masthead.segment {
  125. background-size: auto;
  126. }
  127. .masthead.segment .information {
  128. margin-left: 190px;
  129. }
  130. .masthead.segment .image {
  131. bottom: -65px;
  132. width: 150px;
  133. }
  134. .masthead.segment .button {
  135. font-size: 1rem;
  136. }
  137. .overview .divided.grid .header .icon {
  138. font-size: 1.5em;
  139. }
  140. .overview .divided.grid .header + p {
  141. min-height: 0px;
  142. }
  143. .masthead.segment .column {
  144. font-size: 0.7rem;
  145. }
  146. .masthead.segment .column p {
  147. display: none;
  148. }
  149. /*rtl:ignore*/
  150. .selection.list .right.floated {
  151. display: none;
  152. }
  153. }
  154. @media only screen and (max-width : 1000px) {
  155. }