| 1234567891011121314151617181920212223242526 |
- .board {
- display: flex;
- flex-direction: column;
- align-items: stretch;
- max-width: 800px;
-
- .title {
- color: #fff;
- text-align: center;
- margin-bottom: 30px;
- letter-spacing: 0.1em;
- }
-
- .squares {
- position: relative;
- display: flex;
- flex-direction: column;
-
- .row {
- display: flex;
- justify-content: center;
- }
- }
-
- }
|