ericaxu_gemmy/styles.css

39 lines
872 B
CSS
Raw Normal View History

2022-08-09 17:39:02 +00:00
/*
This CSS file will be included with your plugin, and
available in the app when your plugin is enabled.
If your plugin does not need CSS, delete this file.
*/
2023-03-30 02:55:50 +00:00
:root {
--gemmy-size: 80px;
}
.gemmy-container {
position: fixed;
bottom: 30px;
right: 30px;
2024-11-19 12:19:37 +00:00
display: flex;
flex-direction: column;
align-items: flex-end;
2023-03-30 02:55:50 +00:00
}
.gemmy-container img {
width: var(--gemmy-size);
height: var(--gemmy-size);
border-radius: var(--gemmy-size);
}
2024-11-19 12:19:37 +00:00
.gemmy-container[aria-label]::before {
2023-04-01 14:41:47 +00:00
--background-modifier-message: #FFFFCB;
2024-11-19 12:19:37 +00:00
content: attr(aria-label);
2023-04-01 14:41:47 +00:00
color: #202020;
2023-03-30 02:55:50 +00:00
font-size: var(--font-ui-medium);
2023-04-01 14:41:47 +00:00
border-radius: 20px;
padding: var(--size-4-3) var(--size-4-6);
2024-11-19 12:19:37 +00:00
width: 150px;
background: var(--background-modifier-message);
}