init
This commit is contained in:
commit
58842c665e
69 changed files with 8357 additions and 0 deletions
27
components/_modal.scss
Normal file
27
components/_modal.scss
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
.modal {
|
||||
position:absolute;
|
||||
z-index: 1000;
|
||||
top: 1rem;
|
||||
left: 1rem;
|
||||
right: 1rem;
|
||||
bottom: 1rem;
|
||||
overflow: scroll;
|
||||
max-width: 1400px;
|
||||
margin: 0 auto;
|
||||
display: none;
|
||||
background: var(--primary-color-darekr);
|
||||
border-radius: 10px;
|
||||
padding: 2rem;
|
||||
|
||||
i.close {
|
||||
position: absolute;
|
||||
z-index: 10000;
|
||||
color: var(--fg-color-inverted);
|
||||
font-family: 'font-awesome', sans-serif;
|
||||
width: 2rem;
|
||||
height: 2rem;
|
||||
right: .5rem;
|
||||
top: .5rem;
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue