diff --git a/hourglass/client/main/main.js b/hourglass/client/main/main.js index d9e9bb4..2f86ff0 100644 --- a/hourglass/client/main/main.js +++ b/hourglass/client/main/main.js @@ -277,12 +277,6 @@ Template.main.events({ } }); -Template.schoollist.helpers({ - name() { - return this.name; - } -}); - function openDivFade(div) { div.style.display = "block"; div.style.opacity = "0"; diff --git a/hourglass/client/profile/profile.css b/hourglass/client/profile/profile.css index 1e44702..c6459dd 100644 --- a/hourglass/client/profile/profile.css +++ b/hourglass/client/profile/profile.css @@ -29,6 +29,7 @@ #profPage { width: 100%; + padding-right: 10%; overflow-x: hidden; overflow-y: auto; } @@ -284,3 +285,41 @@ color: #999 !important; } +#save { + font-size: 90%; + background-color: #CC4444; + + box-shadow: -1px 2px 5px 1px #333; + + position: absolute; + top: 0; + right: 10%; + z-index: 5; + + -webkit-transition: transform 0.2s ease, background-color 0.1s ease; + -moz-transition: transform 0.2s ease, background-color 0.1s ease; + -ms-transition: transform 0.2s ease, background-color 0.1s ease; + transition: transform 0.2s ease, background-color 0.1s ease; +} + +#save:hover { + -webkit-transform: scale(1.05); + -moz-transform: scale(1.05); + -ms-transform: scale(1.05); + -o-transform: scale(1.05); + transform: scale(1.05); +} + +#save:active { + background-color: #34CB34; +} + +#save h2 { + font-weight: 200; + padding: 8%; + + -webkit-filter: none; + filter: none !important; +} + + diff --git a/hourglass/client/profile/profile.html b/hourglass/client/profile/profile.html index dc6287e..118bb10 100644 --- a/hourglass/client/profile/profile.html +++ b/hourglass/client/profile/profile.html @@ -1,5 +1,6 @@