Skip to content

Commit

Permalink
More changes & improvements from future-edit
Browse files Browse the repository at this point in the history
More changes & improvements
  • Loading branch information
Klubuntu authored May 22, 2023
2 parents 3b9dd2f + 697d65e commit e0ebbdf
Show file tree
Hide file tree
Showing 10 changed files with 112 additions and 661 deletions.
64 changes: 63 additions & 1 deletion beta/basic-modal.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,68 @@
@import url('https://fonts.googleapis.com/css2?family=Comfortaa&display=swap');
@import "https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css";
@import "other/modal.css";

.modal {
display: none;
align-items: center;
justify-content: center;
position: fixed;
z-index: 1;
width: 100%;
height: 100%;
font-family: sans-serif;
transition: 1s ease-in-out;
/*animation: fadeOut;
animation-duration: 2s;*/
}

.modal[open] {
display: flex;
animation: fadeIn;
animation-duration: 750ms;
transition: 1s ease-in-out;
overflow: auto;
}

.model-inner {
background-color: white;
border-radius: 0.5em;
max-width: 80%;
padding: 1.25em;
margin: auto;
}

.modal-close {
border: none;
background-color: transparent;
font-size: 1.1em;
cursor: pointer;
position: relative;
top: 5px;
}

.modal-close:hover {
font-size: 1.3em;
}

.modal-header {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 2px solid black;
}

#modal-overlay {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 0;
background-color: black;
opacity: 0.5;
font-size: 1.3em;
}

f {
font-size: 1.5em;
}
Expand Down
93 changes: 0 additions & 93 deletions beta/cookieSupport.js

This file was deleted.

Loading

1 comment on commit e0ebbdf

@vercel
Copy link

@vercel vercel bot commented on e0ebbdf May 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.