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.

188 lines
2.9 KiB

  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. transition: color 0.3s ease;
  46. }
  47. a:hover {
  48. color: #00BAFF;
  49. }
  50. p a {
  51. font-weight: bold;
  52. }
  53. /*******************************
  54. Global
  55. *******************************/
  56. .menu .right.menu > .mobile.item {
  57. display: none;
  58. }
  59. .ui.page.grid.segment {
  60. padding-top: 3.5rem;
  61. padding-bottom: 3.5rem;
  62. }
  63. .masthead.segment {
  64. background-image: url(images/bg.jpg);
  65. background-size: cover;
  66. margin: 0em;
  67. padding-top: 4rem;
  68. overflow: hidden;
  69. box-shadow: 0 -20px 10px 0 rgba(0, 0, 0, 0.1) inset !important;
  70. }
  71. .masthead.segment .column {
  72. position: relative;
  73. }
  74. .masthead.segment .information {
  75. margin: 3em 1em 1em 280px;
  76. }
  77. .masthead.segment .information p {
  78. max-width: 600px;
  79. margin: 0em 0px 2em 0em;
  80. font-size: 1.2em;
  81. }
  82. .masthead.segment h1.ui.header .sub {
  83. font-size: 0.7em;
  84. }
  85. .masthead.segment .image {
  86. position: absolute;
  87. left: 0%;
  88. bottom: -110px;
  89. }
  90. .overview .divided.grid .header + p {
  91. min-height: 100px;
  92. }
  93. .ui.shape .icon,
  94. .link.list .icon {
  95. margin: 0em;
  96. padding: 0em;
  97. }
  98. .ui.cube.shape .side {
  99. background-color: transparent;
  100. }
  101. /*******************************
  102. Responsive
  103. *******************************/
  104. /* Mobile Only */
  105. @media only screen and (max-width : 768px) {
  106. .ui.page.grid.segment {
  107. padding-top: 2rem;
  108. padding-bottom: 2rem;
  109. }
  110. .menu .right.menu > .item {
  111. display: none;
  112. }
  113. .menu .right.menu > .mobile.item {
  114. display: block;
  115. }
  116. h1.ui.header {
  117. font-size: 1.5em;
  118. }
  119. .masthead.segment {
  120. background-size: auto;
  121. }
  122. .masthead.segment .information {
  123. margin-left: 190px;
  124. }
  125. .masthead.segment .image {
  126. bottom: -65px;
  127. width: 150px;
  128. }
  129. .masthead.segment .button {
  130. font-size: 1rem;
  131. }
  132. .overview .divided.grid .header .icon {
  133. font-size: 1.5em;
  134. }
  135. .overview .divided.grid .header + p {
  136. min-height: 0px;
  137. }
  138. .masthead.segment .column {
  139. font-size: 0.7rem;
  140. }
  141. .masthead.segment .column p {
  142. display: none;
  143. }
  144. .selection.list .right.floated {
  145. display: none;
  146. }
  147. }
  148. @media only screen and (max-width : 1000px) {
  149. }