Home.module.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. .container {
  2. min-height: 100vh;
  3. padding: 0 0.5rem;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: center;
  7. align-items: center;
  8. height: 100vh;
  9. }
  10. .main {
  11. padding: 5rem 0;
  12. flex: 1;
  13. display: flex;
  14. flex-direction: column;
  15. justify-content: center;
  16. align-items: center;
  17. }
  18. .footer {
  19. width: 100%;
  20. height: 100px;
  21. border-top: 1px solid #eaeaea;
  22. display: flex;
  23. justify-content: center;
  24. align-items: center;
  25. }
  26. .footer a {
  27. display: flex;
  28. justify-content: center;
  29. align-items: center;
  30. flex-grow: 1;
  31. }
  32. .title a {
  33. color: #0070f3;
  34. text-decoration: none;
  35. }
  36. .title a:hover,
  37. .title a:focus,
  38. .title a:active {
  39. text-decoration: underline;
  40. }
  41. .title {
  42. margin: 0;
  43. line-height: 1.15;
  44. font-size: 4rem;
  45. }
  46. .title,
  47. .description {
  48. text-align: center;
  49. }
  50. .description {
  51. line-height: 1.5;
  52. font-size: 1.5rem;
  53. }
  54. .code {
  55. background: #fafafa;
  56. border-radius: 5px;
  57. padding: 0.75rem;
  58. font-size: 1.1rem;
  59. font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
  60. Bitstream Vera Sans Mono, Courier New, monospace;
  61. }
  62. .grid {
  63. display: flex;
  64. align-items: center;
  65. justify-content: center;
  66. flex-wrap: wrap;
  67. max-width: 800px;
  68. margin-top: 3rem;
  69. }
  70. .card {
  71. margin: 1rem;
  72. padding: 1.5rem;
  73. text-align: left;
  74. color: inherit;
  75. text-decoration: none;
  76. border: 1px solid #eaeaea;
  77. border-radius: 10px;
  78. transition: color 0.15s ease, border-color 0.15s ease;
  79. width: 45%;
  80. }
  81. .card:hover,
  82. .card:focus,
  83. .card:active {
  84. color: #0070f3;
  85. border-color: #0070f3;
  86. }
  87. .card h2 {
  88. margin: 0 0 1rem 0;
  89. font-size: 1.5rem;
  90. }
  91. .card p {
  92. margin: 0;
  93. font-size: 1.25rem;
  94. line-height: 1.5;
  95. }
  96. .logo {
  97. height: 1em;
  98. margin-left: 0.5rem;
  99. }
  100. @media (max-width: 600px) {
  101. .grid {
  102. width: 100%;
  103. flex-direction: column;
  104. }
  105. }