volt-awesome 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (64) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/.rspec +2 -0
  4. data/CODE_OF_CONDUCT.md +13 -0
  5. data/Gemfile +15 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +44 -0
  8. data/Rakefile +1 -0
  9. data/app/awesome/assets/css/awesome.css +149 -0
  10. data/app/awesome/assets/images/ellipsis.svg +62 -0
  11. data/app/awesome/assets/js/01-jquery.js +4 -0
  12. data/app/awesome/assets/js/02-awesome-weather.js +23 -0
  13. data/app/awesome/assets/js/03-simple-weather.js +2 -0
  14. data/app/awesome/config/dependencies.rb +2 -0
  15. data/app/awesome/config/initializers/boot.rb +10 -0
  16. data/app/awesome/config/routes.rb +1 -0
  17. data/app/awesome/controllers/button_controller.rb +11 -0
  18. data/app/awesome/controllers/main_controller.rb +16 -0
  19. data/app/awesome/views/button/down.html +3 -0
  20. data/app/awesome/views/button/facebook.html +6 -0
  21. data/app/awesome/views/button/index.html +13 -0
  22. data/app/awesome/views/button/send.html +3 -0
  23. data/app/awesome/views/button/twitter.html +4 -0
  24. data/app/awesome/views/button/up.html +2 -0
  25. data/app/awesome/views/field/index.html +9 -0
  26. data/app/awesome/views/field/submit.html +3 -0
  27. data/app/awesome/views/icon/index.html +2 -0
  28. data/app/awesome/views/link/index.html +2 -0
  29. data/app/awesome/views/loading/index.html +2 -0
  30. data/app/awesome/views/main/index.html +5 -0
  31. data/app/awesome/views/menu/index.html +0 -0
  32. data/app/awesome/views/nav/index.html +4 -0
  33. data/app/awesome/views/panel/image.html +4 -0
  34. data/app/awesome/views/panel/index.html +11 -0
  35. data/app/awesome/views/panel/info.html +8 -0
  36. data/app/awesome/views/panel/infoicon.html +5 -0
  37. data/app/awesome/views/panel/navfooter.html +7 -0
  38. data/app/awesome/views/panel/profile.html +20 -0
  39. data/app/awesome/views/panel/text.html +11 -0
  40. data/app/awesome/views/search_form/index.html +9 -0
  41. data/app/awesome/views/weather/index.html +16 -0
  42. data/lib/volt/awesome/version.rb +5 -0
  43. data/lib/volt/awesome.rb +18 -0
  44. data/screenshot.png +0 -0
  45. data/spec/dummy/.gitignore +9 -0
  46. data/spec/dummy/README.md +4 -0
  47. data/spec/dummy/app/main/assets/css/app.css.scss +1 -0
  48. data/spec/dummy/app/main/config/dependencies.rb +11 -0
  49. data/spec/dummy/app/main/config/initializers/boot.rb +10 -0
  50. data/spec/dummy/app/main/config/routes.rb +14 -0
  51. data/spec/dummy/app/main/controllers/main_controller.rb +27 -0
  52. data/spec/dummy/app/main/models/user.rb +12 -0
  53. data/spec/dummy/app/main/views/main/about.html +7 -0
  54. data/spec/dummy/app/main/views/main/index.html +6 -0
  55. data/spec/dummy/app/main/views/main/main.html +29 -0
  56. data/spec/dummy/config/app.rb +137 -0
  57. data/spec/dummy/config/base/index.html +15 -0
  58. data/spec/dummy/config/initializers/boot.rb +4 -0
  59. data/spec/dummy/config.ru +4 -0
  60. data/spec/integration/sample_integration_spec.rb +11 -0
  61. data/spec/sample_spec.rb +7 -0
  62. data/spec/spec_helper.rb +18 -0
  63. data/volt-awesome.gemspec +39 -0
  64. metadata +307 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f457e7d60c5072d8096a5e4e0e30ff3b4b504b2e
