Skip to content

Commit

Permalink
initial mockup version
Browse files Browse the repository at this point in the history
  • Loading branch information
anbuselvan committed Feb 10, 2016
1 parent b541f1c commit 9a6f424
Show file tree
Hide file tree
Showing 67 changed files with 1,593 additions and 960 deletions.
12 changes: 12 additions & 0 deletions .meteor/packages
Expand Up @@ -27,4 +27,16 @@ fortawesome:fontawesome
momentjs:moment
accounts-base
accounts-oauth
meteorhacks:flow-router
meteorhacks:flow-layout
arillo:flow-router-helpers
http
acemtp:accounts-slack
reactive-var
simple:reactive-method
peppelg:bootstrap-3-modal
tsega:bootstrap3-datetimepicker
kevohagan:sweetalert
natestrauser:connection-banner
tap:i18n
copleykj:livestamp
18 changes: 17 additions & 1 deletion .meteor/versions
Expand Up @@ -4,6 +4,8 @@ accounts-password@1.1.4
accounts-ui@1.1.6
accounts-ui-unstyled@1.1.8
acemtp:accounts-slack@1.0.9
aldeed:simple-schema@1.3.3
arillo:flow-router-helpers@0.5.0
autoupdate@1.2.4
babel-compiler@5.8.24_1
babel-runtime@0.1.4
Expand All @@ -16,8 +18,11 @@ boilerplate-generator@1.0.4
caching-compiler@1.0.0
caching-html-compiler@1.0.2
callback-hook@1.0.4
cfs:http-methods@0.0.30
check@1.1.0
coffeescript@1.0.11
copleykj:livestamp@1.1.7
cosmos:browserify@0.5.1
ddp@1.2.2
ddp-client@1.2.1
ddp-common@1.2.2
Expand All @@ -40,13 +45,17 @@ htmljs@1.0.5
http@1.1.1
id-map@1.0.4
jquery@1.11.4
kevohagan:sweetalert@1.0.0
launch-screen@1.0.4
less@2.5.1
livedata@1.0.15
localstorage@1.0.5
logging@1.0.8
meteor@1.1.10
meteor-base@1.0.1
meteorhacks:flow-layout@1.4.2
meteorhacks:flow-router@1.19.0
meteorspark:util@0.2.0
minifiers@1.1.7
minimongo@1.0.10
mizzao:timesync@0.3.4
Expand All @@ -56,33 +65,40 @@ mobile-status-bar@1.0.6
momentjs:moment@2.11.2
mongo@1.1.3
mongo-id@1.0.1
natestrauser:connection-banner@0.4.3
npm-bcrypt@0.7.8_2
npm-mongo@1.4.39_1
oauth@1.1.6
oauth2@1.1.5
observe-sequence@1.0.7
ordered-dict@1.0.4
peppelg:bootstrap-3-modal@1.0.4
promise@0.5.1
raix:eventemitter@0.1.3
random@1.0.5
rate-limit@1.0.0
reactive-dict@1.1.3
reactive-var@1.0.6
reload@1.1.4
retry@1.0.4
routepolicy@1.0.6
seba:minifiers-autoprefixer@0.0.1
seba:minifiers-autoprefixer@0.0.2
service-configuration@1.0.5
session@1.1.1
sha@1.0.4
simple:reactive-method@1.0.2
spacebars@1.0.7
spacebars-compiler@1.0.7
srp@1.0.4
tap:i18n@1.7.0
templating@1.1.5
templating-tools@1.0.0
tracker@1.0.9
tsega:bootstrap3-datetimepicker@4.17.37_1
twbs:bootstrap@3.3.6
ui@1.0.8
underscore@1.0.4
url@1.0.5
webapp@1.2.3
webapp-hashing@1.0.5
zimme:active-route@2.3.2
184 changes: 0 additions & 184 deletions cb-v2-scratch.js

This file was deleted.

53 changes: 53 additions & 0 deletions client/css/_animations.scss
@@ -0,0 +1,53 @@
@-webkit-keyframes burst {
0% {
opacity: .6;
}

50% {
-webkit-transform: scale(1.8);
transform: scale(1.8);
opacity: 0;
}

100% {
opacity: 0;
}
}

@keyframes burst {
0% {
opacity: .6;
}

50% {
-webkit-transform: scale(1.8);
-ms-transform: scale(1.8);
transform: scale(1.8);
opacity: 0;
}

100% {
opacity: 0;
}
}

.faa-burst.animated,
.faa-burst.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-burst {
-webkit-animation: burst 2s infinite linear;
animation: burst 2s infinite linear;
}

.faa-burst.animated.faa-fast,
.faa-burst.animated-hover.faa-fast:hover,
.faa-parent.animated-hover:hover > .faa-burst.faa-fast {
-webkit-animation: burst 1s infinite linear;
animation: burst 1s infinite linear;
}

.faa-burst.animated.faa-slow,
.faa-burst.animated-hover.faa-slow:hover,
.faa-parent.animated-hover:hover > .faa-burst.faa-slow {
-webkit-animation: burst 3s infinite linear;
animation: burst 3s infinite linear;
}
13 changes: 13 additions & 0 deletions client/css/_base.scss
@@ -0,0 +1,13 @@
body {
padding: 0;
background: url(/images/pattern.png) left top repeat;
min-height: 800px;
}

#connection-lost-banner{
text-align: center;
}

a:hover {
text-decoration: none;
}

0 comments on commit 9a6f424

Please sign in to comment.