Updated to nearly fully functional. Pre-release 1. Still needs some UI changes in the slideshow and admin pages (move the save button & fix the save detection for the internship list). Customer had one more page change request which I need to re-define and handle.

This commit is contained in:
Wynne Crisman
2018-12-12 11:04:00 -08:00
parent c0e971774e
commit 3fc374eda3
108 changed files with 3472 additions and 628 deletions

29
imports/ui/styles/modal.import.styl vendored Normal file
View File

@@ -0,0 +1,29 @@
.modalBackground
display: block
position: fixed
z-index: 1000
left: 0
top: 0
width: 100%
height: 100%
overflow: auto
background-color: #000
background-color: rgba(0,0,0,0.4)
.modalContent
background-color: #fefefe
border: 1px solid #888
position: fixed
top: 50%
left: 50%
transform: translate(-50%, -50%)
.modalClose
color: #aaa
float: right
font-size: 28px
font-weight: 800
.modalClose:hover, modalClose.focus
color: black
text-decoration: none
cursor: pointer