article.css 826 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #text-area{
  2. position: absolute;
  3. top: 20vh;
  4. padding-left: 18%;
  5. padding-right: 18%;
  6. font-family: sans-serif;
  7. }
  8. h1{
  9. font-family: "Poppins";
  10. margin-bottom: 3.75vh;
  11. font-size: 36px;
  12. }
  13. h2{
  14. margin-bottom: 6vh;
  15. font-size: 24px;
  16. }
  17. h3{
  18. margin-bottom: 7.5vh;
  19. font-size: 18px;
  20. }
  21. p{
  22. margin-bottom: 3.75vh;
  23. font-size: 18px;
  24. }
  25. span{
  26. background-color: #555555;
  27. }
  28. .notes{
  29. font-size: 16px;
  30. font-style: italic;
  31. }
  32. #text-area a{
  33. color: #669999;
  34. font-weight: 600;
  35. }
  36. #text-area a:hover{
  37. color: #66ddcc;
  38. }
  39. @media screen and (max-width: 620px) {
  40. #text-area{
  41. top: 16vh;
  42. }
  43. h1{
  44. margin-bottom: 5.3vh;
  45. font-size: 30px;
  46. }
  47. #description{
  48. display: none;
  49. }
  50. p{
  51. margin-bottom: 4vh;
  52. font-size: 16px;
  53. }
  54. }