4
+ data.tar.gz: 76997a145aeaa971d135bbb528283dcfaca40fd9
5
+ SHA512:
6
+ metadata.gz: d74a58885d45e123e11675569c335f9b8eca05e27058410c372dc7bb5f189db572c2c78d54702413c3fd3cf71cbe5198a9e29bf1b8a485e21e37ed3dd0f5c852
7
+ data.tar.gz: 21443066a9e3dff5bebb1f3ad6dbfaf9fc96c940b26a8fc04b1e01c9c0718f5dd24eb464e100ee75193bdf459a4116a62758098b7dccfc7379cb3fc3cb3af4bb
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,15 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in volt-awesome.gemspec
4
+ gemspec
5
+
6
+ # Optional Gems for testing/dev
7
+
8
+ # The implementation of ReadWriteLock in Volt uses concurrent ruby and ext helps performance.
9
+ gem 'concurrent-ruby-ext', '~> 0.8.0'
10
+
11
+ # For mongo (optional)
12
+ gem 'bson_ext', '~> 1.9.0'
13
+
14
+ # Gems you use for development should be added to the gemspec file as
15
+ # development dependencies.
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 heri
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,44 @@
1
+ # Volt::Awesome
2
+
3
+ Awesome UI for @VoltFramework applications, based on Bootstrap 3.3.0 and Font Awesome.
4
+
5
+ Blocks of ui can be created with a few simple lines, such as `<:awesome:panel:image title="My headline" image_url="src.png" />`
6
+
7
+ example from an app done at a hackathon:
8
+
9
+ ![screenshot volt awesome ui](https://github.com/heri/volt-awesome/blob/master/screenshot.png?raw=true "screenshot volt::awesome")
10
+
11
+
12
+ ## Installation
13
+
14
+ Add this line to your application's Gemfile:
15
+
16
+ gem 'volt-awesome'
17
+
18
+ And then execute:
19
+
20
+ $ bundle
21
+
22
+ Or install it yourself as:
23
+
24
+ $ gem install volt-awesome
25
+
26
+ ## Usage
27
+
28
+ View the app/awesome/views folder to view all possible UI blocks.
29
+
30
+ ## TODO
31
+
32
+ * better neutral example
33
+ * graphs (pie chart, line chart, bar chart)
34
+ * social media icons
35
+ * re-do login UI for volt apps
36
+
37
+
38
+ ## Contributing
39
+
40
+ 1. Fork it ( http://github.com/[my-github-username]/volt-awesome/fork )
41
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
42
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
43
+ 4. Push to the branch (`git push origin my-new-feature`)
44
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,149 @@
1
+ // Place your apps css here
2
+
3
+ .footer, .header {
4
+ border-top:none;
5
+ }
6
+
7
+ .weather {
8
+ margin:0 -30px;
9
+ }
10
+
11
+ @font-face{font-family:weather;src:url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/93/artill_clean_icons-webfont.eot);src:url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/93/artill_clean_icons-webfont.eot?#iefix) format('embedded-opentype'),url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/93/artill_clean_icons-webfont.woff) format('woff'),url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/93/artill_clean_icons-webfont.ttf) format('truetype'),url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/93/artill_clean_icons-webfont.svg#artill_clean_weather_iconsRg) format('svg');font-weight:400;font-style:normal}html{width:100%;height:100%}body{font:14px 'Open Sans',"Helvetica Neue",Helvetica,Arial,"Lucida Grande",sans-serif;color:#8F7F70;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RlYzhiYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjMxJSIgc3RvcC1jb2xvcj0iI2FjOGU3NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY2JSIgc3RvcC1jb2xvcj0iI2JkYTI4NSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiM4NzZkNTIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+) fixed;background:-moz-linear-gradient(top,#dec8bb 0,#ac8e74 31%,#bda285 66%,#876d52 100%) fixed;background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#dec8bb),color-stop(31%,#ac8e74),color-stop(66%,#bda285),color-stop(100%,#876d52)) fixed;background:-webkit-linear-gradient(top,#dec8bb 0,#ac8e74 31%,#bda285 66%,#876d52 100%) fixed;background:-o-linear-gradient(top,#dec8bb 0,#ac8e74 31%,#bda285 66%,#876d52 100%) fixed;background:-ms-linear-gradient(top,#dec8bb 0,#ac8e74 31%,#bda285 66%,#876d52 100%) fixed;background:linear-gradient(to bottom,#dec8bb 0,#ac8e74 31%,#bda285 66%,#876d52 100%) fixed;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#dec8bb', endColorstr='#876d52', GradientType=0)}
12
+ .panel{border:none;font-shadow:0 1px 1px rgba(0,0,0,.25);border-radius:5px}
13
+ .panel-body{padding:20px}.panel-heading{border-top-left-radius:5px;border-top-right-radius:5px}.panel-footer{border-bottom-right-radius:5px;border-bottom-left-radius:5px;font-size:.9em;text-align:center}
14
+ .media-body {display: inline;} .btn-ui{background-color:#776B5F;border-color:#6d6257;color:#fff}
15
+ .btn-ui:hover{background-color:#72685A;color:#fff}.list-block{display:table;width:100%;border-collapse:collapse;border:none}.list-block ul{display:table-row}.list-block li{display:table-cell;margin:0}.pad-left-0{padding-left:0}.pad-right-0{padding-right:0}.mrg-btm-10{margin-bottom:10px}.mrg-btm-20{margin-bottom:20px}#weather-widget i{color:#fff;font-family:weather;font-size:1.5em;font-weight:400;font-style:normal;line-height:1}#weather-widget .panel-heading{background-color:#55BC75;color:#fff;padding-bottom:20px}#weather-widget #current{font-size:4em;margin-bottom:-20px}#weather-widget .panel-footer{background-color:#F5F0EC;padding:20px;border:none}.icon-0:before{content:":"}.icon-1:before{content:"p"}.icon-2:before{content:"S"}.icon-3:before{content:"Q"}.icon-4:before{content:"S"}.icon-5:before,.icon-6:before,.icon-7:before,.icon-8:before{content:"W"}.icon-9:before{content:"I"}.icon-10:before{content:"W"}.icon-11:before,.icon-12:before,.icon-13:before,.icon-14:before{content:"I"}
16
+ .icon-15:before{content:"W"}.icon-16:before{content:"I"}.icon-17:before{content:"W"}.icon-18:before{content:"U"}.icon-19:before,.icon-20:before,.icon-21:before,.icon-22:before,.icon-23:before{content:"Z"}.icon-24:before,.icon-25:before{content:"E"}.icon-26:before{content:"3"}.icon-27:before{content:"a"}.icon-28:before{content:"A"}.icon-29:before{content:"a"}.icon-30:before{content:"A"}.icon-31:before{content:"6"}.icon-32:before{content:"1"}.icon-33:before{content:"6"}.icon-34:before{content:"1"}.icon-35:before{content:"W"}.icon-36:before{content:"1"}.icon-37:before,.icon-38:before,.icon-39:before{content:"S"}.icon-40:before{content:"M"}.icon-41:before{content:"W"}.icon-42:before{content:"I"}.icon-43:before{content:"W"}.icon-44:before{content:"a"}.icon-45:before{content:"S"}.icon-46:before{content:"U"}.icon-47:before{content:"S"}#nav-widget a button{color:#8F7F70}.movie-panel{background:top center no-repeat #000;background-size:cover}.custom-request .media-heading{color:#5B5147}.custom-request .panel-body{padding:20px}.equest .panel-body .img-circle{height:90px;width:90px;padding:8px;border:1px solid #e2dfdc}.custom-request .panel-footer{padding:0;border:none}.custom-request .panel-footer .btn-group .btn{border:none;font-size:1.2em;background-color:#F6F1ED;color:#BAACA3;border-top-left-radius:0;border-top-right-radius:0;padding:15px 0}.custom-request .panel-footer .btn-group .btn:hover{color:#F6F1ED;background-color:#8F7F70}.custom-request .panel-footer .btn-group>.btn:not(:first-child){border-left:1px solid #fff}#login-widget .panel-body .input-group{margin-bottom:15px}#login-widget .panel-footer{padding:0;border:none}#login-widget .panel-footer .login-btn{padding:20px 20px 10px}#login-widget .panel-footer .facebook{background-color:#5F90B0;color:#fff;padding:15px;display:block}#pie-chart-widget .panel-body{padding:0}#pie-chart-widget .panel-footer{background-color:#fff;padding:0;margin-top:20px}#pie-chart-widget .panel-footer .btn{border:none;border-top-left-radius:0;border-top-right-radius:0;padding:20px 0;color:#fff;background-color:#776B5F;border-top:3px solid #6d6257}#pie-chart-widget .panel-footer .btn:hover{background-color:#62584C;border-color:#52483F}#pie-chart-widget h2{font-weight:700;margin:3px 0 0}#pie-chart-widget .legend li{background-color:#F5F0EC;padding:20px 10px}#pie-chart-widget .legend li:not(:first-child){border-left:1px solid #fff}#pie-chart-widget .legend .video{border-top:4px solid #4DAF7C}#pie-chart-widget .legend .audio{border-top:4px solid #EAC85D}#pie-chart-widget .legend .photo{border-top:4px solid #E25331}#myLineChart{background-color:#55BC75;padding:0 5px;margin:0}#myBarChart{margin-top:10px}#line-chart-widget .panel-heading{background-color:#55BC75;color:#fff;padding-bottom:0;margin-bottom:0}#line-chart-widget .panel-heading small{color:#fff}#line-chart-widget .panel-heading .label{background-color:rgba(0,0,0,.1);padding:5px}#line-chart-widget .panel-body{padding:0}#line-chart-widget .panel-footer{background-color:#fff;padding:20px;margin-top:0;border-top:none}#line-chart-widget .panel-footer li{padding:10px 0}#line-chart-widget h3{font-weight:700;margin:0}#line-chart-widget li{width:50%}#line-chart-widget .legend li{background-color:#F5F0EC;padding:20px 0}#line-chart-widget .legend li:not(:first-child){border-left:1px solid #fff}#line-chart-widget .chart-block>div{margin-top:20px;width:55%}#line-chart-widget .chart-block>div:last-child{padding-left:15px;width:45%}#line-chart-widget .chart-block .change{color:#fff;font-size:1.6em;border-radius:5px;padding:10px;margin-top:20px;background-color:#55BC75;width:100%}#line-chart-widget .chart-block .change i{font-size:.6em}
17
+ #arrow-widget{border:0;}
18
+ #arrow-widget .btn{border:0}
19
+ #social-widget{border:0;margin:10px 0 -10px 0}
20
+ #social-widget .btn{border:0}
21
+ #social-widget .btn.facebook, #social-widget .btn.wechat, #social-widget .btn.twitter {padding:10px;background-color:#fff;width:4em}
22
+ #social-widget .facebook .fa-circle {color: #5F90AE;}#social-widget .facebook:hover {background-color: #5F90AE;}
23
+ #social-widget .wechat .fa-circle{color:#7bb32e}#social-widget .wechat:hover{background-color:#7bb32e}#social-widget .wechat:hover .fa-wechat{color:#fff}
24
+ #social-widget .twitter .fa-circle{color:#2AB5DE}#social-widget .twitter:hover{background-color:#2AB5DE}
25
+ #nav-widget{border:0;margin-bottom:20px;box-shadow:0 1px 1px rgba(0,0,0,.25)}#nav-widget .btn-group:not(:first-child){border-left:1px solid #F5F0EC}
26
+ #nav-widget .btn{background-color:#fff;border:0;padding:20px;font-weight:600;border-bottom:3px solid #fff;margin-top:-20px;}
27
+ #nav-widget .btn:hover{background-color:#F8F3F0;color:#64584C;border-bottom:3px solid #55BC75}
28
+ #nav-widget .active .btn.see, #nav-widget .btn.see:hover{border-bottom:3px solid #55BC75;background-color:#F8F3F0;color:#64584C}
29
+ #nav-widget .active .btn.eat, #nav-widget .btn.eat:hover{border-bottom:3px solid #f072b0;background-color:#F8F3F0;color:#64584C}
30
+ #nav-widget .active .btn.watch, #nav-widget .btn.watch:hover{border-bottom:3px solid #EAC85D;background-color:#F8F3F0;color:#64584C}
31
+ #nav-widget .active .btn.social, #nav-widget .btn.social:hover{border-bottom:3px solid #E25331;background-color:#F8F3F0;color:#64584C}
32
+ #nav-widget i.fa{padding-right:5px}#nav-widget .badge{font-size:.7em;background-color:#E7663F;margin-left:4px;top:-10px}
33
+ .request-widget{box-shadow:0 1px 1px rgba(0,0,0,.25)}
34
+ .request-widget .list-group-item{border:0;color:#8F7F70;padding:15px;border-left:3px solid #fff}
35
+ .request-widget a.list-group-item:hover{background-color:#F8F3F0;color:#64584C;border-left:3px solid #55BC75}
36
+ .request-widget a.list-group-item:hover i.fa{color:#E35935}
37
+ .request-widget .heading{color:#8F7F70;background-color:#B1A599;border-left:3px solid #B1A599}
38
+ .request-widget .heading .text-wrap{padding:20px 0}
39
+ .request-widget .img-circle{height:90px;width:90px;padding:8px;border:1px solid #9C9084;margin-right:10px;float:left}
40
+ .request-widget .message { background-color:#B1A599}
41
+ .request-widget .message h5 strong { color:white }
42
+ .request-widget .heading .list-group-item-heading{font-weight:600;color:#fff}
43
+ @media only screen and (max-width : 480px) {
44
+ .container { width: auto; margin:0; padding:0;}
45
+ #nav-widget .btn{text-align:left}
46
+ #nav-widget .btn-group:not(:first-child){margin:0;border-left:0;border-top:1px solid #F5F0EC}
47
+ .btn-group>.btn{border-radius:0}
48
+ .btn-group>.btn:last-child{border-bottom-right-radius:5px;border-bottom-left-radius:5px}
49
+ .btn-group-justified>.btn,.btn-group-justified>.btn-group{max-width:100%}
50
+ .btn-group>.btn-group>.btn{border-radius:0}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:0}.btn-group>.btn-group:first-child>.btn:last-child{border-top-left-radius:3px;border-top-right-radius:3px}.btn-group>.btn-group:last-child>.btn:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px}}
51
+ #signature{margin-top:0;color:#fff}#signature a{color:#55BC75}.actions.panel-footer{padding:0;border:none}
52
+ .actions.panel-footer .btn-group .btn{border:none;font-size:1.2em;background-color:#F6F1ED;color:#BAACA3;border-top-left-radius:0;border-top-right-radius:0;padding:15px 0}.actions.panel-footer .btn-group .btn:hover{color:#F6F1ED;background-color:#8F7F70}.actions.panel-footer .btn-group>.btn:not(:first-child){border-left:1px solid #fff}#montreal-eat .movie-panel h2.media-heading{font-size:24px}.panel-footer.eateries,.panel-footer.landmarks,.panel-footer.showtimes{padding:1em 0;background-color:#f5f5f5;border-top:1px solid #ddd;font-size:.9em;text-align:center}
53
+ img { width: 100%;}
54
+ .actions.panel-footer .btn-group .btn.highlight {color: #E56E4C;}
55
+ .container {padding:0}
56
+ @media (min-width: 1200px) { .container {max-width:500px;} } @media (min-width: 768px) and (max-width: 979px){ .container {width:auto;} }
57
+ @media (min-width: 1200px) { .movie-panel .flickr-photo, .yelp-photo, .movie-photo {width:530px;} } @media (min-width: 768px) and (max-width: 979px){ .movie-panel .flickr-photo, .yelp-photo, .movie-photo {max-width:100%;} } #tagline { font-size: 14px;}
58
+ h5.comments {margin-top:0}
59
+ .gmap {
60
+ padding:0;
61
+ margin-bottom:-3px;
62
+ }
63
+ #weather-widget h5 { font-size: 1.25em;}
64
+ @media (min-width: 650px) {.container { width: 500px; }}
65
+ @media (max-width: 649px) {.container { width: auto; }}
66
+ @media screen and (max-device-width:640px) and (-webkit-device-pixel-ratio: 3) {.container { width: auto; } }
67
+ .gMapsiFrame { position: relative; padding-bottom: 75%; height: 0; overflow: hidden;}
68
+ .gMapsiFrame iframe { position: absolute;top: 0;left: 0;width: 100% !important;height: 100% !important;}
69
+
70
+ a.dropdown-toggle {color:#55BC75;font:1.25em;}
71
+ ul.user-menu {list-style-type: none;padding:0}
72
+ .dropdown-menu {
73
+ left: 35%;
74
+ }
75
+
76
+ #searchForm .panel-body { padding:0 0 20px 0 }
77
+
78
+ #loading_status {text-align: center}
79
+ #loading_status img{width: 50px}
80
+
81
+ h1#site-logo{margin:5px 0}
82
+ h1#site-logo img{width: 156px;height: 75px}
83
+ #nav-widget a button.highlight {
84
+ color: #E56E4C;
85
+ }
86
+
87
+ .panel-image {
88
+ padding:0;
89
+ background-size: cover;
90
+ }
91
+ .panel-heading.panel-image {
92
+ border-top-left-radius: 5px;
93
+ border-top-right-radius: 5px;
94
+ }
95
+ .panel .description { padding:0 20px 20px 20px; }
96
+ .panel {
97
+
98
+ box-shadow: 0 2px 2px rgba(0, 0, 0, .2) }
99
+
100
+ .profile .img-circle { width:110px}
101
+ .profile .media-heading { color: #5B5147;}
102
+
103
+
104
+ .panel-footer.info {
105
+ padding:0;
106
+ background-color: #fff;
107
+ margin-top:3px;
108
+ }
109
+ .panel-footer.info li {
110
+ background-color: #F5F0EC;
111
+ padding: 20px 0;
112
+ border-top: 4px solid #E25331;
113
+ }
114
+ .panel-footer.info li:not(:first-child) {
115
+ border-left: 1px solid #fff;
116
+ }
117
+ .panel-footer.info li:first-child{
118
+ margin-right: 1px;
119
+ border-top: 4px solid #4DAF7C
120
+ }
121
+ .panel-footer.info li:last-child{
122
+ margin-left: 1px;
123
+ border-top: 4px solid #EAC85D;
124
+ }
125
+ .panel-footer.info li h3 {
126
+ margin: 3px 0 0 0;
127
+ font-size: 30px;
128
+ }
129
+
130
+ .panel-text {
131
+ padding:0 20px 20px 20px;
132
+ }
133
+
134
+ .actions.panel-footer.navfooter .btn-group .btn {
135
+ background-color: #776B5F;
136
+ border-top: 3px solid #6d6257;
137
+ color:white;
138
+ padding:20px 0;
139
+ }
140
+ .actions.panel-footer.navfooter a small {
141
+ text-transform: uppercase;
142
+ }
143
+ .actions.panel-footer.navfooter .btn-group > .btn:not(:first-child) {
144
+ border-left: 0px solid #776B5F;
145
+ }
146
+
147
+ .media > .pull-left {
148
+ padding: 0 30px;
149
+ }
@@ -0,0 +1,62 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <svg width='56px' height='56px' xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="xMidYMid" class="uil-ellipsis">
3
+ <rect x="0" y="0" width="100" height="100" fill="none" class="bk"></rect>
4
+ <circle cx="16" cy="50" r="15" fill="#55BC75">
5
+ <animate id="anir11" attributeName="r" from="0" to="15" begin="0s;anir14.end" dur="0.1875s" fill="freeze"></animate>
6
+ <animate id="anir12" attributeName="r" from="15" to="15" begin="anir11.end" dur="0.9375s" fill="freeze"></animate>
7
+ <animate id="anir13" attributeName="r" from="15" to="0" begin="anir12.end" dur="0.1875s" fill="freeze"></animate>
8
+ <animate id="anir14" attributeName="r" from="0" to="0" begin="anir13.end" dur="0.1875s" fill="freeze"></animate>
9
+ <animate id="anix11" attributeName="cx" from="16" to="16" begin="0s;anix18.end" dur="0.1875s" fill="freeze"></animate>
10
+ <animate id="anix12" attributeName="cx" from="16" to="16" begin="anix11.end" dur="0.1875s" fill="freeze"></animate>
11
+ <animate id="anix13" attributeName="cx" from="16" to="50" begin="anix12.end" dur="0.1875s" fill="freeze"></animate>
12
+ <animate id="anix14" attributeName="cx" from="50" to="50" begin="anix13.end" dur="0.1875s" fill="freeze"></animate>
13
+ <animate id="anix15" attributeName="cx" from="50" to="84" begin="anix14.end" dur="0.1875s" fill="freeze"></animate>
14
+ <animate id="anix16" attributeName="cx" from="84" to="84" begin="anix15.end" dur="0.1875s" fill="freeze"></animate>
15
+ <animate id="anix17" attributeName="cx" from="84" to="84" begin="anix16.end" dur="0.1875s" fill="freeze"></animate>
16
+ <animate id="anix18" attributeName="cx" from="84" to="16" begin="anix17.end" dur="0.1875s" fill="freeze"></animate>
17
+ </circle>
18
+ <circle cx="50" cy="50" r="15" fill="#F5F0EC">
19
+ <animate id="anir21" attributeName="r" from="15" to="15" begin="0s;anir25.end" dur="0.75s" fill="freeze"></animate>
20
+ <animate id="anir22" attributeName="r" from="15" to="0" begin="anir21.end" dur="0.1875s" fill="freeze"></animate>
21
+ <animate id="anir23" attributeName="r" from="0" to="0" begin="anir22.end" dur="0.1875s" fill="freeze"></animate>
22
+ <animate id="anir24" attributeName="r" from="0" to="15" begin="anir23.end" dur="0.1875s" fill="freeze"></animate>
23
+ <animate id="anir25" attributeName="r" from="15" to="15" begin="anir24.end" dur="0.1875s" fill="freeze"></animate>
24
+ <animate id="anix21" attributeName="cx" from="16" to="50" begin="0s;anix28.end" dur="0.1875s" fill="freeze"></animate>
25
+ <animate id="anix22" attributeName="cx" from="50" to="50" begin="anix21.end" dur="0.1875s" fill="freeze"></animate>
26
+ <animate id="anix23" attributeName="cx" from="50" to="84" begin="anix22.end" dur="0.1875s" fill="freeze"></animate>
27
+ <animate id="anix24" attributeName="cx" from="84" to="84" begin="anix23.end" dur="0.1875s" fill="freeze"></animate>
28
+ <animate id="anix25" attributeName="cx" from="84" to="84" begin="anix24.end" dur="0.1875s" fill="freeze"></animate>
29
+ <animate id="anix26" attributeName="cx" from="84" to="16" begin="anix25.end" dur="0.1875s" fill="freeze"></animate>
30
+ <animate id="anix27" attributeName="cx" from="16" to="16" begin="anix26.end" dur="0.1875s" fill="freeze"></animate>
31
+ <animate id="anix28" attributeName="cx" from="16" to="16" begin="anix27.end" dur="0.1875s" fill="freeze"></animate>
32
+ </circle>
33
+ <circle cx="84" cy="50" r="15" fill="#55BC75">
34
+ <animate id="anir31" attributeName="r" from="15" to="15" begin="0s;anir35.end" dur="0.375s" fill="freeze"></animate>
35
+ <animate id="anir32" attributeName="r" from="15" to="0" begin="anir31.end" dur="0.1875s" fill="freeze"></animate>
36
+ <animate id="anir33" attributeName="r" from="0" to="0" begin="anir32.end" dur="0.1875s" fill="freeze"></animate>
37
+ <animate id="anir34" attributeName="r" from="0" to="15" begin="anir33.end" dur="0.1875s" fill="freeze"></animate>
38
+ <animate id="anir35" attributeName="r" from="15" to="15" begin="anir34.end" dur="0.5625s" fill="freeze"></animate>
39
+ <animate id="anix31" attributeName="cx" from="50" to="84" begin="0s;anix38.end" dur="0.1875s" fill="freeze"></animate>
40
+ <animate id="anix32" attributeName="cx" from="84" to="84" begin="anix31.end" dur="0.1875s" fill="freeze"></animate>
41
+ <animate id="anix33" attributeName="cx" from="84" to="84" begin="anix32.end" dur="0.1875s" fill="freeze"></animate>
42
+ <animate id="anix34" attributeName="cx" from="84" to="16" begin="anix33.end" dur="0.1875s" fill="freeze"></animate>
43
+ <animate id="anix35" attributeName="cx" from="16" to="16" begin="anix34.end" dur="0.1875s" fill="freeze"></animate>
44
+ <animate id="anix36" attributeName="cx" from="16" to="16" begin="anix35.end" dur="0.1875s" fill="freeze"></animate>
45
+ <animate id="anix37" attributeName="cx" from="16" to="50" begin="anix36.end" dur="0.1875s" fill="freeze"></animate>
46
+ <animate id="anix38" attributeName="cx" from="50" to="50" begin="anix37.end" dur="0.1875s" fill="freeze"></animate>
47
+ </circle>
48
+ <circle cx="84" cy="50" r="15" fill="#F5F0EC">
49
+ <animate id="anir41" attributeName="r" from="15" to="0" begin="0s;anir44.end" dur="0.1875s" fill="freeze"></animate>
50
+ <animate id="anir42" attributeName="r" from="0" to="0" begin="anir41.end" dur="0.1875s" fill="freeze"></animate>
51
+ <animate id="anir43" attributeName="r" from="0" to="15" begin="anir42.end" dur="0.1875s" fill="freeze"></animate>
52
+ <animate id="anir44" attributeName="r" from="15" to="15" begin="anir43.end" dur="0.9375s" fill="freeze"></animate>
53
+ <animate id="anix41" attributeName="cx" from="84" to="84" begin="0s;anix48.end" dur="0.1875s" fill="freeze"></animate>
54
+ <animate id="anix42" attributeName="cx" from="84" to="16" begin="anix41.end" dur="0.1875s" fill="freeze"></animate>
55
+ <animate id="anix43" attributeName="cx" from="16" to="16" begin="anix42.end" dur="0.1875s" fill="freeze"></animate>
56
+ <animate id="anix44" attributeName="cx" from="16" to="16" begin="anix43.end" dur="0.1875s" fill="freeze"></animate>
57
+ <animate id="anix45" attributeName="cx" from="16" to="50" begin="anix44.end" dur="0.1875s" fill="freeze"></animate>
58
+ <animate id="anix46" attributeName="cx" from="50" to="50" begin="anix45.end" dur="0.1875s" fill="freeze"></animate>
59
+ <animate id="anix47" attributeName="cx" from="50" to="84" begin="anix46.end" dur="0.1875s" fill="freeze"></animate>
60
+ <animate id="anix48" attributeName="cx" from="84" to="84" begin="anix47.end" dur="0.1875s" fill="freeze"></animate>
61
+ </circle>
62
+ </svg>