aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/static/css/base
diff options
context:
space:
mode:
authorGravatar Gareth Coles <[email protected]>2019-10-06 14:26:43 +0100
committerGravatar Gareth Coles <[email protected]>2019-10-06 14:26:43 +0100
commitb437c261512c0753c738457804e4d4ac5f4bd8c9 (patch)
treef19a0fb63fd3f5022c4062fb8047139b9a8072c9 /pydis_site/static/css/base
parentMove messages to the top right (diff)
Message styling (default to light for now)
Diffstat (limited to 'pydis_site/static/css/base')
-rw-r--r--pydis_site/static/css/base/base.css22
1 files changed, 0 insertions, 22 deletions
diff --git a/pydis_site/static/css/base/base.css b/pydis_site/static/css/base/base.css
index 256bec2c..87175922 100644
--- a/pydis_site/static/css/base/base.css
+++ b/pydis_site/static/css/base/base.css
@@ -77,25 +77,3 @@ div.card.has-equal-height {
button.is-size-navbar-menu {
font-size: 14px;
}
-
-/* On-page message styling */
-
-@keyframes message-slide-in {
- 0% {
- transform: translateX(100%);
- }
-
- 100% {
- transform: translateX(0);
- }
-}
-
-div.messages {
- animation: 0.5s ease-out 0s 1 message-slide-in;
- padding: 0.5rem;
- position: fixed;
- right: 0;
- top: 76px;
-
- z-index: 1000; /* On top of everything else */
-}