diff options
Diffstat (limited to 'styles.css')
-rwxr-xr-x | styles.css | 32 |
1 files changed, 32 insertions, 0 deletions
@@ -961,3 +961,35 @@ weekly specials conic border /* box-sizing: border-box;*/ /*}*/ +#guest-reviewers { + height: 100%; +} + +.guest-name, .guest-role { + color: var(--accent-color); +} + +.flex-grid-2 { + display: flex; + justify-content: space-between; +} +.flex-grid-2 .guest { + width: 45%; +} + +@media (max-width: 800px) { + .flex-grid-2 { + display: block; + } + .flex-grid-2 .guest { + width: 100%; + } +} + +.guest { + margin: 2rem 0; + height: auto; + display: flex; + flex-direction: column; + justify-content: center; +}
\ No newline at end of file |