Add mobile but remove news in it
This commit is contained in:
		
							parent
							
								
									03c8d42138
								
							
						
					
					
						commit
						141eb7e723
					
				| 
						 | 
					@ -25,8 +25,8 @@ $('#index').live('pageinit',function(){
 | 
				
			||||||
	$(".slideImg").muImageResize({width: $globalW, height: Math.floor($globalW/720*240)});
 | 
						$(".slideImg").muImageResize({width: $globalW, height: Math.floor($globalW/720*240)});
 | 
				
			||||||
	$(this).find(".newpic img").muImageResize({width: 280, height: 200});
 | 
						$(this).find(".newpic img").muImageResize({width: 280, height: 200});
 | 
				
			||||||
	$('.slideshow').cycle({
 | 
						$('.slideshow').cycle({
 | 
				
			||||||
		fx: $effect,
 | 
							fx:'scrollLeft',
 | 
				
			||||||
		timeout: $timeout
 | 
							timeout: 6000,
 | 
				
			||||||
	});
 | 
						});
 | 
				
			||||||
	$(".newlist").css({
 | 
						$(".newlist").css({
 | 
				
			||||||
		"width" : $(".newitem").outerWidth()*(Math.floor($globalW/$(".newitem").outerWidth()))+30,
 | 
							"width" : $(".newitem").outerWidth()*(Math.floor($globalW/$(".newitem").outerWidth()))+30,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,303 @@
 | 
				
			||||||
 | 
					/*  Font Awesome
 | 
				
			||||||
 | 
					    the iconic font designed for use with Twitter Bootstrap
 | 
				
			||||||
 | 
					    -------------------------------------------------------
 | 
				
			||||||
 | 
					    The full suite of pictographic icons, examples, and documentation
 | 
				
			||||||
 | 
					    can be found at: http://fortawesome.github.com/Font-Awesome/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    License
 | 
				
			||||||
 | 
					    -------------------------------------------------------
 | 
				
			||||||
 | 
					    The Font Awesome webfont, CSS, and LESS files are licensed under CC BY 3.0:
 | 
				
			||||||
 | 
					    http://creativecommons.org/licenses/by/3.0/ A mention of
 | 
				
			||||||
 | 
					    'Font Awesome - http://fortawesome.github.com/Font-Awesome' in human-readable
 | 
				
			||||||
 | 
					    source code is considered acceptable attribution (most common on the web).
 | 
				
			||||||
 | 
					    If human readable source code is not available to the end user, a mention in
 | 
				
			||||||
 | 
					    an 'About' or 'Credits' screen is considered acceptable (most common in desktop
 | 
				
			||||||
 | 
					    or mobile software).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    Contact
 | 
				
			||||||
 | 
					    -------------------------------------------------------
 | 
				
			||||||
 | 
					    Email: dave@davegandy.com
 | 
				
			||||||
 | 
					    Twitter: http://twitter.com/fortaweso_me
 | 
				
			||||||
 | 
					    Work: http://lemonwi.se co-founder
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    */
 | 
				
			||||||
 | 
					@font-face {
 | 
				
			||||||
 | 
					  font-family: "FontAwesome";
 | 
				
			||||||
 | 
					  src: url('../fonts/fontawesome-webfont.eot');
 | 
				
			||||||
 | 
					  src: url('../fonts/fontawesome-webfont.eot?#iefix') format('eot'), url('../fonts/fontawesome-webfont.woff') format('woff'), url('../fonts/fontawesome-webfont.ttf') format('truetype'), url('../font/fontawesome-webfont.svg#FontAwesome') format('svg');
 | 
				
			||||||
 | 
					  font-weight: normal;
 | 
				
			||||||
 | 
					  font-style: normal;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/*  Font Awesome styles
 | 
				
			||||||
 | 
					    ------------------------------------------------------- */
 | 
				
			||||||
 | 
					[class^="icon-"]:before, [class*=" icon-"]:before {
 | 
				
			||||||
 | 
					  font-family: FontAwesome;
 | 
				
			||||||
 | 
					  font-weight: normal;
 | 
				
			||||||
 | 
					  font-style: normal;
 | 
				
			||||||
 | 
					  display: inline-block;
 | 
				
			||||||
 | 
					  text-decoration: inherit;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					a [class^="icon-"], a [class*=" icon-"] {
 | 
				
			||||||
 | 
					  display: inline-block;
 | 
				
			||||||
 | 
					  text-decoration: inherit;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					/* makes the font 33% larger relative to the icon container */
 | 
				
			||||||
 | 
					.icon-large:before {
 | 
				
			||||||
 | 
					  vertical-align: top;
 | 
				
			||||||
 | 
					  font-size: 1.3333333333333333em;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.btn [class^="icon-"], .btn [class*=" icon-"] {
 | 
				
			||||||
 | 
					  /* keeps button heights with and without icons the same */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  line-height: .9em;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					li [class^="icon-"], li [class*=" icon-"] {
 | 
				
			||||||
 | 
					  display: inline-block;
 | 
				
			||||||
 | 
					  width: 1.25em;
 | 
				
			||||||
 | 
					  text-align: center;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					li .icon-large[class^="icon-"], li .icon-large[class*=" icon-"] {
 | 
				
			||||||
 | 
					  /* 1.5 increased font size for icon-large * 1.25 width */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  width: 1.875em;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					li[class^="icon-"], li[class*=" icon-"] {
 | 
				
			||||||
 | 
					  margin-left: 0;
 | 
				
			||||||
 | 
					  list-style-type: none;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					li[class^="icon-"]:before, li[class*=" icon-"]:before {
 | 
				
			||||||
 | 
					  text-indent: -2em;
 | 
				
			||||||
 | 
					  text-align: center;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					li[class^="icon-"].icon-large:before, li[class*=" icon-"].icon-large:before {
 | 
				
			||||||
 | 
					  text-indent: -1.3333333333333333em;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					/*  Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
 | 
				
			||||||
 | 
					    readers do not read off random characters that represent icons */
 | 
				
			||||||
 | 
					.icon-glass:before                { content: "\f000"; }
 | 
				
			||||||
 | 
					.icon-music:before                { content: "\f001"; }
 | 
				
			||||||
 | 
					.icon-search:before               { content: "\f002"; }
 | 
				
			||||||
 | 
					.icon-envelope:before             { content: "\f003"; }
 | 
				
			||||||
 | 
					.icon-heart:before                { content: "\f004"; }
 | 
				
			||||||
 | 
					.icon-star:before                 { content: "\f005"; }
 | 
				
			||||||
 | 
					.icon-star-empty:before           { content: "\f006"; }
 | 
				
			||||||
 | 
					.icon-user:before                 { content: "\f007"; }
 | 
				
			||||||
 | 
					.icon-film:before                 { content: "\f008"; }
 | 
				
			||||||
 | 
					.icon-th-large:before             { content: "\f009"; }
 | 
				
			||||||
 | 
					.icon-th:before                   { content: "\f00a"; }
 | 
				
			||||||
 | 
					.icon-th-list:before              { content: "\f00b"; }
 | 
				
			||||||
 | 
					.icon-ok:before                   { content: "\f00c"; }
 | 
				
			||||||
 | 
					.icon-remove:before               { content: "\f00d"; }
 | 
				
			||||||
 | 
					.icon-zoom-in:before              { content: "\f00e"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-zoom-out:before             { content: "\f010"; }
 | 
				
			||||||
 | 
					.icon-off:before                  { content: "\f011"; }
 | 
				
			||||||
 | 
					.icon-signal:before               { content: "\f012"; }
 | 
				
			||||||
 | 
					.icon-cog:before                  { content: "\f013"; }
 | 
				
			||||||
 | 
					.icon-trash:before                { content: "\f014"; }
 | 
				
			||||||
 | 
					.icon-home:before                 { content: "\f015"; }
 | 
				
			||||||
 | 
					.icon-file:before                 { content: "\f016"; }
 | 
				
			||||||
 | 
					.icon-time:before                 { content: "\f017"; }
 | 
				
			||||||
 | 
					.icon-road:before                 { content: "\f018"; }
 | 
				
			||||||
 | 
					.icon-download-alt:before         { content: "\f019"; }
 | 
				
			||||||
 | 
					.icon-download:before             { content: "\f01a"; }
 | 
				
			||||||
 | 
					.icon-upload:before               { content: "\f01b"; }
 | 
				
			||||||
 | 
					.icon-inbox:before                { content: "\f01c"; }
 | 
				
			||||||
 | 
					.icon-play-circle:before          { content: "\f01d"; }
 | 
				
			||||||
 | 
					.icon-repeat:before               { content: "\f01e"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/* \f020 doesn't work in Safari. all shifted one down */
 | 
				
			||||||
 | 
					.icon-refresh:before              { content: "\f021"; }
 | 
				
			||||||
 | 
					.icon-list-alt:before             { content: "\f022"; }
 | 
				
			||||||
 | 
					.icon-lock:before                 { content: "\f023"; }
 | 
				
			||||||
 | 
					.icon-flag:before                 { content: "\f024"; }
 | 
				
			||||||
 | 
					.icon-headphones:before           { content: "\f025"; }
 | 
				
			||||||
 | 
					.icon-volume-off:before           { content: "\f026"; }
 | 
				
			||||||
 | 
					.icon-volume-down:before          { content: "\f027"; }
 | 
				
			||||||
 | 
					.icon-volume-up:before            { content: "\f028"; }
 | 
				
			||||||
 | 
					.icon-qrcode:before               { content: "\f029"; }
 | 
				
			||||||
 | 
					.icon-barcode:before              { content: "\f02a"; }
 | 
				
			||||||
 | 
					.icon-tag:before                  { content: "\f02b"; }
 | 
				
			||||||
 | 
					.icon-tags:before                 { content: "\f02c"; }
 | 
				
			||||||
 | 
					.icon-book:before                 { content: "\f02d"; }
 | 
				
			||||||
 | 
					.icon-bookmark:before             { content: "\f02e"; }
 | 
				
			||||||
 | 
					.icon-print:before                { content: "\f02f"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-camera:before               { content: "\f030"; }
 | 
				
			||||||
 | 
					.icon-font:before                 { content: "\f031"; }
 | 
				
			||||||
 | 
					.icon-bold:before                 { content: "\f032"; }
 | 
				
			||||||
 | 
					.icon-italic:before               { content: "\f033"; }
 | 
				
			||||||
 | 
					.icon-text-height:before          { content: "\f034"; }
 | 
				
			||||||
 | 
					.icon-text-width:before           { content: "\f035"; }
 | 
				
			||||||
 | 
					.icon-align-left:before           { content: "\f036"; }
 | 
				
			||||||
 | 
					.icon-align-center:before         { content: "\f037"; }
 | 
				
			||||||
 | 
					.icon-align-right:before          { content: "\f038"; }
 | 
				
			||||||
 | 
					.icon-align-justify:before        { content: "\f039"; }
 | 
				
			||||||
 | 
					.icon-list:before                 { content: "\f03a"; }
 | 
				
			||||||
 | 
					.icon-indent-left:before          { content: "\f03b"; }
 | 
				
			||||||
 | 
					.icon-indent-right:before         { content: "\f03c"; }
 | 
				
			||||||
 | 
					.icon-facetime-video:before       { content: "\f03d"; }
 | 
				
			||||||
 | 
					.icon-picture:before              { content: "\f03e"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-pencil:before               { content: "\f040"; }
 | 
				
			||||||
 | 
					.icon-map-marker:before           { content: "\f041"; }
 | 
				
			||||||
 | 
					.icon-adjust:before               { content: "\f042"; }
 | 
				
			||||||
 | 
					.icon-tint:before                 { content: "\f043"; }
 | 
				
			||||||
 | 
					.icon-edit:before                 { content: "\f044"; }
 | 
				
			||||||
 | 
					.icon-share:before                { content: "\f045"; }
 | 
				
			||||||
 | 
					.icon-check:before                { content: "\f046"; }
 | 
				
			||||||
 | 
					.icon-move:before                 { content: "\f047"; }
 | 
				
			||||||
 | 
					.icon-step-backward:before        { content: "\f048"; }
 | 
				
			||||||
 | 
					.icon-fast-backward:before        { content: "\f049"; }
 | 
				
			||||||
 | 
					.icon-backward:before             { content: "\f04a"; }
 | 
				
			||||||
 | 
					.icon-play:before                 { content: "\f04b"; }
 | 
				
			||||||
 | 
					.icon-pause:before                { content: "\f04c"; }
 | 
				
			||||||
 | 
					.icon-stop:before                 { content: "\f04d"; }
 | 
				
			||||||
 | 
					.icon-forward:before              { content: "\f04e"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-fast-forward:before         { content: "\f050"; }
 | 
				
			||||||
 | 
					.icon-step-forward:before         { content: "\f051"; }
 | 
				
			||||||
 | 
					.icon-eject:before                { content: "\f052"; }
 | 
				
			||||||
 | 
					.icon-chevron-left:before         { content: "\f053"; }
 | 
				
			||||||
 | 
					.icon-chevron-right:before        { content: "\f054"; }
 | 
				
			||||||
 | 
					.icon-plus-sign:before            { content: "\f055"; }
 | 
				
			||||||
 | 
					.icon-minus-sign:before           { content: "\f056"; }
 | 
				
			||||||
 | 
					.icon-remove-sign:before          { content: "\f057"; }
 | 
				
			||||||
 | 
					.icon-ok-sign:before              { content: "\f058"; }
 | 
				
			||||||
 | 
					.icon-question-sign:before        { content: "\f059"; }
 | 
				
			||||||
 | 
					.icon-info-sign:before            { content: "\f05a"; }
 | 
				
			||||||
 | 
					.icon-screenshot:before           { content: "\f05b"; }
 | 
				
			||||||
 | 
					.icon-remove-circle:before        { content: "\f05c"; }
 | 
				
			||||||
 | 
					.icon-ok-circle:before            { content: "\f05d"; }
 | 
				
			||||||
 | 
					.icon-ban-circle:before           { content: "\f05e"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-arrow-left:before           { content: "\f060"; }
 | 
				
			||||||
 | 
					.icon-arrow-right:before          { content: "\f061"; }
 | 
				
			||||||
 | 
					.icon-arrow-up:before             { content: "\f062"; }
 | 
				
			||||||
 | 
					.icon-arrow-down:before           { content: "\f063"; }
 | 
				
			||||||
 | 
					.icon-share-alt:before            { content: "\f064"; }
 | 
				
			||||||
 | 
					.icon-resize-full:before          { content: "\f065"; }
 | 
				
			||||||
 | 
					.icon-resize-small:before         { content: "\f066"; }
 | 
				
			||||||
 | 
					.icon-plus:before                 { content: "\f067"; }
 | 
				
			||||||
 | 
					.icon-minus:before                { content: "\f068"; }
 | 
				
			||||||
 | 
					.icon-asterisk:before             { content: "\f069"; }
 | 
				
			||||||
 | 
					.icon-exclamation-sign:before     { content: "\f06a"; }
 | 
				
			||||||
 | 
					.icon-gift:before                 { content: "\f06b"; }
 | 
				
			||||||
 | 
					.icon-leaf:before                 { content: "\f06c"; }
 | 
				
			||||||
 | 
					.icon-fire:before                 { content: "\f06d"; }
 | 
				
			||||||
 | 
					.icon-eye-open:before             { content: "\f06e"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-eye-close:before            { content: "\f070"; }
 | 
				
			||||||
 | 
					.icon-warning-sign:before         { content: "\f071"; }
 | 
				
			||||||
 | 
					.icon-plane:before                { content: "\f072"; }
 | 
				
			||||||
 | 
					.icon-calendar:before             { content: "\f073"; }
 | 
				
			||||||
 | 
					.icon-random:before               { content: "\f074"; }
 | 
				
			||||||
 | 
					.icon-comment:before              { content: "\f075"; }
 | 
				
			||||||
 | 
					.icon-magnet:before               { content: "\f076"; }
 | 
				
			||||||
 | 
					.icon-chevron-up:before           { content: "\f077"; }
 | 
				
			||||||
 | 
					.icon-chevron-down:before         { content: "\f078"; }
 | 
				
			||||||
 | 
					.icon-retweet:before              { content: "\f079"; }
 | 
				
			||||||
 | 
					.icon-shopping-cart:before        { content: "\f07a"; }
 | 
				
			||||||
 | 
					.icon-folder-close:before         { content: "\f07b"; }
 | 
				
			||||||
 | 
					.icon-folder-open:before          { content: "\f07c"; }
 | 
				
			||||||
 | 
					.icon-resize-vertical:before      { content: "\f07d"; }
 | 
				
			||||||
 | 
					.icon-resize-horizontal:before    { content: "\f07e"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-bar-chart:before            { content: "\f080"; }
 | 
				
			||||||
 | 
					.icon-twitter-sign:before         { content: "\f081"; }
 | 
				
			||||||
 | 
					.icon-facebook-sign:before        { content: "\f082"; }
 | 
				
			||||||
 | 
					.icon-camera-retro:before         { content: "\f083"; }
 | 
				
			||||||
 | 
					.icon-key:before                  { content: "\f084"; }
 | 
				
			||||||
 | 
					.icon-cogs:before                 { content: "\f085"; }
 | 
				
			||||||
 | 
					.icon-comments:before             { content: "\f086"; }
 | 
				
			||||||
 | 
					.icon-thumbs-up:before            { content: "\f087"; }
 | 
				
			||||||
 | 
					.icon-thumbs-down:before          { content: "\f088"; }
 | 
				
			||||||
 | 
					.icon-star-half:before            { content: "\f089"; }
 | 
				
			||||||
 | 
					.icon-heart-empty:before          { content: "\f08a"; }
 | 
				
			||||||
 | 
					.icon-signout:before              { content: "\f08b"; }
 | 
				
			||||||
 | 
					.icon-linkedin-sign:before        { content: "\f08c"; }
 | 
				
			||||||
 | 
					.icon-pushpin:before              { content: "\f08d"; }
 | 
				
			||||||
 | 
					.icon-external-link:before        { content: "\f08e"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-signin:before               { content: "\f090"; }
 | 
				
			||||||
 | 
					.icon-trophy:before               { content: "\f091"; }
 | 
				
			||||||
 | 
					.icon-github-sign:before          { content: "\f092"; }
 | 
				
			||||||
 | 
					.icon-upload-alt:before           { content: "\f093"; }
 | 
				
			||||||
 | 
					.icon-lemon:before                { content: "\f094"; }
 | 
				
			||||||
 | 
					.icon-phone:before                { content: "\f095"; }
 | 
				
			||||||
 | 
					.icon-check-empty:before          { content: "\f096"; }
 | 
				
			||||||
 | 
					.icon-bookmark-empty:before       { content: "\f097"; }
 | 
				
			||||||
 | 
					.icon-phone-sign:before           { content: "\f098"; }
 | 
				
			||||||
 | 
					.icon-twitter:before              { content: "\f099"; }
 | 
				
			||||||
 | 
					.icon-facebook:before             { content: "\f09a"; }
 | 
				
			||||||
 | 
					.icon-github:before               { content: "\f09b"; }
 | 
				
			||||||
 | 
					.icon-unlock:before               { content: "\f09c"; }
 | 
				
			||||||
 | 
					.icon-credit-card:before          { content: "\f09d"; }
 | 
				
			||||||
 | 
					.icon-rss:before                  { content: "\f09e"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-hdd:before                  { content: "\f0a0"; }
 | 
				
			||||||
 | 
					.icon-bullhorn:before             { content: "\f0a1"; }
 | 
				
			||||||
 | 
					.icon-bell:before                 { content: "\f0a2"; }
 | 
				
			||||||
 | 
					.icon-certificate:before          { content: "\f0a3"; }
 | 
				
			||||||
 | 
					.icon-hand-right:before           { content: "\f0a4"; }
 | 
				
			||||||
 | 
					.icon-hand-left:before            { content: "\f0a5"; }
 | 
				
			||||||
 | 
					.icon-hand-up:before              { content: "\f0a6"; }
 | 
				
			||||||
 | 
					.icon-hand-down:before            { content: "\f0a7"; }
 | 
				
			||||||
 | 
					.icon-circle-arrow-left:before    { content: "\f0a8"; }
 | 
				
			||||||
 | 
					.icon-circle-arrow-right:before   { content: "\f0a9"; }
 | 
				
			||||||
 | 
					.icon-circle-arrow-up:before      { content: "\f0aa"; }
 | 
				
			||||||
 | 
					.icon-circle-arrow-down:before    { content: "\f0ab"; }
 | 
				
			||||||
 | 
					.icon-globe:before                { content: "\f0ac"; }
 | 
				
			||||||
 | 
					.icon-wrench:before               { content: "\f0ad"; }
 | 
				
			||||||
 | 
					.icon-tasks:before                { content: "\f0ae"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-filter:before               { content: "\f0b0"; }
 | 
				
			||||||
 | 
					.icon-briefcase:before            { content: "\f0b1"; }
 | 
				
			||||||
 | 
					.icon-fullscreen:before           { content: "\f0b2"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-group:before                { content: "\f0c0"; }
 | 
				
			||||||
 | 
					.icon-link:before                 { content: "\f0c1"; }
 | 
				
			||||||
 | 
					.icon-cloud:before                { content: "\f0c2"; }
 | 
				
			||||||
 | 
					.icon-beaker:before               { content: "\f0c3"; }
 | 
				
			||||||
 | 
					.icon-cut:before                  { content: "\f0c4"; }
 | 
				
			||||||
 | 
					.icon-copy:before                 { content: "\f0c5"; }
 | 
				
			||||||
 | 
					.icon-paper-clip:before           { content: "\f0c6"; }
 | 
				
			||||||
 | 
					.icon-save:before                 { content: "\f0c7"; }
 | 
				
			||||||
 | 
					.icon-sign-blank:before           { content: "\f0c8"; }
 | 
				
			||||||
 | 
					.icon-reorder:before              { content: "\f0c9"; }
 | 
				
			||||||
 | 
					.icon-list-ul:before              { content: "\f0ca"; }
 | 
				
			||||||
 | 
					.icon-list-ol:before              { content: "\f0cb"; }
 | 
				
			||||||
 | 
					.icon-strikethrough:before        { content: "\f0cc"; }
 | 
				
			||||||
 | 
					.icon-underline:before            { content: "\f0cd"; }
 | 
				
			||||||
 | 
					.icon-table:before                { content: "\f0ce"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-magic:before                { content: "\f0d0"; }
 | 
				
			||||||
 | 
					.icon-truck:before                { content: "\f0d1"; }
 | 
				
			||||||
 | 
					.icon-pinterest:before            { content: "\f0d2"; }
 | 
				
			||||||
 | 
					.icon-pinterest-sign:before       { content: "\f0d3"; }
 | 
				
			||||||
 | 
					.icon-google-plus-sign:before     { content: "\f0d4"; }
 | 
				
			||||||
 | 
					.icon-google-plus:before          { content: "\f0d5"; }
 | 
				
			||||||
 | 
					.icon-money:before                { content: "\f0d6"; }
 | 
				
			||||||
 | 
					.icon-caret-down:before           { content: "\f0d7"; }
 | 
				
			||||||
 | 
					.icon-caret-up:before             { content: "\f0d8"; }
 | 
				
			||||||
 | 
					.icon-caret-left:before           { content: "\f0d9"; }
 | 
				
			||||||
 | 
					.icon-caret-right:before          { content: "\f0da"; }
 | 
				
			||||||
 | 
					.icon-columns:before              { content: "\f0db"; }
 | 
				
			||||||
 | 
					.icon-sort:before                 { content: "\f0dc"; }
 | 
				
			||||||
 | 
					.icon-sort-down:before            { content: "\f0dd"; }
 | 
				
			||||||
 | 
					.icon-sort-up:before              { content: "\f0de"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-envelope-alt:before         { content: "\f0e0"; }
 | 
				
			||||||
 | 
					.icon-linkedin:before             { content: "\f0e1"; }
 | 
				
			||||||
 | 
					.icon-undo:before                 { content: "\f0e2"; }
 | 
				
			||||||
 | 
					.icon-legal:before                { content: "\f0e3"; }
 | 
				
			||||||
 | 
					.icon-dashboard:before            { content: "\f0e4"; }
 | 
				
			||||||
 | 
					.icon-comment-alt:before          { content: "\f0e5"; }
 | 
				
			||||||
 | 
					.icon-comments-alt:before         { content: "\f0e6"; }
 | 
				
			||||||
 | 
					.icon-bolt:before                 { content: "\f0e7"; }
 | 
				
			||||||
 | 
					.icon-sitemap:before              { content: "\f0e8"; }
 | 
				
			||||||
 | 
					.icon-umbrella:before             { content: "\f0e9"; }
 | 
				
			||||||
 | 
					.icon-paste:before                { content: "\f0ea"; }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					.icon-user-md:before              { content: "\f200"; }
 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,519 @@
 | 
				
			||||||
 | 
					/* WARNING:	Your are using ligatures for your icon font.
 | 
				
			||||||
 | 
								Ligatures are not supported in IE 9 (and older).
 | 
				
			||||||
 | 
								Use the Private Use Area encoding for best browser support.
 | 
				
			||||||
 | 
					==================================================================== */
 | 
				
			||||||
 | 
					@font-face {
 | 
				
			||||||
 | 
						font-family: 'entypo';
 | 
				
			||||||
 | 
						src:url(<%= asset_path 'entypo.eot' %>);
 | 
				
			||||||
 | 
						src:url(<%= asset_path 'entypo.eot?#iefix' %>) format('embedded-opentype'),
 | 
				
			||||||
 | 
							url(<%= asset_path 'entypo.svg#entypo' %>) format('svg'),
 | 
				
			||||||
 | 
							url(<%= asset_path 'entypo.woff' %>) format('woff'),
 | 
				
			||||||
 | 
							url(<%= asset_path 'entypo.ttf' %>) format('truetype');
 | 
				
			||||||
 | 
						font-weight: normal;
 | 
				
			||||||
 | 
						font-style: normal;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/* Use the following CSS code if you want to use data attributes for inserting your icons */
 | 
				
			||||||
 | 
					[data-icons]:before {
 | 
				
			||||||
 | 
						font-family: 'entypo';
 | 
				
			||||||
 | 
						content: attr(data-icon);
 | 
				
			||||||
 | 
						speak: none;
 | 
				
			||||||
 | 
						/* Enable Ligatures */
 | 
				
			||||||
 | 
						-webkit-font-feature-settings:"liga","dlig";
 | 
				
			||||||
 | 
						   -moz-font-feature-settings:"liga=1, dlig=1";
 | 
				
			||||||
 | 
						   -moz-font-feature-settings:"liga","dlig";
 | 
				
			||||||
 | 
						    -ms-font-feature-settings:"liga","dlig";
 | 
				
			||||||
 | 
						     -o-font-feature-settings:"liga","dlig";
 | 
				
			||||||
 | 
						        font-feature-settings:"liga","dlig";
 | 
				
			||||||
 | 
						text-rendering:optimizeLegibility;
 | 
				
			||||||
 | 
						font-weight: normal;
 | 
				
			||||||
 | 
						-webkit-font-smoothing: antialiased;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					/* Use the following CSS code if you want to have a class per icon */
 | 
				
			||||||
 | 
					[class^="icons-"]:before, [class*=" icons-"]:before {
 | 
				
			||||||
 | 
						font-size: 1.5em;
 | 
				
			||||||
 | 
						font-family: 'entypo';
 | 
				
			||||||
 | 
						font-style: normal;
 | 
				
			||||||
 | 
						speak: none;
 | 
				
			||||||
 | 
						/* Enable Ligatures */
 | 
				
			||||||
 | 
						-webkit-font-feature-settings:"liga","dlig";
 | 
				
			||||||
 | 
						   -moz-font-feature-settings:"liga=1, dlig=1";
 | 
				
			||||||
 | 
						   -moz-font-feature-settings:"liga","dlig";
 | 
				
			||||||
 | 
						    -ms-font-feature-settings:"liga","dlig";
 | 
				
			||||||
 | 
						     -o-font-feature-settings:"liga","dlig";
 | 
				
			||||||
 | 
						       font-feature-settings:"liga","dlig";
 | 
				
			||||||
 | 
						text-rendering:optimizeLegibility;
 | 
				
			||||||
 | 
						font-weight: normal;
 | 
				
			||||||
 | 
						-webkit-font-smoothing: antialiased;
 | 
				
			||||||
 | 
						display: inline-block;
 | 
				
			||||||
 | 
						text-decoration: inherit;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					a [class^="icons-"], a [class*=" icons-"] {
 | 
				
			||||||
 | 
					  display: inline-block;
 | 
				
			||||||
 | 
					  text-decoration: inherit;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					/* makes the font 33% larger relative to the icon container */
 | 
				
			||||||
 | 
					.icons-large:before {
 | 
				
			||||||
 | 
					  vertical-align: top;
 | 
				
			||||||
 | 
					  font-size: 1.3333333333333333em;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.btn [class^="icons-"], .btn [class*=" icons-"] {
 | 
				
			||||||
 | 
					  /* keeps button heights with and without icons the same */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  line-height: .9em;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					li [class^="icons-"], li [class*=" icons-"] {
 | 
				
			||||||
 | 
					  display: inline-block;
 | 
				
			||||||
 | 
					  width: 1.25em;
 | 
				
			||||||
 | 
					  text-align: center;
 | 
				
			||||||
 | 
					  margin-right: 10px;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					li .icons-large[class^="icons-"], li .icons-large[class*=" icons-"] {
 | 
				
			||||||
 | 
					  /* 1.5 increased font size for icons-large * 1.25 width */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  width: 1.875em;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					li[class^="icons-"], li[class*=" icons-"] {
 | 
				
			||||||
 | 
					  margin-left: 0;
 | 
				
			||||||
 | 
					  list-style-type: none;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					li[class^="icons-"]:before, li[class*=" icons-"]:before {
 | 
				
			||||||
 | 
					  text-indent: -2em;
 | 
				
			||||||
 | 
					  text-align: center;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					li[class^="icons-"].icons-large:before, li[class*=" icons-"].icons-large:before {
 | 
				
			||||||
 | 
					  text-indent: -1.3333333333333333em;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-phone:before {
 | 
				
			||||||
 | 
						content: "\70\68\6f\6e\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-directions:before {
 | 
				
			||||||
 | 
						content: "\64\69\72\65\63\74\69\6f\6e\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-mail:before {
 | 
				
			||||||
 | 
						content: "\6d\61\69\6c";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-pencil:before {
 | 
				
			||||||
 | 
						content: "\70\65\6e\63\69\6c";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-paperclip:before {
 | 
				
			||||||
 | 
						content: "\70\61\70\65\72\63\6c\69\70";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-drawer:before {
 | 
				
			||||||
 | 
						content: "\64\72\61\77\65\72";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-member:before {
 | 
				
			||||||
 | 
						content: "\6d\65\6d\62\65\72";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-group:before {
 | 
				
			||||||
 | 
						content: "\67\72\6f\75\70";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-addmember:before {
 | 
				
			||||||
 | 
						content: "\61\64\64\6d\65\6d\62\65\72";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-location:before {
 | 
				
			||||||
 | 
						content: "\6c\6f\63\61\74\69\6f\6e";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-share:before {
 | 
				
			||||||
 | 
						content: "\73\68\61\72\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-heart-full:before {
 | 
				
			||||||
 | 
						content: "\68\65\61\72\74\2d\66\75\6c\6c";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-heart-bare:before {
 | 
				
			||||||
 | 
						content: "\68\65\61\72\74\2d\62\61\72\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-star-full:before {
 | 
				
			||||||
 | 
						content: "\73\74\61\72\2d\66\75\6c\6c";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-star-bare:before {
 | 
				
			||||||
 | 
						content: "\73\74\61\72\2d\62\61\72\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-discuss:before {
 | 
				
			||||||
 | 
						content: "\64\69\73\63\75\73\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-comment:before {
 | 
				
			||||||
 | 
						content: "\63\6f\6d\6d\65\6e\74";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-quote:before {
 | 
				
			||||||
 | 
						content: "\71\75\6f\74\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-house:before {
 | 
				
			||||||
 | 
						content: "\68\6f\75\73\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-search:before {
 | 
				
			||||||
 | 
						content: "\73\65\61\72\63\68";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-printer:before {
 | 
				
			||||||
 | 
						content: "\70\72\69\6e\74\65\72";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-bell:before {
 | 
				
			||||||
 | 
						content: "\62\65\6c\6c";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-link:before {
 | 
				
			||||||
 | 
						content: "\6c\69\6e\6b";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-flag:before {
 | 
				
			||||||
 | 
						content: "\66\61\6c\67";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-cog:before {
 | 
				
			||||||
 | 
						content: "\63\6f\67";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-tools:before {
 | 
				
			||||||
 | 
						content: "\74\6f\6f\6c\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-tag:before {
 | 
				
			||||||
 | 
						content: "\74\61\67";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-camera:before {
 | 
				
			||||||
 | 
						content: "\63\61\6d\65\72\61";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-megaphone:before {
 | 
				
			||||||
 | 
						content: "\6d\65\67\61\70\68\6f\6e\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-new:before {
 | 
				
			||||||
 | 
						content: "\6e\65\77";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-graduation:before {
 | 
				
			||||||
 | 
						content: "\67\72\61\64\75\61\74\69\6f\6e";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-books:before {
 | 
				
			||||||
 | 
						content: "\62\6f\6f\6b\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-page:before {
 | 
				
			||||||
 | 
						content: "\70\61\67\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-lifebuoy:before {
 | 
				
			||||||
 | 
						content: "\6c\69\66\65\62\75\6f\79";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-eye:before {
 | 
				
			||||||
 | 
						content: "\65\79\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-clock:before {
 | 
				
			||||||
 | 
						content: "\63\6c\6f\63\6b";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-calendar:before {
 | 
				
			||||||
 | 
						content: "\63\61\6c\65\6e\64\61\72";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-briefcase:before {
 | 
				
			||||||
 | 
						content: "\62\72\69\65\66\63\61\73\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-gauge:before {
 | 
				
			||||||
 | 
						content: "\67\61\75\67\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-language:before {
 | 
				
			||||||
 | 
						content: "\6c\61\6e\67\75\61\67\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-keys:before {
 | 
				
			||||||
 | 
						content: "\6b\65\79\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-earth:before {
 | 
				
			||||||
 | 
						content: "\65\61\72\74\68";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-keyboard:before {
 | 
				
			||||||
 | 
						content: "\6b\65\79\62\6f\61\72\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-browser:before {
 | 
				
			||||||
 | 
						content: "\62\72\6f\77\73\65\72";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-publish:before {
 | 
				
			||||||
 | 
						content: "\70\75\62\6c\69\73\68";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-code:before {
 | 
				
			||||||
 | 
						content: "\63\6f\64\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-light-bulb:before {
 | 
				
			||||||
 | 
						content: "\6c\69\67\68\74\2d\62\75\6c\62";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-database:before {
 | 
				
			||||||
 | 
						content: "\64\61\74\61\62\61\73\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-box:before {
 | 
				
			||||||
 | 
						content: "\62\6f\78";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-rss:before {
 | 
				
			||||||
 | 
						content: "\72\73\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-clipboard:before {
 | 
				
			||||||
 | 
						content: "\63\6c\69\70\62\6f\61\72\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-cart:before {
 | 
				
			||||||
 | 
						content: "\63\61\72\74";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-untitled:before {
 | 
				
			||||||
 | 
						content: "\75\6e\74\69\74\6c\65\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-statistics:before {
 | 
				
			||||||
 | 
						content: "\73\74\61\74\69\73\74\69\63\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-pie:before {
 | 
				
			||||||
 | 
						content: "\70\69\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-bars:before {
 | 
				
			||||||
 | 
						content: "\62\61\72\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-graph:before {
 | 
				
			||||||
 | 
						content: "\67\72\61\70\68";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-lock:before {
 | 
				
			||||||
 | 
						content: "\6c\6f\63\6b";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-unlock:before {
 | 
				
			||||||
 | 
						content: "\75\6e\6c\6f\63\6b";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-outlog:before {
 | 
				
			||||||
 | 
						content: "\6f\75\74\6c\6f\67";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-inlog:before {
 | 
				
			||||||
 | 
						content: "\69\6e\6c\6f\67";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-checkmark:before {
 | 
				
			||||||
 | 
						content: "\63\68\65\63\6b\6d\61\72\6b";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-aminus:before {
 | 
				
			||||||
 | 
						content: "\61\6d\69\6e\75\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-aplus:before {
 | 
				
			||||||
 | 
						content: "\61\70\6c\75\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-aclose:before {
 | 
				
			||||||
 | 
						content: "\61\63\6c\6f\73\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-bminus:before {
 | 
				
			||||||
 | 
						content: "\62\6d\69\6e\75\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-bplus:before {
 | 
				
			||||||
 | 
						content: "\62\70\6c\75\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-bclose:before {
 | 
				
			||||||
 | 
						content: "\62\63\6c\6f\73\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-cminus:before {
 | 
				
			||||||
 | 
						content: "\63\6d\69\6e\75\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-cplus:before {
 | 
				
			||||||
 | 
						content: "\63\70\6c\75\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-cross:before {
 | 
				
			||||||
 | 
						content: "\63\72\6f\73\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-blocked:before {
 | 
				
			||||||
 | 
						content: "\62\6c\6f\63\6b\65\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-information:before {
 | 
				
			||||||
 | 
						content: "\69\6e\66\6f\72\6d\61\74\69\6f\6e";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-binfo:before {
 | 
				
			||||||
 | 
						content: "\62\69\6e\66\6f";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-question:before {
 | 
				
			||||||
 | 
						content: "\71\75\65\73\74\69\6f\6e";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-help:before {
 | 
				
			||||||
 | 
						content: "\68\65\6c\70";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-warning:before {
 | 
				
			||||||
 | 
						content: "\77\61\72\6e\69\6e\67";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-shuffle:before {
 | 
				
			||||||
 | 
						content: "\73\68\75\66\66\6c\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-return:before {
 | 
				
			||||||
 | 
						content: "\72\65\74\75\72\6e";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-enter:before {
 | 
				
			||||||
 | 
						content: "\65\6e\74\65\72";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-exchange:before {
 | 
				
			||||||
 | 
						content: "\65\78\63\68\61\6e\67\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-loop:before {
 | 
				
			||||||
 | 
						content: "\6c\6f\6f\70";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-th-list:before {
 | 
				
			||||||
 | 
						content: "\74\68\2d\6c\69\73\74";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-th-large:before {
 | 
				
			||||||
 | 
						content: "\74\68\2d\6c\61\72\67\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-align-justify:before {
 | 
				
			||||||
 | 
						content: "\61\6c\69\67\6e\2d\6a\75\73\74\69\66\79";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-wtext:before {
 | 
				
			||||||
 | 
						content: "\77\74\65\78\74";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-btext:before {
 | 
				
			||||||
 | 
						content: "\62\74\65\78\74";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-pictures:before {
 | 
				
			||||||
 | 
						content: "\70\69\63\74\75\72\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-video:before {
 | 
				
			||||||
 | 
						content: "\76\69\64\65\6f";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-music:before {
 | 
				
			||||||
 | 
						content: "\6d\6f\75\73\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-folder:before {
 | 
				
			||||||
 | 
						content: "\66\6f\6c\64\65\72";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-archive:before {
 | 
				
			||||||
 | 
						content: "\61\72\63\68\69\76\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-trash:before {
 | 
				
			||||||
 | 
						content: "\74\72\61\73\68";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-upload:before {
 | 
				
			||||||
 | 
						content: "\75\70\6c\6f\61\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-download:before {
 | 
				
			||||||
 | 
						content: "\64\6f\77\6e\6c\6f\61\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-disk:before {
 | 
				
			||||||
 | 
						content: "\64\69\73\6b";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-bookmark:before {
 | 
				
			||||||
 | 
						content: "\62\6f\6f\6b\6d\61\72\6b";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-booma:before {
 | 
				
			||||||
 | 
						content: "\62\6f\6f\6d\61";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-resize-enlarge:before {
 | 
				
			||||||
 | 
						content: "\72\65\73\69\7a\65\2d\65\6e\6c\61\72\67\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-resize-shrink:before {
 | 
				
			||||||
 | 
						content: "\72\65\73\69\7a\65\2d\73\68\72\69\6e\6b";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-flow-tree:before {
 | 
				
			||||||
 | 
						content: "\66\6c\6f\77\2d\74\72\65\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-left-a:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\6c\65\66\74\2d\61";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-bottom-a:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\62\6f\74\74\6f\6d\2d\61";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-top-a:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\74\6f\70\2d\61";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-right-a:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\72\69\67\68\74\2d\61";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-left-b:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\6c\65\66\74\2d\62";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-bottom-b:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\62\6f\74\74\6f\6d\2d\62";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-top-b:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\74\6f\70\2d\62";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-right-b:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\72\69\67\68\74\2d\62";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-left-c:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\6c\65\66\74\2d\63";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-bottom-c:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\62\6f\74\74\6f\6d\2d\63";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-top-c:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\74\6f\70\2d\63";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-right-c:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\72\69\67\68\74\2d\63";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-left-d:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\6c\65\66\74\2d\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-bottom-d:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\62\6f\74\74\6f\6d\2d\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-top-d:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\74\6f\70\2d\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-right-d:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\72\69\67\68\74\2d\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-left-e:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\6c\65\66\74\2d\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-bottom-e:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\62\6f\74\74\6f\6d\2d\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-top-e:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\74\6f\70\2d\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-right-e:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\72\69\67\68\74\2d\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-left-f:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\6c\65\66\74\2d\66";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-bottom-f:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\62\6f\74\74\6f\6d\2d\66";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-arrow-top-f:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\74\6f\70\2d\66";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-left-f:before {
 | 
				
			||||||
 | 
						content: "\61\72\72\6f\77\2d\72\69\67\68\74\2d\66";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-menu:before {
 | 
				
			||||||
 | 
						content: "\6d\65\6e\75";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-ellipsis:before {
 | 
				
			||||||
 | 
						content: "\65\6c\6c\69\70\73\69\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-dots:before {
 | 
				
			||||||
 | 
						content: "\64\6f\74\73";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-dot:before {
 | 
				
			||||||
 | 
						content: "\64\6f\74";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-like:before {
 | 
				
			||||||
 | 
						content: "\6c\69\6b\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-suck:before {
 | 
				
			||||||
 | 
						content: "\73\75\63\6b";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-export:before {
 | 
				
			||||||
 | 
						content: "\65\78\70\6f\72\74";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-vcard:before {
 | 
				
			||||||
 | 
						content: "\76\63\61\72\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-flow-cascade:before {
 | 
				
			||||||
 | 
						content: "\21";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-landscape:before {
 | 
				
			||||||
 | 
						content: "\22";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-brush:before {
 | 
				
			||||||
 | 
						content: "\62\72\75\73\68";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-palette:before {
 | 
				
			||||||
 | 
						content: "\70\61\6c\65\74\74\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-desktop:before {
 | 
				
			||||||
 | 
						content: "\64\65\73\6b\74\6f\70";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-plane:before {
 | 
				
			||||||
 | 
						content: "\70\6c\61\6e\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-booklet:before {
 | 
				
			||||||
 | 
						content: "\62\6f\6f\6b\6c\65\74";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-update:before {
 | 
				
			||||||
 | 
						content: "\75\70\64\61\74\65";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-reload:before {
 | 
				
			||||||
 | 
						content: "\72\65\6c\6f\61\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-unload:before {
 | 
				
			||||||
 | 
						content: "\75\6e\6c\6f\61\64";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					.icons-trophy:before {
 | 
				
			||||||
 | 
						content: "\74\72\6f\70\68\79";
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -128,8 +128,13 @@ div[data-role="page"] {
 | 
				
			||||||
	left: 0;
 | 
						left: 0;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
.header .language .ui-btn-text i {
 | 
					.header .language .ui-btn-text i {
 | 
				
			||||||
 | 
					<<<<<<< HEAD
 | 
				
			||||||
	font-size: 1.1em;
 | 
						font-size: 1.1em;
 | 
				
			||||||
	margin-top: .3em;
 | 
						margin-top: .3em;
 | 
				
			||||||
 | 
					=======
 | 
				
			||||||
 | 
						font-size: .83em;
 | 
				
			||||||
 | 
						margin-top: .2em;
 | 
				
			||||||
 | 
					>>>>>>> Add mobile but remove news in it
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
.header .language .ui-icon {
 | 
					.header .language .ui-icon {
 | 
				
			||||||
	background-image: none;
 | 
						background-image: none;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -11,7 +11,11 @@
 | 
				
			||||||
  <meta name="description" content="">
 | 
					  <meta name="description" content="">
 | 
				
			||||||
  <meta name="apple-mobile-web-app-capable" content="yes">
 | 
					  <meta name="apple-mobile-web-app-capable" content="yes">
 | 
				
			||||||
  <meta name="apple-mobile-web-app-status-bar-style" content="black">
 | 
					  <meta name="apple-mobile-web-app-status-bar-style" content="black">
 | 
				
			||||||
 | 
					<<<<<<< HEAD
 | 
				
			||||||
  <meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0">
 | 
					  <meta name="viewport" content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0">
 | 
				
			||||||
 | 
					=======
 | 
				
			||||||
 | 
					  <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0">
 | 
				
			||||||
 | 
					>>>>>>> Add mobile but remove news in it
 | 
				
			||||||
  <!-- iPhone -->
 | 
					  <!-- iPhone -->
 | 
				
			||||||
  <link href="<%= asset_path 'mobile/apple-startup-iPhone.png' %>" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)" rel="apple-touch-startup-image">
 | 
					  <link href="<%= asset_path 'mobile/apple-startup-iPhone.png' %>" media="(device-width: 320px) and (device-height: 480px) and (-webkit-device-pixel-ratio: 1)" rel="apple-touch-startup-image">
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -14,7 +14,6 @@
 | 
				
			||||||
      <li>
 | 
					      <li>
 | 
				
			||||||
        <%= link_to mobile_dialog_contact_path, {"data-rel" => "dialog"} do %>
 | 
					        <%= link_to mobile_dialog_contact_path, {"data-rel" => "dialog"} do %>
 | 
				
			||||||
          <i class="icons-phone"></i>
 | 
					          <i class="icons-phone"></i>
 | 
				
			||||||
        <% end %>
 | 
					 | 
				
			||||||
      </li>
 | 
					      </li>
 | 
				
			||||||
    </ul>
 | 
					    </ul>
 | 
				
			||||||
  </div>
 | 
					  </div>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -252,6 +252,18 @@ Orbit::Application.routes.draw do
 | 
				
			||||||
    controller_paths :mobile, %w[index announcement announcement_content dialog_contact dialog_copyright dialog_language map page page_content]
 | 
					    controller_paths :mobile, %w[index announcement announcement_content dialog_contact dialog_copyright dialog_language map page page_content]
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  scope '/mobile' do
 | 
				
			||||||
 | 
					    match 'announcement' => 'mobile#announcement', :as => 'mobile_announcement'
 | 
				
			||||||
 | 
					    match 'announcement_content/:id' => 'mobile#announcement_content', :as => 'mobile_announcement_content'
 | 
				
			||||||
 | 
					    match 'dialog_contact' => 'mobile#dialog_contact', :as => 'mobile_dialog_contact'
 | 
				
			||||||
 | 
					    match 'dialog_copyright' => 'mobile#dialog_copyright', :as => 'mobile_dialog_copyright'
 | 
				
			||||||
 | 
					    match 'dialog_language' => 'mobile#dialog_language', :as => 'mobile_dialog_language'
 | 
				
			||||||
 | 
					    match 'map' => 'mobile#map', :as => 'mobile_map'
 | 
				
			||||||
 | 
					    match 'page' => 'mobile#page', :as => 'mobile_page'
 | 
				
			||||||
 | 
					    match 'page_content/:id' => 'mobile#page_content', :as => 'mobile_page_content'
 | 
				
			||||||
 | 
					    root :to => 'mobile#index', :as => 'mobile'
 | 
				
			||||||
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  match '/panel/orbit_app/widget/:type' => 'default_widget#default_widget'
 | 
					  match '/panel/orbit_app/widget/:type' => 'default_widget#default_widget'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in New Issue