diff options
author | Anika Ahluwalia <60802672+anika-ahluwalia@users.noreply.github.com> | 2022-12-15 20:17:47 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-15 20:17:47 -0500 |
commit | 1ec3b538a8b8b126a31f322e9513e2e0aefe0a85 (patch) | |
tree | fdb138180b90e190a21924aeb776d8980da0c3c0 /styles.css | |
parent | b5e49acf088e91f7556c826fcd92286f710fa86c (diff) | |
parent | 84f10032947d592ebb3611ca562a50fd858dfab3 (diff) |
Merge pull request #1 from cs1300-2022/guest-page
Guest page
Diffstat (limited to 'styles.css')
-rwxr-xr-x | styles.css | 67 |
1 files changed, 66 insertions, 1 deletions
@@ -68,11 +68,12 @@ section:nth-child(odd) { .title, .title-info-flex, .edges{ text-align: left; - padding: 0 12rem; + padding: 0 5rem; } .title { color: var(--accent-color); + margin-bottom: 2rem; } h2 { @@ -961,3 +962,67 @@ weekly specials conic border /* box-sizing: border-box;*/ /*}*/ +#guest-reviewers { + height: 100%; +} + +.guest-name { + color: var(--accent-color); +} + +.guest-role { + color: var(--second-accent-color); +} + +.guest-email { + + color: #857ce1; +} + +.flex-grid-2 { + display: flex; + justify-content: space-between; + vertical-align: top; +} +.flex-grid-2 .guest { + width: 80%; + vertical-align: top; +} + +@media (max-width: 800px) { + .flex-grid-2 { + display: block; + } + .flex-grid-2 .guest { + width: 100%; + } +} + +.guest { + margin: 2rem 0 auto 0; + height: auto; + display: flex; + flex-direction: column; + justify-content: center; +} + +.guest-info { + display: flex; + vertical-align: top; + width: 100%; + margin-right: 6%; + margin-bottom: 2rem; +} + +.guest-photo { + margin-right: 1rem; + width: 100px; + min-height: 100px; + max-height: auto; + margin-top: 35px; +} + +img { + max-width: 100%; + height: auto; +}
\ No newline at end of file |