diff --git a/scheduleac/.meteor/packages b/scheduleac/.meteor/packages index 6cf83d9..d9c80df 100644 --- a/scheduleac/.meteor/packages +++ b/scheduleac/.meteor/packages @@ -24,3 +24,5 @@ accounts-google accounts-ui ongoworks:security percolate:synced-cron +momentjs:moment +fortawesome:fontawesome diff --git a/scheduleac/.meteor/versions b/scheduleac/.meteor/versions index 94c6954..118a253 100644 --- a/scheduleac/.meteor/versions +++ b/scheduleac/.meteor/versions @@ -29,6 +29,7 @@ ecmascript-runtime@0.2.6 ejson@1.0.7 es5-shim@4.1.14 fastclick@1.0.7 +fortawesome:fontawesome@4.5.0 geojson-utils@1.0.4 google@1.1.7 hot-code-push@1.0.0 @@ -49,6 +50,7 @@ minifiers@1.1.7 minimongo@1.0.10 mobile-experience@1.0.1 mobile-status-bar@1.0.6 +momentjs:moment@2.11.2 mongo@1.1.3 mongo-id@1.0.1 npm-mongo@1.4.39_1 diff --git a/scheduleac/client/client.css b/scheduleac/client/client.css index 948c9fd..db640a6 100644 --- a/scheduleac/client/client.css +++ b/scheduleac/client/client.css @@ -28,7 +28,7 @@ h1 { .eachDay { font-family: Lato; - font-color: #353535; + color: #353535; max-width:30%; background-color: #136FB5; box-shadow: 4px 5px 3px 2px #444; @@ -54,12 +54,13 @@ h1 { } .recent { - font-color: #353535; + color: #353535; background-color: #5BEF78; + max-width:30%; } .scheduleList { - margin-top: 20%; + margin-top: 10%; } .type { @@ -119,4 +120,15 @@ h1 { -moz-transition: transform 0.3s ease; -ms-transition: transform 0.3s ease; transition: transform 0.3s ease; -} \ No newline at end of file +} + +.fa { + -webkit-transition: color 0.5s ease; + -moz-transition: color 0.5s ease; + -ms-transition: color 0.5s ease; + transition: color 0.5s ease; +} + +.fa:hover { + color: #E14C2B; +} \ No newline at end of file diff --git a/scheduleac/client/client.html b/scheduleac/client/client.html index 8208356..a53414e 100644 --- a/scheduleac/client/client.html +++ b/scheduleac/client/client.html @@ -8,11 +8,17 @@