This commit is contained in:
Michał 2022-08-01 15:06:27 +01:00
parent 9fd958648b
commit 7944e439d7
4 changed files with 9 additions and 5 deletions

View file

@ -7,6 +7,7 @@ footer {
width: calc(100vh - 2rem));
background-color: var(--bg); color: var(--fg);
backdrop-filter: blur(8px);
border: 0.2rem solid var(--green);
outline: 0.5rem solid var(--bg);

View file

@ -2,7 +2,7 @@
@import "footer.css";
:root {
--bg: #151515df;
--bg: #15151588;
--bg-1: #242621;
--bg-2: #1D1E1C;
@ -96,6 +96,7 @@ body {
width: auto;
background-color: var(--bg);
backdrop-filter: blur(8px);
outline: 0.5rem solid var(--bg);
@ -328,7 +329,7 @@ body {
}
.alert {
padding: 1rem;
padding: 0.69rem;
width: auto;
@ -424,11 +425,12 @@ a.btn {
position: fixed; z-index: 99998;
opacity: 0.8;
opacity: 1;
display: none;
background: var(--bg);
background: #15151588;
backdrop-filter: blur(5px);
}
/*

View file

@ -10,6 +10,7 @@ nav {
vertical-align: middle;
background-color: var(--bg); color: var(--fg);
backdrop-filter: blur(8px);
border: 0.2rem solid var(--green);
outline: 0.5rem solid var(--bg);

View file

@ -75,7 +75,7 @@
echo notify($error, "low");
}
if (isset($success)) {
echo notify($success, "hight");
echo notify($success, "high");
}
?>
<script src='scripts/alert.js'></script>