source: main/ngren.theme/trunk/ngren/theme/ngren_theme/css/style.css @ 10316

Last change on this file since 10316 was 10316, checked in by Henrik Bettermann, 11 years ago

Replace tabs.

File size: 16.1 KB
RevLine 
[10190]1/** BASE **/
2body {
[10316]3  padding-top: 20px;
4  padding-bottom: 60px;
5  background-color:#f4f4f4;
6  /* background-image: url(../img/p6.png); */
7  background-position: 0 0;
8  background-repeat: repeat;
[10190]9}
10
11body, h1, h2, h3, h4, h4, h6 {
[10316]12  font-family: 'Open Sans', sans-serif;
[10190]13}
14
15h3 {
[10316]16  color:#006633;
17  font-size:22.5px;
[10190]18}
19
20hr {
[10316]21  margin:30px 0;
[10190]22}
23
24select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
[10316]25  height:16px;
[10190]26}
27
[10292]28button, html input[type="button"], input[type="reset"], input[type="submit"] {
29        padding: 1px 6px;
30}
31
[10190]32/** COMMON **/
33.border-radius {
[10316]34  -webkit-border-radius: 5px;
35  -moz-border-radius: 5px;
36  border-radius: 5px;
[10190]37}
38
39.center {
[10316]40  text-align:center;
[10190]41}
42
43.relative {
[10316]44  position:relative;
[10190]45}
46
47/** GRADIENT MODULES **/
48.green-gradient {
[10316]49  background-color: #005522;
50  background-image: -moz-linear-gradient(top, #006633, #117744);
51  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#006633), to(#117744));
52  background-image: -webkit-linear-gradient(top, #006633, #117744);
53  background-image: -o-linear-gradient(top, #006633, #117744);
54  background-image: linear-gradient(to bottom, #006633, #117744);
55  background-repeat: repeat-x;
56  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff006633', endColorstr='#ff117744', GradientType=0);
[10190]57}
58
59.gradient-radius-module {
[10316]60  background-color: #005522;
61  background-image: -moz-linear-gradient(top, #FFFFFF, #F2F2F2);
62  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#FFFFFF), to(#F2F2F2));
63  background-image: -webkit-linear-gradient(top, #FFFFFF, #F2F2F2);
64  background-image: -o-linear-gradient(top, #FFFFFF, #F2F2F2);
65  background-image: linear-gradient(to bottom, #FFFFFF, #F2F2F2);
66  background-repeat: repeat-x;
67  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffFFFFFF', endColorstr='#ffF2F2F2', GradientType=0);
[10190]68
[10316]69  -moz-border-radius:5px;
70  -webkit-border-radius:5px;
71  border-radius:5px;
[10190]72
[10316]73  border:1px solid #D4D4D4;
[10190]74}
75
76.white-background {
[10316]77  background:#fff;
78  -webkit-border-bottom-right-radius: 5px;
79  -webkit-border-bottom-left-radius: 5px;
80  -moz-border-radius-bottomright: 5px;
81  -moz-border-radius-bottomleft: 5px;
82  border-bottom-right-radius: 5px;
83  border-bottom-left-radius: 5px;
[10190]84}
85
86/** STRUCTURE **/
87
88.left-col {
[10316]89  width:680px;
90  float:left;
[10190]91}
92
93.ie7 .left-col,
94.ie8 .left-col {
[10316]95  width: 100%;
[10190]96}
97
98.right-col {
[10316]99  width:300px;
100  float:right;
[10190]101}
102
103.ie7 .right-col,
104.ie8 .right-col {
[10316]105  width: 100%;
[10190]106}
107
108.ie7 .row-fluid .span6 {
[10316]109  width:40%;
[10190]110}
111
112/** Header **/
113
114#header-head {
[10316]115  height:140px;
[10190]116}
117
118#user-options {
[10315]119  position:absolute;
120  top:10px;
121  right:10px;
[10190]122}
123
124#user-options ul {
[10316]125  margin:0;
[10190]126}
127
128#user-options ul li {
[10316]129  list-style:none;
130  display:inline;
[10315]131  text-align: left;
[10190]132}
133
134#logo-container {
[10316]135  height:90px;
136  margin:20px;
137  text-align:center;
138  float:left;
[10190]139}
140
141.ie8 #logo-container,
142.ie8 #logo-container h1,
143.ie7 #logo-container,
144.ie7 #logo-container h1 {
[10316]145  width:70%;
[10190]146}
147
148#logo-container #logo {
[10316]149  float: left;
150  margin: 5px;
151  margin-top: 0px;
152  width: 150px;
[10190]153}
154
155#logo-container h1 {
[10316]156  float: left;
157  font-size: 27px;
158  position: relative;
159  top: 0px;
160  text-align:left;
161  margin-left:10px;
[10190]162}
163
164#logo-container h1 a {
[10316]165  color:#444;
[10190]166}
167
168#logo-container h1 a:hover {
[10316]169  text-decoration:none;
[10190]170}
171
172/** Navigation **/
173.navbar .navbar-inner {
[10316]174  padding: 0;
175  background-color:inherit;
176  box-shadow:none;
[10190]177}
178
179.navbar .nav-container {
[10316]180  width:100%;
181  border-top:1px solid #ccc;
[10190]182}
183
184.navbar .nav > li > a {
[10316]185  border-bottom:3px solid rgba(0,0,0,0);
[10190]186}
187
188.navbar .nav > li > a:hover, .navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus {
[10316]189  border-bottom:3px solid #006633;
190  background-image:none;
191  background-color:inherit;
192  box-shadow:none;
[10190]193}
194
195.navbar .nav li a {
[10316]196  font-weight: bold;
197  text-align: left;
198  border-left: 1px solid rgba(255,255,255,.75);
199  border-right: 1px solid rgba(0,0,0,.1);
[10190]200}
201
202.navbar-form {
[10316]203  bottom: 8px;
204  position: absolute;
205  right: 8px;
[10190]206}
207
208.navbar-form.mobile {
[10316]209  position:relative;
210  float:right;
211  top:5px;
212  right:10px;
[10190]213}
214
215.navbar-form input[type="text"] {
[10316]216  width:200px;
[10190]217}
218
219.navbar .nav > li > .dropdown-menu:after,
220.navbar .nav > li > .dropdown-menu:before {
[10316]221  display:none;
[10190]222}
223
224.navbar .btn-navbar {
[10316]225  color:#006633;
226  font-weight:bold;
227  text-shadow:0px 1px 0px #ddd;
228  width:97%;
229  margin:10px;
[10190]230}
231
232.navbar .btn-navbar:hover {
[10316]233  color:#005522;
[10190]234}
235
236.dropdown-menu {
[10316]237  top:41px;
238  -webkit-border-radius: 0px;
239  -moz-border-radius: 0px;
240  border-radius: 0px;
[10190]241}
242
243.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
[10316]244  background-color:#006633;
245  background-image: linear-gradient(to bottom, #117744, #006633);
[10190]246}
247
248ul.nav li.dropdown:hover > ul.dropdown-menu{
[10316]249  display: block;
[10190]250}
251
[10242]252#user-options a:visited, #user-options a.dropdown-toggle:link {
[10241]253        background-color: #449966;
254}
255
[10190]256.container .navbar .container {
[10316]257  width: auto;
[10190]258}
259
260/** Containers **/
261.container {
[10316]262  margin: 0 auto;
263  max-width: 1000px;
[10190]264}
265
266.curly-shadow {
[10316]267  background:#fff;
268  margin-bottom: 24px;
269  position: relative;
[10190]270}
271
272.curly-shadow-container {
[10316]273  background:url("../img/subtle_dots.png") repeat scroll 0 0 transparent;
274  height:310px;
[10190]275}
276
277.curly-shadow:after {
[10316]278  bottom: 20px;
279  box-shadow: 6px 11px 4px rgba(0,0,0,0.2);
280  content: "";
281  height: 20px;
282  right: 5px;
283  position: absolute;
284  transform: skew(-14deg) rotate(3deg);
285  width: 70%;
286  z-index: -1;
[10190]287}
288
289.curly-shadow:before {
[10316]290  bottom: 20px;
291  box-shadow: 6px 11px 4px rgba(0,0,0,0.2);
292  content: "";
293  height: 20px;
294  left: 5px;
295  position: absolute;
296  transform: skew(-14deg) rotate(-3deg);
297  width: 70%;
298  z-index: -1;
[10190]299}
300
301/** Content Container **/
302.content-container {
[10316]303  padding:20px 40px;
304  margin-bottom:20px;
305  min-height:566px;
306  position:relative;
[10190]307}
308
309.post-social {
[10316]310  float:right;
311  margin:20px 0;
[10190]312}
313
314.post-social div {
[10316]315  display:inline;
[10190]316}
317
318.post-social .twitter {
[10316]319  margin:5px 0;
[10190]320}
321
322.post-social .facebook {
[10316]323  margin:0px;
[10190]324}
325
326.list-left,
327.list-right {
[10316]328  list-style:none;
[10190]329}
330
331.list-left li,
332.list-right li {
[10316]333  margin:10px;
[10190]334}
335
336.list-left {
[10316]337  float:left;
[10190]338}
339
340.list-right {
[10316]341  float:right;
[10190]342}
343
344/** Footer **/
345.footer {
[10316]346  border-top: 1px solid #D4D4D4;
347  float: left;
348  margin-top: 10px;
349  padding: 10px 0;
350  width: 100%;
[10190]351}
352
353.footer .section {
[10316]354  padding:0 20px;
355  float:right;
[10190]356}
357
358.footer .section ul {
[10316]359  margin:0;
[10190]360}
361
362.footer .section li.title {
[10316]363  font-weight:bold;
[10190]364}
365
366.footer .section li {
[10316]367  margin:5px 0;
368  list-style:none;
[10190]369}
370
371.footer .fb-footer {
[10316]372  padding:0;
[10190]373}
374
375.footer .tw-footer {
[10316]376  padding:0;
[10190]377}
378
379.footer .copyright {
[10316]380  margin:5px 0px;
381  color:#999;
382  float:left;
[10190]383}
384
385.footer .address {
[10316]386  color: #999999;
387  float: right;
388  margin: 5px;
389  padding:0 20px;
[10190]390}
391
392.footer .address ul {
[10316]393  margin:0;
[10190]394}
395
396.footer .address li {
[10316]397  list-style:none;
[10190]398}
399
[10291]400/** forms  **/
401#content fieldset {
[10316]402  border: 0.1em solid;
403  border-color: -moz-use-text-color -moz-use-text-color #E5E5E5;
[10291]404        border-color: #E5E5E5;
405}
406
407#content legend {
408        border: 0.1em solid none;
409        font-weight: bold;
410        line-height: 30px;
411        margin: 1px;
412        passing: 0.0em 0.5em;
[10316]413  padding: 0.5em;
[10291]414}
415
[10294]416#content fieldset li input[type="file"],
417#content fieldset li input[type="image"],
418#content fieldset li input[type="button"],
419#content fieldset li input[type="checkbox"],
420#content fieldset li input[type="radio"] {
421        float: left;
422}
423
424
[10190]425/** TEXT / TITLES / MESSAGES **/
426h4.title {
[10316]427  color:#006633;
428  border-bottom:3px solid #006633;
429  padding-bottom:5px;
[10190]430}
431
432
433/** MODULES **/
434/** Home option **/
435.home-option {
[10316]436  padding:20px 40px;
437  margin-bottom:20px;
[10190]438}
439
440.home-option h3 {
[10316]441  color:#006633;
442  font-weight:bold;
443  font-size:16px;
444  line-height:20px;
[10190]445}
446
447.home-option h3 a {
[10316]448  color:#006633;
[10190]449}
450
451.home-option .text {
[10316]452  height:40px;
[10190]453}
454
455.home-icon {
[10316]456  margin:5px;
457  width:78px;
[10190]458}
459
460/** Streaming **/
461.streaming {
[10316]462  padding:20px 40px;
463  margin-bottom:20px;
464  height:230px;
465  overflow:hidden;
[10190]466}
467
468.streaming li {
[10316]469  list-style:none;
470  height:110px;
[10190]471}
472
473.streaming h4 a {
[10316]474  color:#444;
[10190]475}
476
477#streaming-news {
[10316]478  height:220px;
479  overflow:hidden;
[10190]480}
481
482/** Slider **/
483.rslides {
484position: relative;
485list-style: none;
486overflow: hidden;
487width: 100%;
488padding: 0;
489margin: 0;
490}
491
492.rslides li {
493-webkit-backface-visibility: hidden;
494position: absolute;
495display: none;
496width: 100%;
497left: 0;
498top: 0;
499}
500
501.rslides li:first-child {
502position: relative;
503display: block;
504float: left;
505}
506
507.rslides img {
508display: block;
509height: auto;
510float: left;
511width: 100%;
512border: 0;
513}
514
515.rslides {
516margin: 0 auto;
517}
518
519.rslides_container {
520margin-bottom: 50px;
521position: relative;
522float: left;
523width: 100%;
524}
525
526.centered-btns_nav {
527z-index: 3;
528position: absolute;
529-webkit-tap-highlight-color: rgba(0,0,0,0);
530top: 50%;
531left: 0;
532opacity: 0.7;
533text-indent: -9999px;
534overflow: hidden;
535text-decoration: none;
536height: 61px;
537width: 38px;
538background: transparent url("../img/themes.gif") no-repeat left top;
539margin-top: -45px;
540}
541
542.centered-btns_nav:active {
543opacity: 1.0;
544}
545
546.centered-btns_nav.next {
547left: auto;
548background-position: right top;
549right: 0;
550}
551
552.centered-btns_nav:focus {
553outline: none;
554}
555
556.centered-btns_tabs {
557margin-top: 20px;
558text-align: center;
559}
560
561.centered-btns_tabs li {
562display: inline;
563float: none;
564_float: left;
565  *float: left;
566margin-right: 5px;
567}
568
569.centered-btns_tabs a {
570text-indent: -9999px;
571overflow: hidden;
572-webkit-border-radius: 15px;
573-moz-border-radius: 15px;
574border-radius: 15px;
575background: #ccc;
576background: rgba(0,0,0, .2);
577display: inline-block;
578_display: block;
579  *display: block;
580-webkit-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
581-moz-box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
582box-shadow: inset 0 0 2px 0 rgba(0,0,0,.3);
583width: 9px;
584height: 9px;
585}
586
587.centered-btns_here a {
588background: #222;
589background: rgba(0,0,0, .8);
590}
591
592.slider {
[10316]593  height: 310px;
594  position: relative;
595  z-index: 1;
[10190]596}
597
598.slider-container {
[10316]599  position:relative;
600  height:310px;
601  margin:0px auto;
602  display:block;
[10190]603}
604
605.slider-container .slider-image-container {
[10316]606  float:right;
607  width:49%;
608  margin:30px 0;
[10190]609}
610
611.slider-container .slider-image {
[10316]612  border-bottom: 3px solid #006633;
613  border-top: 3px solid #006633;
614  height: 240px;
[10190]615}
616
617.slider-container .slider-text {
[10316]618  display: block;
619  margin:40px 0;
620  text-align: center;
621  float:left;
622  width:43%;
[10190]623}
624
625.slider-container .slider-text .highlight {
[10316]626  font-weight:bold;
627  color:#006633;
628  text-shadow:none;
[10190]629}
630
631.slider-container .slider-text h3 {
[10316]632  font-weight: bold;
[10190]633}
634
635.slider-container .slider-text h3 a {
[10316]636  color:#006633;
[10190]637}
638
639.slider-container .slider-text p {
[10316]640  font-size: 16px;
[10190]641}
642
643.centered-btns_nav {
[10316]644  -webkit-border-top-right-radius: 5px;
645  -webkit-border-bottom-right-radius: 5px;
646  -moz-border-radius-topright: 5px;
647  -moz-border-radius-bottomright: 5px;
648  border-top-right-radius: 5px;
649  border-bottom-right-radius: 5px;
[10190]650}
651
652.centered-btns_nav.next {
[10316]653  -webkit-border-top-left-radius: 5px;
654  -webkit-border-bottom-left-radius: 5px;
655  -moz-border-radius-topleft: 5px;
656  -moz-border-radius-bottomleft: 5px;
657  border-top-left-radius: 5px;
658  border-bottom-left-radius: 5px;
[10190]659
[10316]660  -webkit-border-top-right-radius: 0px;
661  -webkit-border-bottom-right-radius: 0px;
662  -moz-border-radius-topright: 0px;
663  -moz-border-radius-bottomright: 0px;
664  border-top-right-radius: 0px;
665  border-bottom-right-radius: 0px;
[10190]666}
667
668/** Partners **/
669.full-col {
[10316]670  float:left;
671  width:100%;
[10190]672}
673
674#partners-tile {
[10316]675  height:120px;
676  margin-bottom:30px;
677  padding:0px 50px;
[10190]678}
679
680#partners-tile li {
[10316]681  display: block;
682  float: left;
683  list-style: none;
684  text-align:center;
[10190]685}
686
687#partners-tile li span.title {
[10316]688  display:none;
[10190]689}
690
691#partners-tile li {
[10316]692  margin-right:6%;
[10190]693}
694
695#partners-tile li#fme {
[10316]696  margin-left:4%;
[10190]697}
698
699#partners-tile li#nuc {
[10316]700  margin-right:0;
[10190]701}
702
703
704#partners-tile li#fme img { margin:28px 0; }
705#partners-tile li#uspf img { margin:25px 0; }
706#partners-tile li#tetfund img { margin:50px 0; }
707#partners-tile li#ncc img { margin:37px 0; }
708#partners-tile li#nuc img { margin:23px 0; }
709
710
711/** Images **/
712.content-container img {
[10316]713  margin:5px;
714  border:2px solid #e0e0e0;
[10190]715}
716
717.content-container img.left-image {
[10316]718  float:left;
719  margin-left:0px;
720  margin-right:10px;
[10190]721}
722
723img.about-unique-image {
[10316]724  float:none;
725  display:block;
726  margin:20px auto;
[10190]727}
728
729/** Gallery **/
730.gallery {
[10316]731  margin:0;
[10190]732}
733
734.gallery li {
[10316]735  list-style:none;
736  display:inline;
737  cursor:pointer;
[10190]738}
739
740.gallery img:hover {
[10316]741  border:2px solid #006633;
[10190]742}
743
744.gallery li .gallery-object {
[10316]745  position:relative;
746  display:block;
747  float:left;
[10190]748}
749
750.gallery img {
[10316]751  width:180px;
[10190]752}
753
754.gallery .title {
[10316]755  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.6);
756  bottom: 7px;
757  color: #FFFFFF;
758  font-size: 16px;
759  height: 20px;
760  left: 7px;
761  padding: 5px 0;
762  position: absolute;
763  text-align: center;
764  width: 180px;
[10190]765}
766
767/** Buttons **/
768.btn-primary {
[10316]769  color: #fff;
770  border: solid 1px #117744;
771  background: #666600;
772  background: -webkit-gradient(linear, left top, left bottom, from(#006633), to(#117744));
773  background: -moz-linear-gradient(top,  #006633,  #117744);
774  filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#006633', endColorstr='#117744');
[10190]775}
776
[10242]777.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
778    background-color: #449966;
779    color: #FFFFFF;
780}
781
782
[10190]783@media (max-width: 1200px) {
[10316]784  .left-col, .right-col {
785    width:100%;
786  }
[10190]787
[10316]788  .content-container {
789    min-height:inherit;
790  }
[10190]791
[10316]792  .footer .copyright {
793    float:none;
794  }
[10190]795}
796
797@media (max-width: 981px) {
[10316]798  .slider-container .slider-image {
799    top:0px;
800  }
[10190]801
[10315]802  .navbar-form {
803    visibility:hidden;
804    height: 0px;
805  }
806
[10316]807  #partners-tile {
808    height:140px;
809  }
[10190]810
[10316]811  #partners-tile li {
812    margin-right:1%;
813  }
[10190]814
[10316]815  #partners-tile li#fme {
816    margin-left:1%;
817  }
[10190]818
[10316]819  #partners-tile li img {
820    width:83%;
821  }
[10190]822}
823
824@media (max-width: 767px) {
825
[10316]826  /** Base **/
827  body {
828    padding-top:20px;
829  }
[10190]830
[10316]831  /** Header **/
832  .navbar .navbar-inner {
833    padding-bottom:5px;
834  }
[10190]835
[10316]836  .navbar .btn-navbar {
837    clear:right;
838    float:left;
839    margin-bottom:0px;
840  }
[10190]841
[10316]842  .nav-collapse, .nav-collapse.collapse {
843    top:7px;
844  }
[10190]845
[10316]846  /** Modules **/
847  .slider-container .slider-text p {
848    font-size:14px;
849    max-height:145px;
850  }
[10190]851
[10316]852  .slider-container .slider-text .relative {
853    padding:20px 10px;
854  }
[10190]855
[10316]856  .home-option {
857    margin-bottom:30px;
858  }
[10190]859
[10316]860  .home-option .text {
861    height:inherit;
862  }
[10190]863
[10316]864  #partners-tile {
865    height:inherit;
866  }
[10190]867
[10316]868  #partners-tile ul {
869  margin:0;
870  }
[10190]871
[10316]872  #partners-tile li {
873    width:100% !important;
874  }
[10190]875
[10316]876  #partners-tile li img {
877    width:inherit;
878  }
[10190]879
[10316]880  /** Footer **/
881  .footer .copyright {
882    display:block;
883    float:none;
884  }
[10190]885
[10316]886  .footer .section {
887    margin:20px 0;
888    float:none;
889    padding:0;
890  }
[10190]891
[10316]892  .footer .section li {
893    margin:10px 0;
894  }
[10190]895
[10316]896  .footer .address {
897    float: none;
898    margin: 5px 0;
899    padding:0;
900  }
[10190]901}
902
903@media (max-width: 594px) {
904
[10316]905  /** Header **/
[10315]906
907
908  #logo-container {
[10316]909    margin:10px;
[10315]910    text-align:none;
911    float:none;
912    position:relative;
[10316]913  }
[10190]914
[10315]915  #header-head {
[10316]916    height: 50px;
[10315]917  }
918
[10316]919  #user-options {
[10315]920    position:absolute;
[10316]921    top:10px;
922    right:10px;
923  }
[10315]924
[10316]925  #logo-container #logo{
926    float:none;
[10315]927    display: block;
928    margin-left: auto;
929    margin-right: auto;
930    margin-bottom: 0px;
931    margin-bottom: -15px;
932
[10316]933  }
[10190]934
[10316]935  #logo-container h1 {
[10315]936    visibility:hidden;
937    height: 0px;
[10316]938  }
[10190]939}
940
941@media (max-width: 512px) {
942
[10316]943  /** Base **/
944  h1 {
945    font-size:26px;
946    text-align:center;
947  }
[10190]948
[10316]949  /** Navigation **/
950  .navbar-form {
951    margin:0px;
952    position:relative;
953    left:-10px;
954  }
[10190]955
[10316]956  .navbar-form input[type="text"] {
957    width:68%;
958    float:left;
959    margin-right:3px;
960  }
[10190]961
[10316]962  /** Containers **/
963  .content-container {
964    padding:20px;
965  }
[10190]966
[10316]967  /** Modules **/
968  .centered-btns_nav {
969    opacity:0.1 !important;
970  }
[10190]971
[10316]972  .gallery li .gallery-object {
973    float:none;
974    margin: 0 auto;
975    width:200px;
976  }
[10190]977
[10316]978  .slider-container .slider-text {
979    width:90%;
980    margin:20px auto;
981    float:none;
982  }
[10190]983
[10316]984  .slider-container .slider-image {
985    display:none;
986  }
[10190]987
[10316]988  /** Buttons **/
989  .search-btn {
990    float:right;
991  }
[10190]992
[10316]993  .navbar .btn-navbar {
994    margin:10px 0 0px 5px;
995    width:96%;
996  }
[10190]997
998}
999
1000@media (max-width: 320px) {
1001
[10316]1002  /** Modules **/
1003  #fb-container {
1004    width:260px;
1005    overflow:hidden;
1006  }
[10190]1007
[10316]1008  .fb-like-box {
1009    width:260px;
1010    overflow:hidden;
1011  }
[10190]1012
1013}
Note: See TracBrowser for help on using the repository browser.