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.

137 lines
2.2 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. .ui.header {
  19. font-family: 'Source Sans Pro', "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  20. }
  21. .ui.header,
  22. .header,
  23. h1,
  24. h2,
  25. h3,
  26. h4,
  27. h5 {
  28. font-weight: normal !important;
  29. }
  30. h1.ui.header, {
  31. font-size: 2.5em;
  32. font-weight: normal;
  33. }
  34. a {
  35. opacity: 0.8;
  36. color: #009FDA;
  37. text-decoration: none;
  38. -webkit-transition: opacity 0.3s ease;
  39. transition: opacity 0.3s ease;
  40. }
  41. a:hover {
  42. opacity: 1;
  43. }
  44. p a {
  45. font-weight: bold;
  46. }
  47. /*******************************
  48. Global
  49. *******************************/
  50. .ui.page.grid.segment {
  51. padding-top: 3.5rem;
  52. padding-bottom: 3.5rem;
  53. }
  54. .masthead.segment {
  55. margin: 0em;
  56. padding-top: 4rem;
  57. overflow: hidden;
  58. }
  59. .masthead.segment .column {
  60. position: relative;
  61. }
  62. .masthead.segment .information {
  63. margin: 3em 1em;
  64. }
  65. .masthead.segment .information p {
  66. max-width: 600px;
  67. margin: 2em 290px 2em 0em;
  68. font-size: 1.2em;
  69. }
  70. .masthead.segment h1.ui.header .sub {
  71. font-size: 0.7em;
  72. }
  73. .masthead.segment .image {
  74. position: absolute;
  75. right: 0%;
  76. bottom: -110px;
  77. }
  78. .overview .divided.grid .header + p {
  79. min-height: 100px;
  80. }
  81. /*******************************
  82. Responsive
  83. *******************************/
  84. /* Mobile Only */
  85. @media only screen and (max-width : 768px) {
  86. .masthead.segment .information {
  87. margin-right: 190px;
  88. }
  89. .masthead.segment .image {
  90. bottom: -10px;
  91. width: 150px;
  92. }
  93. .masthead.segment .button {
  94. font-size: 1rem;
  95. }
  96. .overview > .column:first-child {
  97. width: 100% !important;
  98. }
  99. .overview > .column:last-child {
  100. display: none;
  101. }
  102. .overview .divided.grid .header .icon {
  103. font-size: 1em;
  104. }
  105. .overview .divided.grid .header + p {
  106. min-height: 0px;
  107. }
  108. .masthead.segment .column {
  109. font-size: 0.7rem;
  110. }
  111. .masthead.segment .column p {
  112. display: none;
  113. }
  114. }
  115. @media only screen and (max-width : 1000px) {
  116. }