style.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. html {
  2. font-size: 13px;
  3. scroll-behavior: smooth;
  4. }
  5. body {
  6. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  7. margin-bottom: 60px;
  8. height: 100%;
  9. font-size: 1rem;
  10. }
  11. h4 a,
  12. p a {
  13. text-decoration: underline;
  14. color: orangered;
  15. font-weight: 500;
  16. transition: color .4s;
  17. }
  18. h4 a:hover,
  19. p a:hover {
  20. /* color: yellow; */
  21. color: blue;
  22. }
  23. .display-1 {
  24. font-weight: 800;
  25. letter-spacing: 1px;
  26. font-size: 15rem;
  27. width: 100%;
  28. text-align: right;
  29. line-height: 0.6;
  30. color: white;
  31. }
  32. .jumbotron {
  33. background-color: #303030;
  34. box-shadow: 0px 10px 10px rgba(0,0,0,0.2);
  35. padding-right: 10vw;
  36. height: 100vh;
  37. border-radius: 0px;
  38. }
  39. .org {
  40. font-size: 9rem;
  41. color: grey;
  42. }
  43. .lead {
  44. color: #fff;
  45. border-radius: 5px;
  46. padding: 10px;
  47. font-size: 1.3rem;
  48. width: 100%;
  49. text-align: right;
  50. margin-top: 50px;
  51. }
  52. #chevron {
  53. height: 10rem;
  54. font-size: 10rem;
  55. opacity: 0.5;
  56. position: absolute;
  57. bottom: 10px;
  58. margin: 0 auto;
  59. color: white;
  60. fill: white;
  61. }
  62. /* // Extra small devices (portrait phones, less than 576px) */
  63. /* // No media query since this is the default in Bootstrap */
  64. @media (max-width: 576px) {
  65. .display-1 { font-size: 10rem; }
  66. .org { font-size: 8rem; }
  67. }
  68. /* // Small devices (landscape phones, 576px and up) */
  69. @media (min-width: 576px) {
  70. html { font-size: 14px; }
  71. }
  72. /* // Medium devices (tablets, 768px and up) */
  73. @media (min-width: 768px) {
  74. html { font-size: 18px; }
  75. }
  76. /* // Large devices (desktops, 992px and up) */
  77. @media (min-width: 992px) {
  78. html { font-size: 20px; }
  79. }
  80. /* // Extra large devices (large desktops, 1200px and up) */
  81. @media (min-width: 1200px) {
  82. html { font-size: 20px; }
  83. }
  84. /*
  85. @media (max-width: 1200px) {
  86. html {
  87. font-size: 22px;
  88. }
  89. }
  90. @media (max-width: 900px) {
  91. html {
  92. font-size: 16px;
  93. } */
  94. /*
  95. .display-1 {
  96. font-size: 8rem;
  97. }
  98. .org {
  99. font-size: 6rem;
  100. }
  101. #chevron {
  102. font-size: 4rem;
  103. } */
  104. }