Mercurial Hosting > chat
view src/chat.css @ 33:e2b7f6393dab
add online
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sun, 10 Nov 2024 19:57:14 -0700 |
parents | 809193524522 |
children | 62d04ca486dd |
line wrap: on
line source
div[content] { margin-bottom: 0; display: flex; height: calc(100vh - 32px); } div[chats] { overflow-y: auto; } div[chats] > div { margin-top: 2px; margin-bottom: 2px; padding-top: 16px; padding-bottom: 16px; padding-left: 8px; padding-right: 8px; border-radius: 4px; cursor: pointer; } div[chats] > div:hover, div[chats] > div[selected] { background-color: LightBlue; } div[posts] { width: 100%; display: flex; flex-direction: column; } div[posts] > * { padding-right: 3vw; } div[top] { display: flex; justify-content: space-between; align-items: center; } div[main] { overflow-y: auto; } div[post] { margin-top: 16px; margin-bottom: 16px; } span[pulldown] { position: relative; } span[pulldown] > div { display: none; top: 0; left: 100%; z-index: 2; position: absolute; border: 1px solid #cccccc; border-radius: 4px; text-align: left; background-color: #eeeeee; padding: 5px 0; } span[pulldown] > div > span { white-space: nowrap; display: block; padding: 3px 16px; xcolor: #333333; cursor: pointer; } span[pulldown] > div > span:hover { color: #ffffff; background-color: #428bca; } div[text] { white-space-collapse: preserve; } div[input] { padding-top: 1em; padding-bottom: 1em; display: flex; gap: 8px; align-items: flex-end; } div[input] textarea { flex-grow: 1; max-height: 150px; resize: none; } dialog textarea { width: 600px; max-width: 80vw; } span[online] { display: inline-block; aspect-ratio: 1; background-color: grey; height: 1em; border-radius: 50%; margin-left: 4px; margin-bottom: -2px; } @media (min-width: 700px) { div[content] { margin-left: calc(3% - 8px); margin-right: 0; } div[chats] { width: 250px; padding-right: 8px; flex-shrink: 0; } div[posts] { padding-left: 8px; border-left: 1px solid; } div[top] img { display: none; } } @media (max-width: 699px) { div[content][show="chats"] div[posts], div[content][show="posts"] div[chats] { display: none; } div[chats] { width: 100%; } div[content][show="posts"] { margin-right: 0; } div[top] h3 { display: flex; gap: 6px; } }