style.module.scss
38 lines
| 1 | .notice { |
| 2 | height: auto; |
| 3 | width: 100%; |
| 4 | display: flex; |
| 5 | flex-direction: column; |
| 6 | align-items: center; |
| 7 | justify-content: flex-start; |
| 8 | font-weight: 500; |
| 9 | |
| 10 | .card { |
| 11 | box-shadow: 0 3px 6px rgba(68, 68, 68, 0.05), 0 3px 6px rgba(68, 68, 68, 0.05); |
| 12 | display: flex; |
| 13 | flex-direction: column; |
| 14 | align-items: center; |
| 15 | text-align: center; |
| 16 | border-radius: 5px; |
| 17 | overflow: hidden; |
| 18 | margin-top: 100px; |
| 19 | margin-bottom: 120px; |
| 20 | background: #fff; |
| 21 | width: 20em; |
| 22 | padding: 2.5em 3em 1.5em; |
| 23 | |
| 24 | h2 { |
| 25 | font-size: 20px; |
| 26 | margin-bottom: 25px; |
| 27 | font-weight: 500; |
| 28 | line-height: 1.2; |
| 29 | } |
| 30 | |
| 31 | p { |
| 32 | font-size: 13px; |
| 33 | font-weight: 400; |
| 34 | margin: 0; |
| 35 | } |
| 36 | } |
| 37 | } |
| 38 |