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.

home.css 1.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. .home .logo {
  2. max-width: 220px;
  3. }
  4. @media (max-width: 767.98px) {
  5. .home .hero h1 {
  6. font-size: 3.5em;
  7. }
  8. .home .hero h2 {
  9. font-size: 2em;
  10. }
  11. }
  12. @media (min-width: 768px) {
  13. .home .hero h1 {
  14. font-size: 5.5em;
  15. }
  16. .home .hero h2 {
  17. font-size: 3em;
  18. }
  19. }
  20. .home .hero .svg {
  21. color: var(--color-green);
  22. height: 40px;
  23. width: 50px;
  24. vertical-align: bottom;
  25. }
  26. .home .hero.header {
  27. font-size: 20px;
  28. }
  29. .home p.large {
  30. font-size: 16px;
  31. }
  32. .home .stackable {
  33. padding-top: 30px;
  34. }
  35. .home a {
  36. color: var(--color-green);
  37. }
  38. .page-footer {
  39. display: flex;
  40. justify-content: space-between;
  41. background-color: var(--color-footer);
  42. border-top: 1px solid var(--color-secondary);
  43. padding: 8px 20px;
  44. }
  45. .page-footer .left-links {
  46. display: flex;
  47. flex-wrap: wrap;
  48. align-items: center;
  49. justify-content: center;
  50. gap: 0.25em;
  51. }
  52. .page-footer .right-links {
  53. min-width: 180px; /* make sure the menu dropdown doesn't overflow horizontally when language name is short */
  54. display: flex;
  55. flex-wrap: wrap;
  56. align-items: center;
  57. justify-content: center;
  58. }
  59. .page-footer .right-links > a {
  60. border-left: 1px solid var(--color-secondary-dark-1);
  61. padding-left: 8px;
  62. margin-left: 5px;
  63. }
  64. .page-footer .ui.dropdown.language .menu {
  65. max-height: min(500px, calc(100vh - 60px));
  66. overflow-y: auto;
  67. margin-bottom: 10px;
  68. }
  69. @media (max-width: 880px) {
  70. .page-footer {
  71. flex-direction: column;
  72. gap: 0.5em;
  73. }
  74. }