Skip to content

Commit

Permalink
add modal stying
Browse files Browse the repository at this point in the history
Relates #124
  • Loading branch information
Dalmano committed May 23, 2019
1 parent 864da09 commit 7c4552f
Show file tree
Hide file tree
Showing 3 changed files with 92 additions and 1 deletion.
46 changes: 46 additions & 0 deletions public/css/components/_modal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,50 @@
top: -300px;
opacity: 0;
}
to {
top: 0;
opacity: 1;
}
}

@keyframes animatetop {
from {
top: -300px;
opacity: 0;
}
to {
top: 0;
opacity: 1;
}
}

//close button
.close {
color: white;
float: right;
font-size: 28px;
font-weight: bold;
}

.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}

.modal-header {
padding: 2px 16px;
background-color: #feefea;
color: white;
}

.modal-body {
padding: 2px 16px;
}

.modal-footer {
padding: 2px 16px;
background-color: #feefea;
color: white;
}
45 changes: 45 additions & 0 deletions public/css/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 7c4552f

Please sign in to comment.