|
|
| Line 3: |
Line 3: |
| /** Category Page **/ | | /** Category Page **/ |
|
| |
|
| .cat-but-container{
| |
| display:flex;
| |
| flex-direction:column;
| |
| justify-content:center;
| |
| align-items:center;
| |
| padding-top:0.5rem;
| |
| }
| |
|
| |
|
| .cat-but-row{ | | .cat-but{ |
| display:flex;
| |
| flex-direction:row;
| |
| flex-wrap:wrap;
| |
| justify-content:center;
| |
| gap:8px;
| |
| }
| |
|
| |
|
| .cat-but{
| |
| display: inline-block;
| |
| box-sizing: border-box;
| |
| margin: 0 0 1rem 0;
| |
| padding:0.2rem;
| |
| text-align: center;
| |
| vertical-align: middle;
| |
| line-height: 1.5em;
| |
| font-size: 1em;
| |
| background-color: var( --background-color-interactive-subtle, #558e71 );
| |
| border: solid 2px var(--border-color-base, #a2a9b1);
| |
| border-radius: 0.25em;
| |
| font-family: inherit;
| |
| font-weight: bold;
| |
| } | | } |
|
| |
|