diff options
author | polo <ordipolo@gmx.fr> | 2025-04-21 20:36:10 +0200 |
---|---|---|
committer | polo <ordipolo@gmx.fr> | 2025-04-21 20:36:10 +0200 |
commit | eb3e1eb8c8365d3b3d1d39f24314ba420255afc2 (patch) | |
tree | 5e3d747b0e4d5e747052e9afed76f3a0f0986379 /public/css/foot.css | |
parent | ca3949aca0c7c1af476c8eec93b4920d5aff21ec (diff) | |
download | cms-eb3e1eb8c8365d3b3d1d39f24314ba420255afc2.zip |
page menu et chemin, partie1
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 | ||