diff options
Diffstat (limited to 'public/css/foot.css')
-rw-r--r-- | public/css/foot.css | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/public/css/foot.css b/public/css/foot.css index 0e454ac..91f67ab 100644 --- a/public/css/foot.css +++ b/public/css/foot.css | |||
@@ -124,3 +124,25 @@ footer > div | |||
124 | background-color: #ffff00; | 124 | background-color: #ffff00; |
125 | border-radius: 4px; | 125 | border-radius: 4px; |
126 | } | 126 | } |
127 | |||
128 | .toast { | ||
129 | visibility: hidden; | ||
130 | /*max-width: 50%;*/ | ||
131 | margin: auto; | ||
132 | background-color: #333; | ||
133 | color: #fff; | ||
134 | text-align: center; | ||
135 | border-radius: 5px; | ||
136 | padding: 16px; | ||
137 | position: fixed; | ||
138 | z-index: 1; | ||
139 | left: 50%; | ||
140 | bottom: 30px; | ||
141 | transform: translateX(-50%); | ||
142 | /*opacity: 0;*/ | ||
143 | transition: opacity 0.5s, visibility 0.5s; | ||
144 | } | ||
145 | .toast.show { | ||
146 | visibility: visible; | ||
147 | opacity: 1; | ||
148 | } \ No newline at end of file | ||