├── packager.yml ├── _includes └── themes │ └── hooligan │ ├── settings.yml │ ├── page.html │ ├── post.html │ └── default.html ├── screenshot.png ├── assets └── themes │ └── hooligan │ ├── _sass │ ├── _custom.scss │ ├── style.scss │ ├── _responsive.scss │ ├── _post.scss │ └── _base.scss │ ├── images │ └── bgs │ │ └── body.png │ ├── bootstrap │ ├── img │ │ ├── glyphicons-halflings.png │ │ └── glyphicons-halflings-white.png │ ├── css │ │ ├── bootstrap-responsive.min.css │ │ └── bootstrap-responsive.css │ └── js │ │ ├── bootstrap.min.js │ │ └── bootstrap.js │ ├── css-social-buttons │ ├── css │ │ ├── zocial-regular-webfont.eot │ │ ├── zocial-regular-webfont.ttf │ │ ├── zocial-regular-webfont.woff │ │ ├── zocial.stripped.css │ │ └── zocial.css │ ├── README.md │ └── sample.html │ └── css │ ├── pygments.css │ ├── style.css │ └── darkstrap.css ├── manifest.yml └── README.md /packager.yml: -------------------------------------------------------------------------------- 1 | --- 2 | packager: 3 | version: 0.1.0 4 | -------------------------------------------------------------------------------- /_includes/themes/hooligan/settings.yml: -------------------------------------------------------------------------------- 1 | theme : 2 | name : hooligan -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhulihan/hooligan/HEAD/screenshot.png -------------------------------------------------------------------------------- /assets/themes/hooligan/_sass/_custom.scss: -------------------------------------------------------------------------------- 1 | /* This is for your Custom Content. */ 2 | -------------------------------------------------------------------------------- /assets/themes/hooligan/images/bgs/body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhulihan/hooligan/HEAD/assets/themes/hooligan/images/bgs/body.png -------------------------------------------------------------------------------- /assets/themes/hooligan/_sass/style.scss: -------------------------------------------------------------------------------- 1 | @import "compass"; 2 | 3 | /* Partials */ 4 | @import "base"; 5 | @import "responsive"; 6 | @import "post"; 7 | @import "custom"; -------------------------------------------------------------------------------- /assets/themes/hooligan/bootstrap/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhulihan/hooligan/HEAD/assets/themes/hooligan/bootstrap/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /assets/themes/hooligan/bootstrap/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhulihan/hooligan/HEAD/assets/themes/hooligan/bootstrap/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /assets/themes/hooligan/css-social-buttons/css/zocial-regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhulihan/hooligan/HEAD/assets/themes/hooligan/css-social-buttons/css/zocial-regular-webfont.eot -------------------------------------------------------------------------------- /assets/themes/hooligan/css-social-buttons/css/zocial-regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhulihan/hooligan/HEAD/assets/themes/hooligan/css-social-buttons/css/zocial-regular-webfont.ttf -------------------------------------------------------------------------------- /assets/themes/hooligan/css-social-buttons/css/zocial-regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhulihan/hooligan/HEAD/assets/themes/hooligan/css-social-buttons/css/zocial-regular-webfont.woff -------------------------------------------------------------------------------- /assets/themes/hooligan/_sass/_responsive.scss: -------------------------------------------------------------------------------- 1 | /* Responsive Overrides */ 2 | @media (max-width: 767px) { 3 | body { 4 | padding-right: 0px; 5 | padding-left: 0px; 6 | } 7 | 8 | div.container { 9 | padding: 0px 20px; 10 | div.page-header { 11 | @include border-radius(0); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- 1 | --- 2 | name : "hooligan" 3 | website : "https://github.com/dhulihan/hooligan" 4 | git_url : "https://github.com/dhulihan/hooligan.git" 5 | source_url : "https://github.com/dhulihan/hooligan" 6 | description : "A low-lit fully responsive theme for Jekyll + Jekyll-Bootstrap." 7 | author: 8 | name : "Dave Hulihan" 9 | -------------------------------------------------------------------------------- /_includes/themes/hooligan/page.html: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 |
9 | {{ content }} 10 |
11 |
12 | -------------------------------------------------------------------------------- /assets/themes/hooligan/_sass/_post.scss: -------------------------------------------------------------------------------- 1 | /* Posts */ 2 | article.post { 3 | header { 4 | margin-bottom:10px; 5 | h1, h2 { 6 | margin: 0; 7 | } 8 | .category { 9 | display:inline-block; 10 | color:rgba(255,255,255,1); 11 | border-left:1px solid rgba(255,255,255,0.2); 12 | padding-left:6px; 13 | margin-left:3px; 14 | &:before { 15 | // content: "in"; 16 | } 17 | } 18 | } 19 | } 20 | 21 | div.posts { 22 | article { 23 | // padding-bottom:10px; 24 | // margin-bottom:10px; 25 | div.date { 26 | font-size:10px; 27 | padding:10px 0; 28 | time { 29 | @include box-shadow( 30 | rgba(255, 255, 255, 0.1) 0 1px 0, 31 | rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset 32 | ); 33 | background: #202020; 34 | background-color: rgba(0, 0, 0, 0.3); 35 | @include border-radius; 36 | padding:5px 10px; 37 | } 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is a fully responsive theme for Jekyll + Jekyll-Bootstrap. It is built on top of [Twitter Bootstrap](http://twitter.github.com/bootstrap/). 2 | 3 | ![Screenshot](https://raw.github.com/dhulihan/hooligan/master/screenshot.png) 4 | 5 | ## Installation 6 | 7 | rake theme:install git="https://github.com/dhulihan/hooligan.git" 8 | 9 | ## Preview 10 | 11 | You can preview this theme at the [Jekyll-Bootstrap Theme Gallery](http://themes.jekyllbootstrap.com/preview/hooligan/). 12 | 13 | ## Extra Stuff 14 | 15 | This theme has some optional configuration support for social buttons. Just add your provider and username to `_config.yml`, like so: 16 | 17 | author: 18 | name: John Doe 19 | email: blah@email.test 20 | github: johndoe 21 | twitter: johndoe 22 | feedburner: johndoe 23 | googleplus: johndoe 24 | # Whatever you specify for the linkedin option will be placed after `www.linkedin.com/in/` 25 | linkedin: johndoe 26 | 27 | Icons with links to your profiles will then appear on the navbar. Your stalkers will *love* you for making things so easy! 28 | -------------------------------------------------------------------------------- /assets/themes/hooligan/css-social-buttons/README.md: -------------------------------------------------------------------------------- 1 | # Zocial CSS social buttons 2 | 3 | I basically rewrote this entire set so they are full vector buttons, meaning: 4 | 5 | - @font-face icons 6 | - custom font file for all social icons 7 | - icon font use private unicode spaces for accessibility 8 | - em sizing based on button font-size 9 | - support for about 83 different services 10 | - buttons and icons supported 11 | - no raster images (sweet) 12 | - works splendidly on any browser supporting @font-face 13 | - CSS3 degrades gracefully in IE8 and below etc. 14 | - also includes generic icon-less primary and secondary buttons 15 | 16 | ## How to use these buttons 17 | 18 | 19 | 20 | or 21 | 22 | 2 |

3 | {{ page.title }} 4 | {% if page.tagline %} 5 | {{ page.tagline }} 6 | {% endif %} 7 |

8 | 9 | 10 |
11 |
12 | {{ content }} 13 |
14 |
27 |
28 | {% include JB/comments %} 29 |
30 | 31 |
32 |
33 |

Published

34 |
{{ page.date | date_to_long_string }}
35 | {% if page.updated %} 36 |

Updated

37 |
{{ page.updated | date_to_long_string }}
38 | {% endif %} 39 |
40 | {% if page.categories %} 41 |
42 |

{% if page.categories.size == 1 %}Category{% else %}Categories{% endif %}

43 | {% for category in page.categories %} 44 | 45 | {{ category }} 46 | 47 | {% endfor %} 48 |
49 | {% endif %} 50 | {% unless page.tags == empty %} 51 |
52 |

Tags

53 |
    54 | {% assign tags_list = page.tags %} 55 | {% include JB/tags_list %} 56 |
57 |
58 | {% endunless %} 59 |
60 |
61 | -------------------------------------------------------------------------------- /assets/themes/hooligan/css/pygments.css: -------------------------------------------------------------------------------- 1 | .hll { background-color: #49483e } 2 | .c { color: #75715e } /* Comment */ 3 | .err { color: #960050; background-color: #1e0010 } /* Error */ 4 | .k { color: #66d9ef } /* Keyword */ 5 | .l { color: #ae81ff } /* Literal */ 6 | .n { color: #f8f8f2 } /* Name */ 7 | .o { color: #f92672 } /* Operator */ 8 | .p { color: #f8f8f2 } /* Punctuation */ 9 | .cm { color: #75715e } /* Comment.Multiline */ 10 | .cp { color: #75715e } /* Comment.Preproc */ 11 | .c1 { color: #75715e } /* Comment.Single */ 12 | .cs { color: #75715e } /* Comment.Special */ 13 | .ge { font-style: italic } /* Generic.Emph */ 14 | .gs { font-weight: bold } /* Generic.Strong */ 15 | .kc { color: #66d9ef } /* Keyword.Constant */ 16 | .kd { color: #66d9ef } /* Keyword.Declaration */ 17 | .kn { color: #f92672 } /* Keyword.Namespace */ 18 | .kp { color: #66d9ef } /* Keyword.Pseudo */ 19 | .kr { color: #66d9ef } /* Keyword.Reserved */ 20 | .kt { color: #66d9ef } /* Keyword.Type */ 21 | .ld { color: #e6db74 } /* Literal.Date */ 22 | .m { color: #ae81ff } /* Literal.Number */ 23 | .s { color: #e6db74 } /* Literal.String */ 24 | .na { color: #a6e22e } /* Name.Attribute */ 25 | .nb { color: #f8f8f2 } /* Name.Builtin */ 26 | .nc { color: #a6e22e } /* Name.Class */ 27 | .no { color: #66d9ef } /* Name.Constant */ 28 | .nd { color: #a6e22e } /* Name.Decorator */ 29 | .ni { color: #f8f8f2 } /* Name.Entity */ 30 | .ne { color: #a6e22e } /* Name.Exception */ 31 | .nf { color: #a6e22e } /* Name.Function */ 32 | .nl { color: #f8f8f2 } /* Name.Label */ 33 | .nn { color: #f8f8f2 } /* Name.Namespace */ 34 | .nx { color: #a6e22e } /* Name.Other */ 35 | .py { color: #f8f8f2 } /* Name.Property */ 36 | .nt { color: #f92672 } /* Name.Tag */ 37 | .nv { color: #f8f8f2 } /* Name.Variable */ 38 | .ow { color: #f92672 } /* Operator.Word */ 39 | .w { color: #f8f8f2 } /* Text.Whitespace */ 40 | .mf { color: #ae81ff } /* Literal.Number.Float */ 41 | .mh { color: #ae81ff } /* Literal.Number.Hex */ 42 | .mi { color: #ae81ff } /* Literal.Number.Integer */ 43 | .mo { color: #ae81ff } /* Literal.Number.Oct */ 44 | .sb { color: #e6db74 } /* Literal.String.Backtick */ 45 | .sc { color: #e6db74 } /* Literal.String.Char */ 46 | .sd { color: #e6db74 } /* Literal.String.Doc */ 47 | .s2 { color: #e6db74 } /* Literal.String.Double */ 48 | .se { color: #ae81ff } /* Literal.String.Escape */ 49 | .sh { color: #e6db74 } /* Literal.String.Heredoc */ 50 | .si { color: #e6db74 } /* Literal.String.Interpol */ 51 | .sx { color: #e6db74 } /* Literal.String.Other */ 52 | .sr { color: #e6db74 } /* Literal.String.Regex */ 53 | .s1 { color: #e6db74 } /* Literal.String.Single */ 54 | .ss { color: #e6db74 } /* Literal.String.Symbol */ 55 | .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */ 56 | .vc { color: #f8f8f2 } /* Name.Variable.Class */ 57 | .vg { color: #f8f8f2 } /* Name.Variable.Global */ 58 | .vi { color: #f8f8f2 } /* Name.Variable.Instance */ 59 | .il { color: #ae81ff } /* Literal.Number.Integer.Long */ 60 | -------------------------------------------------------------------------------- /_includes/themes/hooligan/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | {% if page.title %} 7 | {{ page.title }} - 8 | {% endif %} 9 | {{ site.title }} 10 | 11 | {% if page.description %}{% endif %} 12 | 13 | 14 | 15 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 33 | 34 | 35 | 36 |
37 | 104 | 105 |
106 |
107 | {{ content }} 108 |
109 |
110 | 111 | 112 |
113 | 114 | 122 | 123 | 124 | 125 | 126 | 127 | {% include JB/analytics %} 128 | 129 | 130 | -------------------------------------------------------------------------------- /assets/themes/hooligan/_sass/_base.scss: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=Advent+Pro); 2 | @import url(https://fonts.googleapis.com/css?family=Oxygen); 3 | 4 | /* Theme Vars */ 5 | $link-color: #4cb4e8; 6 | 7 | /* Compass Vars */ 8 | $default-box-shadow-color: #000; 9 | $default-box-shadow-v-offset: 1px; 10 | $default-box-shadow-blur: 1px; 11 | 12 | /* Override some defaults */ 13 | html, body { 14 | background-color: #2a2a2a; 15 | background: url(../images/bgs/body.png) repeat ; 16 | } 17 | 18 | body { 19 | color:#bbb; 20 | text-shadow:1px 1px 1px #000; 21 | height:100%; 22 | font-family: 'Oxygen', sans-serif; 23 | font-size: 14px; 24 | } 25 | 26 | h1,h2,h3,h4,h5,h6 { 27 | margin:0; 28 | font-weight:normal; 29 | color:#999; 30 | text-rendering:optimizelegibility; 31 | font-family: 'Advent Pro', sans-serif; 32 | /*font-family: 'Pontano Sans', sans-serif;*/ 33 | } 34 | 35 | a { 36 | color:$link-color; 37 | &:hover { 38 | color: lighten($link-color, 30); 39 | text-decoration:none; 40 | } 41 | @include transition(all 0.3s); 42 | } 43 | 44 | h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { 45 | font-weight:normal; 46 | color:#999999; 47 | } 48 | 49 | h1, h2 { 50 | margin: 0 0 15px; 51 | } 52 | 53 | h1 { 54 | font-size:40px; 55 | } 56 | 57 | h2 { 58 | font-size: 30px; 59 | } 60 | 61 | pre, code { 62 | color:#ccc; 63 | } 64 | 65 | pre > code { 66 | /* Reset box-shadow for pygments */ 67 | background:none; 68 | box-shadow:none; 69 | -moz-box-shadow: none; 70 | -webkit-box-shadow: none; 71 | -o-box-shadow: none; 72 | } 73 | 74 | hr { 75 | border:none; 76 | background:rgba(0,0,0,0.7); 77 | height:1px; 78 | } 79 | 80 | /* Layout */ 81 | .navbar { 82 | margin-bottom: 0; 83 | div.navbar-inner { 84 | @include border-radius(0); 85 | a.brand { 86 | padding:10px 20px; 87 | } 88 | ul.nav:first-child { 89 | li { 90 | a { 91 | padding:12px 10px 8px; 92 | } 93 | } 94 | } 95 | } 96 | } 97 | 98 | 99 | .container > footer { 100 | margin-top: 20px; 101 | clear:both; 102 | } 103 | .container > footer p { 104 | text-align: center; /* center align it with the container */ 105 | } 106 | 107 | 108 | 109 | /* Content */ 110 | .content { 111 | img { 112 | box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8); 113 | } 114 | /* when there's no page-header */ 115 | &.no-header { 116 | padding-top:40px; 117 | } 118 | 119 | /* Wide column content */ 120 | div.row { 121 | div.span8 { 122 | > img { 123 | display:block; 124 | margin: 10px auto; 125 | } 126 | } 127 | div.span4 { 128 | h4 { 129 | margin-top:10px; 130 | &:first {margin-top: 0} 131 | } 132 | } 133 | } 134 | p { 135 | padding-bottom:15px; 136 | line-height:25px; 137 | margin:0; 138 | } 139 | } 140 | 141 | /* Page header tweaks */ 142 | .page-header { 143 | @include box-shadow( 144 | rgba(255, 255, 255, 0.1) 0 1px 0, 145 | rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset 146 | ); 147 | background: #202020; 148 | background-color: rgba(0, 0, 0, 0.3); 149 | border:none; 150 | padding: 20px 20px 10px; 151 | margin: 0px -20px 20px; 152 | z-index: 0; 153 | @include border-bottom-left-radius; 154 | @include border-bottom-right-radius; 155 | h1 { 156 | color:#eee; 157 | margin-bottom:0; 158 | } 159 | } 160 | 161 | .topbar .btn { 162 | border: 0; 163 | } 164 | 165 | /* Pagination */ 166 | div.pagination { 167 | li { 168 | a { 169 | @include box-shadow; 170 | // background: rgba(0, 0, 0, 0.8); 171 | } 172 | } 173 | } 174 | 175 | /* Buttons */ 176 | a.btn, a.btn.disabled { 177 | color:rgba(255, 255, 255, 0.7); 178 | text-shadow: 1px 1px 2px #000; 179 | background:rgba(0,0,0, 0.2); 180 | border:none; 181 | -moz-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 182 | -webkit-box-shadow: 183 | rgba(0, 0, 0, 0.8) 0 1px 0, 184 | rgba(255, 255, 255, 0.5) 0 1px 1px 0px inset; 185 | -o-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 186 | 187 | &:hover { 188 | background:rgba(255,255,255, 0.05); 189 | } 190 | &.disabled { 191 | color:rgba(255,255,255, 0.3); 192 | } 193 | } 194 | 195 | /* Tags */ 196 | .tag_box { 197 | list-style:none; 198 | margin:0; 199 | padding:5px 0 ; 200 | overflow:hidden; 201 | &.inline { 202 | li { 203 | float:left; 204 | } 205 | } 206 | li { 207 | line-height:28px; 208 | } 209 | a { 210 | &.active { 211 | background:#57A957; 212 | border:1px solid #4C964D; 213 | color:#FFF; 214 | } 215 | span{ 216 | vertical-align:super; 217 | font-size:0.8em; 218 | } 219 | } 220 | } 221 | 222 | .tag_box.inline a, 223 | .tag_box a { 224 | padding: 3px 6px; 225 | margin: 2px; 226 | background: rgba(255, 255, 255, 0.20); 227 | color:white; 228 | border-radius: 3px; 229 | text-decoration:none; 230 | -moz-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 231 | -webkit-box-shadow: 232 | rgba(0, 0, 0, 0.8) 0 1px 0, 233 | rgba(255, 255, 255, 0.5) 0 1px 1px 0px inset; 234 | -o-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 235 | &:hover { 236 | background: rgba(255, 255, 255, 0.30); 237 | } 238 | } 239 | 240 | /* Page-specific */ 241 | div.content { 242 | div#page-index { 243 | padding-top:30px !important; 244 | } 245 | } 246 | 247 | /* Zocial Overrides */ 248 | .navbar a.zocial { 249 | padding-left:0 !important; 250 | padding-right:0 !important; 251 | } 252 | 253 | .zocial.googleplus:focus, 254 | .zocial.googleplus:hover { 255 | color:#e01d30 !important; 256 | } 257 | 258 | .zocial.twitter:focus, 259 | .zocial.twitter:hover { 260 | color:#46c0fb !important; 261 | } 262 | 263 | .zocial.linkedin:focus, 264 | .zocial.linkedin:hover { 265 | color:#50a1cb !important; 266 | } 267 | 268 | .zocial.rss:focus, 269 | .zocial.rss:hover { 270 | color:#fb9d3a !important; 271 | } 272 | 273 | /* Sticky footer */ 274 | $footerHeight: 75px; 275 | 276 | //Page full height 277 | html, body { 278 | height: 100%; 279 | } 280 | 281 | #page-wrap { 282 | min-height: 100%; 283 | height: auto !important; 284 | height: 100%; 285 | // Negative indent footer by it's height 286 | margin-bottom: -($footerHeight); 287 | margin-left: 0; 288 | margin-right: 0; 289 | margin-top: 0; 290 | } 291 | 292 | //footer fixed height 293 | .footer-push, 294 | footer { 295 | height: $footerHeight; 296 | max-height: $footerHeight; 297 | overflow: hidden; 298 | } 299 | 300 | -------------------------------------------------------------------------------- /assets/themes/hooligan/css-social-buttons/css/zocial.stripped.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /*! 4 | Code written by Sam Collins (@smcllns) of www.eventasaur.us 5 | You are free to use this work commercially 6 | You are free to extend this work without permissions from the author (just do so tastefully eh?) 7 | Enjoy 8 | */ 9 | 10 | /* Reference icons from font-files */ 11 | 12 | @font-face { 13 | font-family: 'zocial'; 14 | font-style: normal; 15 | font-weight: normal; 16 | src: url('zocial-regular-webfont.eot'); 17 | src: url('zocial-regular-webfont.eot?#iefix') format('embedded-opentype'), 18 | url('zocial-regular-webfont.woff') format('woff'), 19 | url('zocial-regular-webfont.ttf') format('truetype'), 20 | url('zocial-regular-webfont.svg#ZocialRegular') format('svg'); 21 | unicode-range: U+0-U+10FFFF; 22 | } 23 | 24 | 25 | 26 | .zocial, 27 | a.zocial { 28 | 29 | cursor: pointer; 30 | display: inline-block; 31 | font: bold 100%/2.1 "Lucida Grande", Tahoma, sans-serif; 32 | text-align: center; 33 | text-decoration: none; 34 | text-shadow: 0 1px 0 rgba(0,0,0,0.5); 35 | white-space: nowrap; 36 | 37 | -moz-user-select: none; 38 | -webkit-user-select: none; 39 | user-select: none; 40 | 41 | position: relative; 42 | 43 | -moz-border-radius: .3em; 44 | -webkit-border-radius: .3em; 45 | border-radius: .3em; 46 | } 47 | 48 | .zocial:before { 49 | content: ""; 50 | border-right: 0.075em solid rgba(0,0,0,0.1); 51 | float: left; 52 | font: 120%/1.65 zocial; 53 | font-style: normal; 54 | font-weight: normal; 55 | margin: 0 0.5em 0 0; 56 | padding: 0 0.5em; 57 | text-align: center; 58 | text-decoration: none; 59 | text-transform: none; 60 | 61 | /*-moz-box-shadow: 0.075em 0 0 rgba(255,255,255,0.25); 62 | -webkit-box-shadow: 0.075em 0 0 rgba(255,255,255,0.25); 63 | box-shadow: 0.075em 0 0 rgba(255,255,255,0.25);*/ 64 | 65 | -webkit-font-smoothing: antialiased; 66 | } 67 | 68 | 69 | .zocial:active { 70 | outline: none; /* outline is visible on :focus */ 71 | } 72 | 73 | /* Buttons can be displayed as standalone icons by adding a class of "icon" */ 74 | 75 | .zocial.icon { 76 | 77 | } 78 | .zocial.icon:before { 79 | box-shadow: none; 80 | border: none; 81 | } 82 | 83 | /* Button icon and color */ 84 | /* Icon characters are stored in unicode private area */ 85 | .zocial.amazon:before {content: "\E040";} 86 | .zocial.android:before {content: "\E005";} 87 | .zocial.angellist:before {content: "\E06C";} 88 | .zocial.aol:before {content: "\E001";} 89 | .zocial.appstore:before {content: "\E020";} 90 | .zocial.bitcoin:before {content: "\E011"; color: #f7931a;} 91 | .zocial.blogger:before {content: "\E021";} 92 | .zocial.call:before {content: "\E016";} 93 | .zocial.cal:before {content: "\E00D";} 94 | .zocial.cart:before {content: "\E06A";} 95 | .zocial.chrome:before {content: "\E03A";} 96 | .zocial.cloudapp:before {content: "\E042";} 97 | .zocial.creativecommons:before {content: "\E022";} 98 | .zocial.delicious:before {content: "\E002";} 99 | .zocial.digg:before {content: "\E01A";} 100 | .zocial.disqus:before {content: "\E030";} 101 | .zocial.dribbble:before {content: "\E023";} 102 | .zocial.dropbox:before {content: "\E043"; color: #1f75cc;} 103 | .zocial.email:before {content: "\E03C"; color: #312c2a;} 104 | .zocial.eventasaurus:before {content: "\E055"; color: #9de428;} 105 | .zocial.eventbrite:before {content: "\E05B";} 106 | .zocial.eventful:before {content: "\E006"; color: #0066CC;} 107 | .zocial.evernote:before {content: "\E024";} 108 | .zocial.facebook:before {content: "\E045";} 109 | .zocial.fivehundredpx:before {content: "\E00F"; color: #29b6ff;} 110 | .zocial.flattr:before {content: "\E004";} 111 | .zocial.flickr:before {content: "\E025";} 112 | .zocial.forrst:before {content: "\E019"; color: #50894f;} 113 | .zocial.foursquare:before {content: "\E013";} 114 | .zocial.github:before {content: "\E046";} 115 | .zocial.gmail:before {content: "\E04C"; color: #f00;} 116 | .zocial.google:before {content: "\E026";} 117 | .zocial.googleplay:before {content: "\E05E";} 118 | .zocial.googleplus:before {content: "\E00A";} 119 | .zocial.gowalla:before {content: "\E01F";} 120 | .zocial.grooveshark:before {content: "\E017";} 121 | .zocial.guest:before {content: "\E01E";} 122 | .zocial.html5:before {content: "\E014";} 123 | .zocial.ie:before {content: "\E015";} 124 | .zocial.instagram:before {content: "\E06D";} 125 | .zocial.instapaper:before {content: "\E028";} 126 | .zocial.intensedebate:before {content: "\E05A";} 127 | .zocial.itunes:before {content: "\E048"; color: #1a6dd2;} 128 | .zocial.klout:before {content: "\E02A"; } 129 | .zocial.lanyrd:before {content: "\E00C";} 130 | .zocial.lastfm:before {content: "\E04B";} 131 | .zocial.linkedin:before {content: "\E02B";} 132 | .zocial.macstore:before {content: "\E03D";} 133 | .zocial.meetup:before {content: "\E02C";} 134 | .zocial.myspace:before {content: "\E03E";} 135 | .zocial.ninetyninedesigns:before {content: "\E018"; color: #f50;} 136 | .zocial.openid:before {content: "\E04E"; color: #ff921d;} 137 | .zocial.opentable:before {content: "\E05F";} 138 | .zocial.paypal:before {content: "\E003";} 139 | .zocial.pinboard:before {content: "\E04D";} 140 | .zocial.pinterest:before {content: "\E010";} 141 | .zocial.plancast:before {content: "\E02F";} 142 | .zocial.plurk:before {content: "\E049";} 143 | .zocial.podcast:before {content: "\E03F";} 144 | .zocial.posterous:before {content: "\E05D";} 145 | .zocial.print:before {content: "\E06B";} 146 | .zocial.quora:before {content: "\E050";} 147 | .zocial.reddit:before {content: "\E01D"; color: red;} 148 | .zocial.rss:before {content: "\E031";} 149 | .zocial.scribd:before {content: "\E05C"; color: #00d5ea;} 150 | .zocial.skype:before {content: "\E032";} 151 | .zocial.smashing:before {content: "\E009";} 152 | .zocial.songkick:before {content: "\E04A";} 153 | .zocial.soundcloud:before {content: "\E052";} 154 | .zocial.spotify:before {content: "\E01C";} 155 | .zocial.stumbleupon:before {content: "\E00E";} 156 | .zocial.tumblr:before {content: "\E053";} 157 | .zocial.twitter:before {content: "\E033";} 158 | .zocial.viadeo:before {content: "\E027"; color: #f59b20;} 159 | .zocial.vimeo:before {content: "\E035";} 160 | .zocial.weibo:before {content: "\E029"; color: #e6162d;} 161 | .zocial.wikipedia:before {content: "\E00B";} 162 | .zocial.windows:before {content: "\E036";} 163 | .zocial.xing:before {content: "\E037"} 164 | .zocial.wordpress:before {content: "\E056";} 165 | .zocial.yahoo:before {content: "\E038";} 166 | .zocial.yelp:before {content: "\E058";} 167 | .zocial.youtube:before {content: "\E034";} 168 | -------------------------------------------------------------------------------- /assets/themes/hooligan/bootstrap/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Responsive v2.0.4 3 | * 4 | * Copyright 2012 Twitter, Inc 5 | * Licensed under the Apache License v2.0 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Designed and built with all the love in the world @twitter by @mdo and @fat. 9 | */.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.hidden{display:none;visibility:hidden}.visible-phone{display:none!important}.visible-tablet{display:none!important}.hidden-desktop{display:none!important}@media(max-width:767px){.visible-phone{display:inherit!important}.hidden-phone{display:none!important}.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}}@media(min-width:768px) and (max-width:979px){.visible-tablet{display:inherit!important}.hidden-tablet{display:none!important}.hidden-desktop{display:inherit!important}.visible-desktop{display:none!important}}@media(max-width:480px){.nav-collapse{-webkit-transform:translate3d(0,0,0)}.page-header h1 small{display:block;line-height:18px}input[type="checkbox"],input[type="radio"]{border:1px solid #ccc}.form-horizontal .control-group>label{float:none;width:auto;padding-top:0;text-align:left}.form-horizontal .controls{margin-left:0}.form-horizontal .control-list{padding-top:0}.form-horizontal .form-actions{padding-right:10px;padding-left:10px}.modal{position:absolute;top:10px;right:10px;left:10px;width:auto;margin:0}.modal.fade.in{top:auto}.modal-header .close{padding:10px;margin:-10px}.carousel-caption{position:static}}@media(max-width:767px){body{padding-right:20px;padding-left:20px}.navbar-fixed-top,.navbar-fixed-bottom{margin-right:-20px;margin-left:-20px}.container-fluid{padding:0}.dl-horizontal dt{float:none;width:auto;clear:none;text-align:left}.dl-horizontal dd{margin-left:0}.container{width:auto}.row-fluid{width:100%}.row,.thumbnails{margin-left:0}[class*="span"],.row-fluid [class*="span"]{display:block;float:none;width:auto;margin-left:0}.input-large,.input-xlarge,.input-xxlarge,input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input{display:block;width:100%;min-height:28px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.input-prepend input,.input-append input,.input-prepend input[class*="span"],.input-append input[class*="span"]{display:inline-block;width:auto}}@media(min-width:768px) and (max-width:979px){.row{margin-left:-20px;*zoom:1}.row:before,.row:after{display:table;content:""}.row:after{clear:both}[class*="span"]{float:left;margin-left:20px}.container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:724px}.span12{width:724px}.span11{width:662px}.span10{width:600px}.span9{width:538px}.span8{width:476px}.span7{width:414px}.span6{width:352px}.span5{width:290px}.span4{width:228px}.span3{width:166px}.span2{width:104px}.span1{width:42px}.offset12{margin-left:764px}.offset11{margin-left:702px}.offset10{margin-left:640px}.offset9{margin-left:578px}.offset8{margin-left:516px}.offset7{margin-left:454px}.offset6{margin-left:392px}.offset5{margin-left:330px}.offset4{margin-left:268px}.offset3{margin-left:206px}.offset2{margin-left:144px}.offset1{margin-left:82px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:28px;margin-left:2.762430939%;*margin-left:2.709239449638298%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .span12{width:99.999999993%;*width:99.9468085036383%}.row-fluid .span11{width:91.436464082%;*width:91.38327259263829%}.row-fluid .span10{width:82.87292817100001%;*width:82.8197366816383%}.row-fluid .span9{width:74.30939226%;*width:74.25620077063829%}.row-fluid .span8{width:65.74585634900001%;*width:65.6926648596383%}.row-fluid .span7{width:57.182320438000005%;*width:57.129128948638304%}.row-fluid .span6{width:48.618784527%;*width:48.5655930376383%}.row-fluid .span5{width:40.055248616%;*width:40.0020571266383%}.row-fluid .span4{width:31.491712705%;*width:31.4385212156383%}.row-fluid .span3{width:22.928176794%;*width:22.874985304638297%}.row-fluid .span2{width:14.364640883%;*width:14.311449393638298%}.row-fluid .span1{width:5.801104972%;*width:5.747913482638298%}input,textarea,.uneditable-input{margin-left:0}input.span12,textarea.span12,.uneditable-input.span12{width:714px}input.span11,textarea.span11,.uneditable-input.span11{width:652px}input.span10,textarea.span10,.uneditable-input.span10{width:590px}input.span9,textarea.span9,.uneditable-input.span9{width:528px}input.span8,textarea.span8,.uneditable-input.span8{width:466px}input.span7,textarea.span7,.uneditable-input.span7{width:404px}input.span6,textarea.span6,.uneditable-input.span6{width:342px}input.span5,textarea.span5,.uneditable-input.span5{width:280px}input.span4,textarea.span4,.uneditable-input.span4{width:218px}input.span3,textarea.span3,.uneditable-input.span3{width:156px}input.span2,textarea.span2,.uneditable-input.span2{width:94px}input.span1,textarea.span1,.uneditable-input.span1{width:32px}}@media(min-width:1200px){.row{margin-left:-30px;*zoom:1}.row:before,.row:after{display:table;content:""}.row:after{clear:both}[class*="span"]{float:left;margin-left:30px}.container,.navbar-fixed-top .container,.navbar-fixed-bottom .container{width:1170px}.span12{width:1170px}.span11{width:1070px}.span10{width:970px}.span9{width:870px}.span8{width:770px}.span7{width:670px}.span6{width:570px}.span5{width:470px}.span4{width:370px}.span3{width:270px}.span2{width:170px}.span1{width:70px}.offset12{margin-left:1230px}.offset11{margin-left:1130px}.offset10{margin-left:1030px}.offset9{margin-left:930px}.offset8{margin-left:830px}.offset7{margin-left:730px}.offset6{margin-left:630px}.offset5{margin-left:530px}.offset4{margin-left:430px}.offset3{margin-left:330px}.offset2{margin-left:230px}.offset1{margin-left:130px}.row-fluid{width:100%;*zoom:1}.row-fluid:before,.row-fluid:after{display:table;content:""}.row-fluid:after{clear:both}.row-fluid [class*="span"]{display:block;float:left;width:100%;min-height:28px;margin-left:2.564102564%;*margin-left:2.510911074638298%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.row-fluid [class*="span"]:first-child{margin-left:0}.row-fluid .span12{width:100%;*width:99.94680851063829%}.row-fluid .span11{width:91.45299145300001%;*width:91.3997999636383%}.row-fluid .span10{width:82.905982906%;*width:82.8527914166383%}.row-fluid .span9{width:74.358974359%;*width:74.30578286963829%}.row-fluid .span8{width:65.81196581200001%;*width:65.7587743226383%}.row-fluid .span7{width:57.264957265%;*width:57.2117657756383%}.row-fluid .span6{width:48.717948718%;*width:48.6647572286383%}.row-fluid .span5{width:40.170940171000005%;*width:40.117748681638304%}.row-fluid .span4{width:31.623931624%;*width:31.5707401346383%}.row-fluid .span3{width:23.076923077%;*width:23.0237315876383%}.row-fluid .span2{width:14.529914530000001%;*width:14.4767230406383%}.row-fluid .span1{width:5.982905983%;*width:5.929714493638298%}input,textarea,.uneditable-input{margin-left:0}input.span12,textarea.span12,.uneditable-input.span12{width:1160px}input.span11,textarea.span11,.uneditable-input.span11{width:1060px}input.span10,textarea.span10,.uneditable-input.span10{width:960px}input.span9,textarea.span9,.uneditable-input.span9{width:860px}input.span8,textarea.span8,.uneditable-input.span8{width:760px}input.span7,textarea.span7,.uneditable-input.span7{width:660px}input.span6,textarea.span6,.uneditable-input.span6{width:560px}input.span5,textarea.span5,.uneditable-input.span5{width:460px}input.span4,textarea.span4,.uneditable-input.span4{width:360px}input.span3,textarea.span3,.uneditable-input.span3{width:260px}input.span2,textarea.span2,.uneditable-input.span2{width:160px}input.span1,textarea.span1,.uneditable-input.span1{width:60px}.thumbnails{margin-left:-30px}.thumbnails>li{margin-left:30px}.row-fluid .thumbnails{margin-left:0}}@media(max-width:979px){body{padding-top:0}.navbar-fixed-top,.navbar-fixed-bottom{position:static}.navbar-fixed-top{margin-bottom:18px}.navbar-fixed-bottom{margin-top:18px}.navbar-fixed-top .navbar-inner,.navbar-fixed-bottom .navbar-inner{padding:5px}.navbar .container{width:auto;padding:0}.navbar .brand{padding-right:10px;padding-left:10px;margin:0 0 0 -5px}.nav-collapse{clear:both}.nav-collapse .nav{float:none;margin:0 0 9px}.nav-collapse .nav>li{float:none}.nav-collapse .nav>li>a{margin-bottom:2px}.nav-collapse .nav>.divider-vertical{display:none}.nav-collapse .nav .nav-header{color:#999;text-shadow:none}.nav-collapse .nav>li>a,.nav-collapse .dropdown-menu a{padding:6px 15px;font-weight:bold;color:#999;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.nav-collapse .btn{padding:4px 10px 4px;font-weight:normal;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.nav-collapse .dropdown-menu li+li a{margin-bottom:2px}.nav-collapse .nav>li>a:hover,.nav-collapse .dropdown-menu a:hover{background-color:#222}.nav-collapse.in .btn-group{padding:0;margin-top:5px}.nav-collapse .dropdown-menu{position:static;top:auto;left:auto;display:block;float:none;max-width:none;padding:0;margin:0 15px;background-color:transparent;border:0;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none}.nav-collapse .dropdown-menu:before,.nav-collapse .dropdown-menu:after{display:none}.nav-collapse .dropdown-menu .divider{display:none}.nav-collapse .navbar-form,.nav-collapse .navbar-search{float:none;padding:9px 15px;margin:9px 0;border-top:1px solid #222;border-bottom:1px solid #222;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1)}.navbar .nav-collapse .nav.pull-right{float:none;margin-left:0}.nav-collapse,.nav-collapse.collapse{height:0;overflow:hidden}.navbar .btn-navbar{display:block}.navbar-static .navbar-inner{padding-right:10px;padding-left:10px}}@media(min-width:980px){.nav-collapse.collapse{height:auto!important;overflow:visible!important}} 10 | -------------------------------------------------------------------------------- /assets/themes/hooligan/css/style.css: -------------------------------------------------------------------------------- 1 | @import url(https://fonts.googleapis.com/css?family=Advent+Pro); 2 | @import url(https://fonts.googleapis.com/css?family=Oxygen); 3 | /* Partials */ 4 | /* Theme Vars */ 5 | /* Compass Vars */ 6 | /* Override some defaults */ 7 | /* line 13, ../_sass/_base.scss */ 8 | html, body { 9 | background-color: #2a2a2a; 10 | background: url(../images/bgs/body.png) repeat; 11 | } 12 | 13 | /* line 18, ../_sass/_base.scss */ 14 | body { 15 | color: #bbb; 16 | text-shadow: 1px 1px 1px #000; 17 | height: 100%; 18 | font-family: 'Oxygen', sans-serif; 19 | font-size: 14px; 20 | } 21 | 22 | /* line 26, ../_sass/_base.scss */ 23 | h1, h2, h3, h4, h5, h6 { 24 | margin: 0; 25 | font-weight: normal; 26 | color: #999; 27 | text-rendering: optimizelegibility; 28 | font-family: 'Advent Pro', sans-serif; 29 | /*font-family: 'Pontano Sans', sans-serif;*/ 30 | } 31 | 32 | /* line 35, ../_sass/_base.scss */ 33 | a { 34 | color: #4cb4e8; 35 | -webkit-transition: all 0.3s; 36 | -moz-transition: all 0.3s; 37 | -ms-transition: all 0.3s; 38 | -o-transition: all 0.3s; 39 | transition: all 0.3s; 40 | } 41 | /* line 37, ../_sass/_base.scss */ 42 | a:hover { 43 | color: #d4edf9; 44 | text-decoration: none; 45 | } 46 | 47 | /* line 44, ../_sass/_base.scss */ 48 | h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { 49 | font-weight: normal; 50 | color: #999999; 51 | } 52 | 53 | /* line 49, ../_sass/_base.scss */ 54 | h1, h2 { 55 | margin: 0 0 15px; 56 | } 57 | 58 | /* line 53, ../_sass/_base.scss */ 59 | h1 { 60 | font-size: 40px; 61 | } 62 | 63 | /* line 57, ../_sass/_base.scss */ 64 | h2 { 65 | font-size: 30px; 66 | } 67 | 68 | /* line 61, ../_sass/_base.scss */ 69 | pre, code { 70 | color: #ccc; 71 | } 72 | 73 | /* line 65, ../_sass/_base.scss */ 74 | pre > code { 75 | /* Reset box-shadow for pygments */ 76 | background: none; 77 | box-shadow: none; 78 | -moz-box-shadow: none; 79 | -webkit-box-shadow: none; 80 | -o-box-shadow: none; 81 | } 82 | 83 | /* line 74, ../_sass/_base.scss */ 84 | hr { 85 | border: none; 86 | background: rgba(0, 0, 0, 0.7); 87 | height: 1px; 88 | } 89 | 90 | /* Layout */ 91 | /* line 81, ../_sass/_base.scss */ 92 | .navbar { 93 | margin-bottom: 0; 94 | } 95 | /* line 83, ../_sass/_base.scss */ 96 | .navbar div.navbar-inner { 97 | -webkit-border-radius: 0; 98 | -moz-border-radius: 0; 99 | -ms-border-radius: 0; 100 | -o-border-radius: 0; 101 | border-radius: 0; 102 | } 103 | /* line 85, ../_sass/_base.scss */ 104 | .navbar div.navbar-inner a.brand { 105 | padding: 10px 20px; 106 | } 107 | /* line 90, ../_sass/_base.scss */ 108 | .navbar div.navbar-inner ul.nav:first-child li a { 109 | padding: 12px 10px 8px; 110 | } 111 | 112 | /* line 99, ../_sass/_base.scss */ 113 | .container > footer { 114 | margin-top: 20px; 115 | clear: both; 116 | } 117 | 118 | /* line 103, ../_sass/_base.scss */ 119 | .container > footer p { 120 | text-align: center; 121 | /* center align it with the container */ 122 | } 123 | 124 | /* Content */ 125 | /* line 110, ../_sass/_base.scss */ 126 | .content { 127 | /* when there's no page-header */ 128 | /* Wide column content */ 129 | } 130 | /* line 111, ../_sass/_base.scss */ 131 | .content img { 132 | box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8); 133 | } 134 | /* line 115, ../_sass/_base.scss */ 135 | .content.no-header { 136 | padding-top: 40px; 137 | } 138 | /* line 122, ../_sass/_base.scss */ 139 | .content div.row div.span8 > img { 140 | display: block; 141 | margin: 10px auto; 142 | } 143 | /* line 128, ../_sass/_base.scss */ 144 | .content div.row div.span4 h4 { 145 | margin-top: 10px; 146 | } 147 | /* line 130, ../_sass/_base.scss */ 148 | .content div.row div.span4 h4:first { 149 | margin-top: 0; 150 | } 151 | /* line 134, ../_sass/_base.scss */ 152 | .content p { 153 | padding-bottom: 15px; 154 | line-height: 25px; 155 | margin: 0; 156 | } 157 | 158 | /* Page header tweaks */ 159 | /* line 142, ../_sass/_base.scss */ 160 | .page-header { 161 | -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 162 | -moz-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 163 | box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 164 | background: #202020; 165 | background-color: rgba(0, 0, 0, 0.3); 166 | border: none; 167 | padding: 20px 20px 10px; 168 | margin: 0px -20px 20px; 169 | z-index: 0; 170 | -moz-border-radius-bottomleft: 5px; 171 | -webkit-border-bottom-left-radius: 5px; 172 | -ms-border-bottom-left-radius: 5px; 173 | -o-border-bottom-left-radius: 5px; 174 | border-bottom-left-radius: 5px; 175 | -moz-border-radius-bottomright: 5px; 176 | -webkit-border-bottom-right-radius: 5px; 177 | -ms-border-bottom-right-radius: 5px; 178 | -o-border-bottom-right-radius: 5px; 179 | border-bottom-right-radius: 5px; 180 | } 181 | /* line 155, ../_sass/_base.scss */ 182 | .page-header h1 { 183 | color: #eee; 184 | margin-bottom: 0; 185 | } 186 | 187 | /* line 161, ../_sass/_base.scss */ 188 | .topbar .btn { 189 | border: 0; 190 | } 191 | 192 | /* Pagination */ 193 | /* line 168, ../_sass/_base.scss */ 194 | div.pagination li a { 195 | -webkit-box-shadow: 0px 1px 1px black; 196 | -moz-box-shadow: 0px 1px 1px black; 197 | box-shadow: 0px 1px 1px black; 198 | } 199 | 200 | /* Buttons */ 201 | /* line 176, ../_sass/_base.scss */ 202 | a.btn, a.btn.disabled { 203 | color: rgba(255, 255, 255, 0.7); 204 | text-shadow: 1px 1px 2px #000; 205 | background: rgba(0, 0, 0, 0.2); 206 | border: none; 207 | -moz-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 208 | -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0 1px 0, rgba(255, 255, 255, 0.5) 0 1px 1px 0px inset; 209 | -o-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 210 | } 211 | /* line 187, ../_sass/_base.scss */ 212 | a.btn:hover, a.btn.disabled:hover { 213 | background: rgba(255, 255, 255, 0.05); 214 | } 215 | /* line 190, ../_sass/_base.scss */ 216 | a.btn.disabled, a.btn.disabled.disabled { 217 | color: rgba(255, 255, 255, 0.3); 218 | } 219 | 220 | /* Tags */ 221 | /* line 196, ../_sass/_base.scss */ 222 | .tag_box { 223 | list-style: none; 224 | margin: 0; 225 | padding: 5px 0; 226 | overflow: hidden; 227 | } 228 | /* line 202, ../_sass/_base.scss */ 229 | .tag_box.inline li { 230 | float: left; 231 | } 232 | /* line 206, ../_sass/_base.scss */ 233 | .tag_box li { 234 | line-height: 28px; 235 | } 236 | /* line 210, ../_sass/_base.scss */ 237 | .tag_box a.active { 238 | background: #57A957; 239 | border: 1px solid #4C964D; 240 | color: #FFF; 241 | } 242 | /* line 215, ../_sass/_base.scss */ 243 | .tag_box a span { 244 | vertical-align: super; 245 | font-size: 0.8em; 246 | } 247 | 248 | /* line 223, ../_sass/_base.scss */ 249 | .tag_box.inline a, 250 | .tag_box a { 251 | padding: 3px 6px; 252 | margin: 2px; 253 | background: rgba(255, 255, 255, 0.2); 254 | color: white; 255 | border-radius: 3px; 256 | text-decoration: none; 257 | -moz-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 258 | -webkit-box-shadow: rgba(0, 0, 0, 0.8) 0 1px 0, rgba(255, 255, 255, 0.5) 0 1px 1px 0px inset; 259 | -o-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 260 | } 261 | /* line 235, ../_sass/_base.scss */ 262 | .tag_box.inline a:hover, 263 | .tag_box a:hover { 264 | background: rgba(255, 255, 255, 0.3); 265 | } 266 | 267 | /* Page-specific */ 268 | /* line 242, ../_sass/_base.scss */ 269 | div.content div#page-index { 270 | padding-top: 30px !important; 271 | } 272 | 273 | /* Zocial Overrides */ 274 | /* line 248, ../_sass/_base.scss */ 275 | .navbar a.zocial { 276 | padding-left: 0 !important; 277 | padding-right: 0 !important; 278 | } 279 | 280 | /* line 254, ../_sass/_base.scss */ 281 | .zocial.googleplus:focus, 282 | .zocial.googleplus:hover { 283 | color: #e01d30 !important; 284 | } 285 | 286 | /* line 259, ../_sass/_base.scss */ 287 | .zocial.twitter:focus, 288 | .zocial.twitter:hover { 289 | color: #46c0fb !important; 290 | } 291 | 292 | /* line 264, ../_sass/_base.scss */ 293 | .zocial.linkedin:focus, 294 | .zocial.linkedin:hover { 295 | color: #50a1cb !important; 296 | } 297 | 298 | /* line 269, ../_sass/_base.scss */ 299 | .zocial.rss:focus, 300 | .zocial.rss:hover { 301 | color:#fb9d3a !important; 302 | } 303 | 304 | /* Layout */ 305 | /* line 2, ../_sass/_responsive.scss */ 306 | .navbar { 307 | margin-bottom: 0; 308 | } 309 | /* line 4, ../_sass/_responsive.scss */ 310 | .navbar div.navbar-inner { 311 | -webkit-border-radius: 0; 312 | -moz-border-radius: 0; 313 | -ms-border-radius: 0; 314 | -o-border-radius: 0; 315 | border-radius: 0; 316 | } 317 | /* line 7, ../_sass/_responsive.scss */ 318 | .navbar ul.social { 319 | /* Hide social menu on low-res screens */ 320 | } 321 | @media (min-width: 240px) and (max-width: 979px) { 322 | /* line 7, ../_sass/_responsive.scss */ 323 | .navbar ul.social { 324 | display: none !important; 325 | } 326 | } 327 | 328 | /* Responsive Overrides */ 329 | @media (max-width: 767px) { 330 | /* line 18, ../_sass/_responsive.scss */ 331 | body { 332 | padding-right: 0px; 333 | padding-left: 0px; 334 | } 335 | 336 | /* line 23, ../_sass/_responsive.scss */ 337 | div.container { 338 | padding: 0px 20px; 339 | } 340 | /* line 25, ../_sass/_responsive.scss */ 341 | div.container div.page-header { 342 | -webkit-border-radius: 0; 343 | -moz-border-radius: 0; 344 | -ms-border-radius: 0; 345 | -o-border-radius: 0; 346 | border-radius: 0; 347 | } 348 | } 349 | /* Posts */ 350 | /* line 3, ../_sass/_post.scss */ 351 | article.post header { 352 | margin-bottom: 10px; 353 | } 354 | /* line 5, ../_sass/_post.scss */ 355 | article.post header h1, article.post header h2 { 356 | margin: 0; 357 | } 358 | /* line 8, ../_sass/_post.scss */ 359 | article.post header .category { 360 | display: inline-block; 361 | color: white; 362 | border-left: 1px solid rgba(255, 255, 255, 0.2); 363 | padding-left: 6px; 364 | margin-left: 3px; 365 | } 366 | 367 | /* line 25, ../_sass/_post.scss */ 368 | div.posts article div.date { 369 | font-size: 10px; 370 | padding: 10px 0; 371 | } 372 | /* line 28, ../_sass/_post.scss */ 373 | div.posts article div.date time { 374 | -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 375 | -moz-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 376 | box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 377 | background: #202020; 378 | background-color: rgba(0, 0, 0, 0.3); 379 | -webkit-border-radius: 5px; 380 | -moz-border-radius: 5px; 381 | -ms-border-radius: 5px; 382 | -o-border-radius: 5px; 383 | border-radius: 5px; 384 | padding: 5px 10px; 385 | } 386 | 387 | /* This is for your site's custom styling */ 388 | /* line 3, ../_sass/_custom.scss */ 389 | div.sidebar section { 390 | background: #202020; 391 | background-color: rgba(0, 0, 0, 0.3); 392 | -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 393 | -moz-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 394 | box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 395 | -webkit-border-radius: 5px; 396 | -moz-border-radius: 5px; 397 | -ms-border-radius: 5px; 398 | -o-border-radius: 5px; 399 | border-radius: 5px; 400 | padding: 15px; 401 | } 402 | /* line 12, ../_sass/_custom.scss */ 403 | div.sidebar section img.icon { 404 | float: left; 405 | margin: 7px 15px 0 0; 406 | -webkit-border-radius: 5px; 407 | -moz-border-radius: 5px; 408 | -ms-border-radius: 5px; 409 | -o-border-radius: 5px; 410 | border-radius: 5px; 411 | } 412 | -------------------------------------------------------------------------------- /assets/themes/hooligan/css/darkstrap.css: -------------------------------------------------------------------------------- 1 | /* line 31, ../sass/darkstrap.scss */ 2 | .well, .breadcrumb, input, 3 | input[type="file"], 4 | select, 5 | textarea, .progress, code, pre { 6 | -moz-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 7 | -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 8 | -o-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 9 | box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0.8) 0 1px 7px 0px inset; 10 | background: #202020; 11 | background-color: rgba(0, 0, 0, 0.3); 12 | } 13 | 14 | /* line 33, ../sass/darkstrap.scss */ 15 | body { 16 | background: #2f2f2f; 17 | color: #c6c6c6; 18 | } 19 | 20 | /* line 39, ../sass/darkstrap.scss */ 21 | .breadcrumb { 22 | border: 0; 23 | } 24 | /* line 42, ../sass/darkstrap.scss */ 25 | .breadcrumb li { 26 | text-shadow: 0 1px 0 #000; 27 | } 28 | 29 | /* line 48, ../sass/darkstrap.scss */ 30 | .page-header { 31 | -moz-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0; 32 | -webkit-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0; 33 | -o-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0; 34 | box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0; 35 | border-bottom: 1px solid #121212; 36 | } 37 | 38 | /* line 49, ../sass/darkstrap.scss */ 39 | h1, h2, h3, h4, h5, h6 { 40 | color: white; 41 | } 42 | 43 | /* line 50, ../sass/darkstrap.scss */ 44 | h6 { 45 | color: #999; 46 | } 47 | 48 | /* line 57, ../sass/darkstrap.scss */ 49 | .nav-tabs .open .dropdown-toggle, 50 | .nav-pills .open .dropdown-toggle, 51 | .nav > .open.active > a:hover { 52 | background-color: #222222; 53 | border-color: #2f2f2f #2f2f2f transparent #2f2f2f; 54 | } 55 | 56 | /* line 61, ../sass/darkstrap.scss */ 57 | .nav > .dropdown.active > a:hover { 58 | color: #fff; 59 | } 60 | 61 | /* line 65, ../sass/darkstrap.scss */ 62 | .nav-tabs .active .dropdown-toggle .caret, 63 | .nav-pills .active .dropdown-toggle .caret { 64 | border-top-color: #fff; 65 | } 66 | 67 | /* line 68, ../sass/darkstrap.scss */ 68 | .nav-tabs { 69 | border-bottom: 1px solid #666; 70 | } 71 | /* line 71, ../sass/darkstrap.scss */ 72 | .nav-tabs > .active > a, .nav-tabs > .active > a:hover { 73 | background-color: #2f2f2f; 74 | color: #fff; 75 | border-color: #666 #666 transparent #666; 76 | } 77 | /* line 76, ../sass/darkstrap.scss */ 78 | .nav-tabs > li > a:hover { 79 | border-color: #2f2f2f #2f2f2f #666666 #2f2f2f; 80 | background-color: #222222; 81 | color: #00aaff; 82 | } 83 | /* line 83, ../sass/darkstrap.scss */ 84 | .nav-tabs.nav-stacked > li > a, .nav-tabs.nav-stacked > li > a:hover { 85 | border-color: #666; 86 | } 87 | 88 | /* line 89, ../sass/darkstrap.scss */ 89 | .nav-pills > li > a:hover { 90 | background-color: #222222; 91 | color: #00aaff; 92 | } 93 | 94 | /* line 95, ../sass/darkstrap.scss */ 95 | .nav-list > li > a, 96 | .nav-list .nav-header { 97 | text-shadow: 0 1px 0 #000; 98 | } 99 | 100 | /* line 98, ../sass/darkstrap.scss */ 101 | .nav-list > li > a:hover { 102 | background-color: #161616; 103 | color: #00aaff; 104 | } 105 | 106 | /* line 103, ../sass/darkstrap.scss */ 107 | .nav-list .active > a:hover { 108 | background-color: #0088cc; 109 | color: white; 110 | } 111 | 112 | /* line 109, ../sass/darkstrap.scss */ 113 | .tabs-below .nav-tabs { 114 | border-top: 1px solid #666; 115 | } 116 | 117 | /* line 110, ../sass/darkstrap.scss */ 118 | .tabs-left .nav-tabs { 119 | border-right: 1px solid #666; 120 | } 121 | 122 | /* line 111, ../sass/darkstrap.scss */ 123 | .tabs-right .nav-tabs { 124 | border-left: 1px solid #666; 125 | } 126 | 127 | /* line 113, ../sass/darkstrap.scss */ 128 | .tabs-below .nav-tabs > li > a:hover { 129 | border-top: 1px solid #666; 130 | } 131 | 132 | /* line 116, ../sass/darkstrap.scss */ 133 | .tabs-left .nav-tabs > li > a:hover { 134 | border-color: transparent #666 transparent transparent; 135 | } 136 | 137 | /* line 119, ../sass/darkstrap.scss */ 138 | .tabs-right .nav-tabs > li > a:hover { 139 | border-color: transparent transparent transparent #666; 140 | } 141 | 142 | /* line 124, ../sass/darkstrap.scss */ 143 | .tabs-below .nav-tabs .active > a, 144 | .tabs-below .nav-tabs .active > a:hover { 145 | border-color: transparent #666 #666 #666; 146 | } 147 | 148 | /* line 128, ../sass/darkstrap.scss */ 149 | .tabs-left .nav-tabs .active > a, 150 | .tabs-left .nav-tabs .active > a:hover { 151 | border-color: #666 transparent #666 #666; 152 | } 153 | 154 | /* line 132, ../sass/darkstrap.scss */ 155 | .tabs-right .nav-tabs .active > a, 156 | .tabs-right .nav-tabs .active > a:hover { 157 | border-color: #666 #666 #666 transparent; 158 | } 159 | 160 | /* line 2, ../sass/mixins.scss */ 161 | :-moz-placeholder { 162 | color: #666666; 163 | } 164 | 165 | /* line 5, ../sass/mixins.scss */ 166 | ::-webkit-input-placeholder { 167 | color: #666666; 168 | } 169 | 170 | /* line 140, ../sass/darkstrap.scss */ 171 | .input-prepend .add-on, 172 | .input-append .add-on { 173 | background: #444; 174 | color: #c6c6c6; 175 | border-color: #111; 176 | text-shadow: 0 1px 0 black; 177 | } 178 | 179 | /* line 147, ../sass/darkstrap.scss */ 180 | label { 181 | color: #c6c6c6; 182 | } 183 | 184 | /* line 154, ../sass/darkstrap.scss */ 185 | input, 186 | input[type="file"], 187 | select, 188 | textarea { 189 | color: white; 190 | border-color: #111111; 191 | } 192 | 193 | /* line 160, ../sass/darkstrap.scss */ 194 | .search-query { 195 | -webkit-box-shadow: rgba(255, 255, 255, 0.1) 0 1px 0, rgba(0, 0, 0, 0) 0 1px 7px 0px inset; 196 | } 197 | 198 | /* line 163, ../sass/darkstrap.scss */ 199 | legend { 200 | color: white; 201 | -moz-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0; 202 | -webkit-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0; 203 | -o-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0; 204 | box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0; 205 | border-bottom: 1px solid #121212; 206 | } 207 | 208 | /* line 167, ../sass/darkstrap.scss */ 209 | .form-actions { 210 | border-top-color: #222; 211 | background-color: #444; 212 | } 213 | 214 | /* line 172, ../sass/darkstrap.scss */ 215 | .help-inline { 216 | color: #999; 217 | } 218 | 219 | /* line 12, ../sass/mixins.scss */ 220 | .control-group.warning > label, 221 | .control-group.warning .help-block, 222 | .control-group.warning .help-inline { 223 | color: #faa732; 224 | } 225 | /* line 13, ../sass/mixins.scss */ 226 | .control-group.warning input, .control-group.warning select, .control-group.warning textarea { 227 | color: #faa732; 228 | border-color: #faa732; 229 | } 230 | /* line 20, ../sass/mixins.scss */ 231 | .control-group.warning input:focus, 232 | .control-group.warning select:focus, 233 | .control-group.warning textarea:focus { 234 | border-color: #faa732; 235 | -moz-box-shadow: 0 0 6px #faa732; 236 | -webkit-box-shadow: 0 0 6px #faa732; 237 | -o-box-shadow: 0 0 6px #faa732; 238 | box-shadow: 0 0 6px #faa732; 239 | } 240 | /* line 12, ../sass/mixins.scss */ 241 | .control-group.success > label, .control-group.success .help-block, .control-group.success .help-inline { 242 | color: #5bb75b; 243 | } 244 | /* line 13, ../sass/mixins.scss */ 245 | .control-group.success input, .control-group.success select, .control-group.success textarea { 246 | color: #5bb75b; 247 | border-color: #5bb75b; 248 | } 249 | /* line 20, ../sass/mixins.scss */ 250 | .control-group.success input:focus, .control-group.success select:focus, .control-group.success textarea:focus { 251 | border-color: #5bb75b; 252 | -moz-box-shadow: 0 0 6px #5bb75b; 253 | -webkit-box-shadow: 0 0 6px #5bb75b; 254 | -o-box-shadow: 0 0 6px #5bb75b; 255 | box-shadow: 0 0 6px #5bb75b; 256 | } 257 | /* line 12, ../sass/mixins.scss */ 258 | .control-group.error > label, .control-group.error .help-block, .control-group.error .help-inline { 259 | color: #fc5b5e; 260 | } 261 | /* line 13, ../sass/mixins.scss */ 262 | .control-group.error input, .control-group.error select, .control-group.error textarea { 263 | color: #fc5b5e; 264 | border-color: #fc5b5e; 265 | } 266 | /* line 20, ../sass/mixins.scss */ 267 | .control-group.error input:focus, .control-group.error select:focus, .control-group.error textarea:focus { 268 | border-color: #fc5b5e; 269 | -moz-box-shadow: 0 0 6px #fc5b5e; 270 | -webkit-box-shadow: 0 0 6px #fc5b5e; 271 | -o-box-shadow: 0 0 6px #fc5b5e; 272 | box-shadow: 0 0 6px #fc5b5e; 273 | } 274 | 275 | /* line 182, ../sass/darkstrap.scss */ 276 | .table thead { 277 | color: white; 278 | } 279 | /* line 185, ../sass/darkstrap.scss */ 280 | .table td { 281 | border-top-color: #666; 282 | } 283 | 284 | /* line 191, ../sass/darkstrap.scss */ 285 | .table-striped tbody tr:nth-child(2n+1) td, .table-striped tbody tr:nth-child(2n+1) th { 286 | background-color: #444; 287 | } 288 | 289 | /* line 197, ../sass/darkstrap.scss */ 290 | .table-bordered { 291 | border: 1px solid #666; 292 | } 293 | /* line 202, ../sass/darkstrap.scss */ 294 | .table-bordered th + th, 295 | .table-bordered td + td, 296 | .table-bordered th + td, 297 | .table-bordered td + th { 298 | border-left: 1px solid #666; 299 | } 300 | 301 | /* line 208, ../sass/darkstrap.scss */ 302 | .pagination a:hover { 303 | color: #00aaff; 304 | background-color: #222222; 305 | } 306 | 307 | /* line 212, ../sass/darkstrap.scss */ 308 | .pagination .active a { 309 | color: #fff; 310 | background-color: #222222; 311 | } 312 | 313 | /* line 216, ../sass/darkstrap.scss */ 314 | .pagination a { 315 | border-color: #666; 316 | } 317 | 318 | /* line 219, ../sass/darkstrap.scss */ 319 | .pager a { 320 | background-color: #2f2f2f; 321 | border-color: #666; 322 | } 323 | /* line 222, ../sass/darkstrap.scss */ 324 | .pager a:hover { 325 | background-color: #222222; 326 | color: #00aaff; 327 | } 328 | 329 | /* line 238, ../sass/darkstrap.scss */ 330 | .alert { 331 | color: #fff; 332 | background-color: #faa732; 333 | text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); 334 | border-color: #a86404; 335 | } 336 | /* line 234, ../sass/darkstrap.scss */ 337 | .alert h4 { 338 | color: #c17305; 339 | } 340 | 341 | /* line 239, ../sass/darkstrap.scss */ 342 | .alert-success { 343 | color: #fff; 344 | background-color: #5bb75b; 345 | text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); 346 | border-color: #2d662d; 347 | } 348 | /* line 234, ../sass/darkstrap.scss */ 349 | .alert-success h4 { 350 | color: #347834; 351 | } 352 | 353 | /* line 240, ../sass/darkstrap.scss */ 354 | .alert-error { 355 | color: #fff; 356 | background-color: #fc5b5e; 357 | text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); 358 | border-color: #d40408; 359 | } 360 | /* line 234, ../sass/darkstrap.scss */ 361 | .alert-error h4 { 362 | color: #ed0409; 363 | } 364 | 365 | /* line 241, ../sass/darkstrap.scss */ 366 | .alert-info { 367 | color: #fff; 368 | background-color: #3a87ad; 369 | text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); 370 | border-color: #1a3c4e; 371 | } 372 | /* line 234, ../sass/darkstrap.scss */ 373 | .alert-info h4 { 374 | color: #204b61; 375 | } 376 | 377 | /* line 245, ../sass/darkstrap.scss */ 378 | .modal { 379 | background-color: #444; 380 | } 381 | 382 | /* line 248, ../sass/darkstrap.scss */ 383 | .modal-header { 384 | border-bottom: 1px solid #222; 385 | } 386 | 387 | /* line 251, ../sass/darkstrap.scss */ 388 | .modal-body p { 389 | color: #c6c6c6; 390 | } 391 | 392 | /* line 254, ../sass/darkstrap.scss */ 393 | .modal-footer { 394 | background-color: #373737; 395 | border-top: 1px solid #222; 396 | -moz-box-shadow: 0 1px 0 #333333 inset; 397 | -webkit-box-shadow: 0 1px 0 #333333 inset; 398 | -o-box-shadow: 0 1px 0 #333333 inset; 399 | box-shadow: 0 1px 0 #333333 inset; 400 | } 401 | 402 | /* line 266, ../sass/darkstrap.scss */ 403 | blockquote { 404 | border-left-color: #111; 405 | } 406 | /* line 268, ../sass/darkstrap.scss */ 407 | blockquote.pull-right { 408 | border-right-color: #111; 409 | } 410 | 411 | /* line 271, ../sass/darkstrap.scss */ 412 | hr { 413 | -moz-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0; 414 | -webkit-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0; 415 | -o-box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0; 416 | box-shadow: rgba(255, 255, 255, 0.07) 0 1px 0; 417 | border-bottom: 1px solid #121212; 418 | border-top: none; 419 | } 420 | 421 | /* line 277, ../sass/darkstrap.scss */ 422 | code { 423 | border: none; 424 | } 425 | 426 | /* line 281, ../sass/darkstrap.scss */ 427 | pre { 428 | border: none; 429 | color: #c6c6c6; 430 | } -------------------------------------------------------------------------------- /assets/themes/hooligan/css-social-buttons/sample.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Zocial CSS3 Buttons 6 | 7 | 8 | 9 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | Sign in with Facebook 48 | Sign in with Google+ 49 | Sign in with Twitter 50 | Sign in with LinkedIn 51 | 52 |

The Cool Kids

53 | Sync with Dropbox 54 | Clip to Evernote 55 | Follow me on Forrst 56 | Sign in with Dribbble 57 | Sign in to CloudApp 58 | Fork me on Github 59 | Play on Spotify 60 | Read It Later 61 | Follow me on Soundcloud 62 | Follow me on Tumblr 63 | Read on Smashing Magazine 64 | Available on iTunes 65 | Available on the App Store 66 | Available on the Mac App Store 67 | Available on Android Market 68 | Follow me on Pinterest 69 | Follow me on Quora 70 | Attend on Lanyrd 71 | 72 |

The Not-So-Cool But Have-To-Be-Invited Kids

73 | Pay with Paypal 74 | Sign in with Amazon 75 | Call me on Skype 76 | Sign in with Last.fm 77 | Write a review on Yelp 78 | Check in with foursquare 79 | Influence with Klout 80 | 81 |

The Older (but Solid) Kids

82 | View on Wikipedia 83 | Sign in with Disqus 84 | Sign in with IntenseDebate 85 | Sign in with Google 86 | Sign in with Gmail 87 | Upload to Vimeo 88 | Read more on Scribd 89 | Subscribe on YouTube 90 | Sign in with WordPress 91 | Sign in with Songkick 92 | Sign in with Posterous 93 | Sign in with Eventbrite 94 | Tip with Flattr 95 | Follow me on Plancast 96 | 97 | 98 |

The Kids That Kinda Smell but Some People Don't Mind

99 | Submit resume for CEO 100 | Download Internet Explorer 5 101 | Report bugs with Meetup.com 102 | Learn how-to-use OpenID 103 | Register now for HTML6 104 | Chat with your parents 105 | 106 |

The Kids That Nobody Normally Notices

107 | Sign in as guest 108 | View Creative Commons Licence 109 | Subscribe to RSS 110 | Add to Chrome 111 | 112 |

The He's-My-Son-So-Of-Course-He's-Here Kid

113 | Sign up for Eventasaurus 114 | 115 |

Kids By Request

116 | Join me on Weibo 117 | Sign in with Plurk 118 | Play on Grooveshark 119 | Post on Blogger 120 | Sign in with Viadeo 121 | Subscribe to this Podcast 122 | View Portfolio on 500px 123 | Bitcoin accepted here 124 | View Portfolio on 99Designs 125 | Bookmark with Pinboard 126 | Stumble! 127 | Find me on Myspace 128 | Sign in with Windows Live 129 | Find Events with Eventful 130 | Sign in with Xing 131 | Upload to Flickr 132 | Sign in with Del.icio.us 133 | Download from Google Play 134 | Reserve with OpenTable 135 | Digg this 136 | Share on Reddit 137 | Fund us on AngelList 138 | Sign-in with Instagram 139 | 140 |

The Multi-Purpose Kids (Credit: Pictos Icons)

141 | 142 | Call a phone 143 | Send a message 144 | Add to calendar 145 | Add to cart 146 | Print this page 147 | Primary action 148 | Secondary action 149 | 150 | 151 |

Icon versions of the above

152 | Sign in with Facebook 153 | Sign in with Google+ 154 | Sign in with Twitter 155 | Sign in with Google 156 | Sign in with LinkedIn 157 | Pay with Paypal 158 | Sign in with Amazon 159 | Sync with Dropbox 160 | Clip to Evernote 161 | Call me on Skype 162 | Sign in as guest 163 | Play on Spotify 164 | Sign in with Last.fm 165 | Sign in with Songkick 166 | Follow me on Forrst 167 | Sign in with Dribbble 168 | Sign in to CloudApp 169 | Fork me on Github 170 | Follow me on Pinterest 171 | Follow me on Quora 172 | Bookmark with Pinboard 173 | Attend on Lanyrd 174 | Download on iTunes 175 | Download on Android 176 | Sign in with Disqus 177 | Sign in with Yahoo 178 | Upload to Vimeo 179 | Add to Chrome 180 | Get a new browser 181 | Made from HTML5 182 | Read It Later 183 | Read more on Scribd 184 | View on Wikipedia 185 | Tip with Flattr 186 | Follow me on Tumblr 187 | Subscribe to my Posterous 188 | Check in with Gowalla 189 | Check in with foursquare 190 | Write a review on Yelp 191 | Follow me on Soundcloud 192 | Read on Smashing Magazine 193 | Sign in with WordPress 194 | Sign in with IntenseDebate 195 | Sign in with OpenID 196 | Sign in with Gmail 197 | Sign in with Eventbrite 198 | Sign in with Eventasaurus 199 | Sign in with Meetup.com 200 | Sign in with AIM 201 | Follow me on Plancast 202 | Subscribe on YouTube 203 | Available on the Mac App Store 204 | View Creative Commons Licence 205 | Subscribe to RSS 206 | Follow me on Weibo 207 | Follow me on Plurk 208 | Follow me on Grooveshark 209 | Post on Blogger 210 | Sign in with Viadeo 211 | Subscribe to this Podcast 212 | View Portfolio on 500px 213 | Bitcoin accepted here 214 | View Portfolio on 99Designs 215 | Stumble! 216 | Download on iTunes 217 | Find me on Myspace 218 | Sign in with Windows Live 219 | Find Events with Eventful 220 | Influence with Klout 221 | Sign in with Xing 222 | Upload to Flickr 223 | Sign in with Del.icio.us 224 | Download from Google Play 225 | Reserve with OpenTable 226 | Digg this 227 | Share on Reddit 228 | Fund us on AngelList 229 | Sign-in with Instagram 230 | Call a phone 231 | Send a message 232 | Add to calendar 233 | Print this page 234 | Add to cart 235 | 236 | 237 | 238 |

Thanks to @guillermovs, @kamens, @vizualover, and @leaverou for code refinements and suggestions.

239 | 240 |

Massive thanks to @drewwilson for making the multi-purpose buttons possible with his incredible Pictos icons.

241 | 242 |

See code samples at zocial.smcllns.com — ask questions to @smcllns

243 | 244 | Tweet 245 | 246 | 247 | 263 | 264 | 265 | 266 | -------------------------------------------------------------------------------- /assets/themes/hooligan/bootstrap/css/bootstrap-responsive.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Responsive v2.0.4 3 | * 4 | * Copyright 2012 Twitter, Inc 5 | * Licensed under the Apache License v2.0 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Designed and built with all the love in the world @twitter by @mdo and @fat. 9 | */ 10 | 11 | .clearfix { 12 | *zoom: 1; 13 | } 14 | 15 | .clearfix:before, 16 | .clearfix:after { 17 | display: table; 18 | content: ""; 19 | } 20 | 21 | .clearfix:after { 22 | clear: both; 23 | } 24 | 25 | .hide-text { 26 | font: 0/0 a; 27 | color: transparent; 28 | text-shadow: none; 29 | background-color: transparent; 30 | border: 0; 31 | } 32 | 33 | .input-block-level { 34 | display: block; 35 | width: 100%; 36 | min-height: 28px; 37 | -webkit-box-sizing: border-box; 38 | -moz-box-sizing: border-box; 39 | -ms-box-sizing: border-box; 40 | box-sizing: border-box; 41 | } 42 | 43 | .hidden { 44 | display: none; 45 | visibility: hidden; 46 | } 47 | 48 | .visible-phone { 49 | display: none !important; 50 | } 51 | 52 | .visible-tablet { 53 | display: none !important; 54 | } 55 | 56 | .hidden-desktop { 57 | display: none !important; 58 | } 59 | 60 | @media (max-width: 767px) { 61 | .visible-phone { 62 | display: inherit !important; 63 | } 64 | .hidden-phone { 65 | display: none !important; 66 | } 67 | .hidden-desktop { 68 | display: inherit !important; 69 | } 70 | .visible-desktop { 71 | display: none !important; 72 | } 73 | } 74 | 75 | @media (min-width: 768px) and (max-width: 979px) { 76 | .visible-tablet { 77 | display: inherit !important; 78 | } 79 | .hidden-tablet { 80 | display: none !important; 81 | } 82 | .hidden-desktop { 83 | display: inherit !important; 84 | } 85 | .visible-desktop { 86 | display: none !important ; 87 | } 88 | } 89 | 90 | @media (max-width: 480px) { 91 | .nav-collapse { 92 | -webkit-transform: translate3d(0, 0, 0); 93 | } 94 | .page-header h1 small { 95 | display: block; 96 | line-height: 18px; 97 | } 98 | input[type="checkbox"], 99 | input[type="radio"] { 100 | border: 1px solid #ccc; 101 | } 102 | .form-horizontal .control-group > label { 103 | float: none; 104 | width: auto; 105 | padding-top: 0; 106 | text-align: left; 107 | } 108 | .form-horizontal .controls { 109 | margin-left: 0; 110 | } 111 | .form-horizontal .control-list { 112 | padding-top: 0; 113 | } 114 | .form-horizontal .form-actions { 115 | padding-right: 10px; 116 | padding-left: 10px; 117 | } 118 | .modal { 119 | position: absolute; 120 | top: 10px; 121 | right: 10px; 122 | left: 10px; 123 | width: auto; 124 | margin: 0; 125 | } 126 | .modal.fade.in { 127 | top: auto; 128 | } 129 | .modal-header .close { 130 | padding: 10px; 131 | margin: -10px; 132 | } 133 | .carousel-caption { 134 | position: static; 135 | } 136 | } 137 | 138 | @media (max-width: 767px) { 139 | body { 140 | padding-right: 20px; 141 | padding-left: 20px; 142 | } 143 | .navbar-fixed-top, 144 | .navbar-fixed-bottom { 145 | margin-right: -20px; 146 | margin-left: -20px; 147 | } 148 | .container-fluid { 149 | padding: 0; 150 | } 151 | .dl-horizontal dt { 152 | float: none; 153 | width: auto; 154 | clear: none; 155 | text-align: left; 156 | } 157 | .dl-horizontal dd { 158 | margin-left: 0; 159 | } 160 | .container { 161 | width: auto; 162 | } 163 | .row-fluid { 164 | width: 100%; 165 | } 166 | .row, 167 | .thumbnails { 168 | margin-left: 0; 169 | } 170 | [class*="span"], 171 | .row-fluid [class*="span"] { 172 | display: block; 173 | float: none; 174 | width: auto; 175 | margin-left: 0; 176 | } 177 | .input-large, 178 | .input-xlarge, 179 | .input-xxlarge, 180 | input[class*="span"], 181 | select[class*="span"], 182 | textarea[class*="span"], 183 | .uneditable-input { 184 | display: block; 185 | width: 100%; 186 | min-height: 28px; 187 | -webkit-box-sizing: border-box; 188 | -moz-box-sizing: border-box; 189 | -ms-box-sizing: border-box; 190 | box-sizing: border-box; 191 | } 192 | .input-prepend input, 193 | .input-append input, 194 | .input-prepend input[class*="span"], 195 | .input-append input[class*="span"] { 196 | display: inline-block; 197 | width: auto; 198 | } 199 | } 200 | 201 | @media (min-width: 768px) and (max-width: 979px) { 202 | .row { 203 | margin-left: -20px; 204 | *zoom: 1; 205 | } 206 | .row:before, 207 | .row:after { 208 | display: table; 209 | content: ""; 210 | } 211 | .row:after { 212 | clear: both; 213 | } 214 | [class*="span"] { 215 | float: left; 216 | margin-left: 20px; 217 | } 218 | .container, 219 | .navbar-fixed-top .container, 220 | .navbar-fixed-bottom .container { 221 | width: 724px; 222 | } 223 | .span12 { 224 | width: 724px; 225 | } 226 | .span11 { 227 | width: 662px; 228 | } 229 | .span10 { 230 | width: 600px; 231 | } 232 | .span9 { 233 | width: 538px; 234 | } 235 | .span8 { 236 | width: 476px; 237 | } 238 | .span7 { 239 | width: 414px; 240 | } 241 | .span6 { 242 | width: 352px; 243 | } 244 | .span5 { 245 | width: 290px; 246 | } 247 | .span4 { 248 | width: 228px; 249 | } 250 | .span3 { 251 | width: 166px; 252 | } 253 | .span2 { 254 | width: 104px; 255 | } 256 | .span1 { 257 | width: 42px; 258 | } 259 | .offset12 { 260 | margin-left: 764px; 261 | } 262 | .offset11 { 263 | margin-left: 702px; 264 | } 265 | .offset10 { 266 | margin-left: 640px; 267 | } 268 | .offset9 { 269 | margin-left: 578px; 270 | } 271 | .offset8 { 272 | margin-left: 516px; 273 | } 274 | .offset7 { 275 | margin-left: 454px; 276 | } 277 | .offset6 { 278 | margin-left: 392px; 279 | } 280 | .offset5 { 281 | margin-left: 330px; 282 | } 283 | .offset4 { 284 | margin-left: 268px; 285 | } 286 | .offset3 { 287 | margin-left: 206px; 288 | } 289 | .offset2 { 290 | margin-left: 144px; 291 | } 292 | .offset1 { 293 | margin-left: 82px; 294 | } 295 | .row-fluid { 296 | width: 100%; 297 | *zoom: 1; 298 | } 299 | .row-fluid:before, 300 | .row-fluid:after { 301 | display: table; 302 | content: ""; 303 | } 304 | .row-fluid:after { 305 | clear: both; 306 | } 307 | .row-fluid [class*="span"] { 308 | display: block; 309 | float: left; 310 | width: 100%; 311 | min-height: 28px; 312 | margin-left: 2.762430939%; 313 | *margin-left: 2.709239449638298%; 314 | -webkit-box-sizing: border-box; 315 | -moz-box-sizing: border-box; 316 | -ms-box-sizing: border-box; 317 | box-sizing: border-box; 318 | } 319 | .row-fluid [class*="span"]:first-child { 320 | margin-left: 0; 321 | } 322 | .row-fluid .span12 { 323 | width: 99.999999993%; 324 | *width: 99.9468085036383%; 325 | } 326 | .row-fluid .span11 { 327 | width: 91.436464082%; 328 | *width: 91.38327259263829%; 329 | } 330 | .row-fluid .span10 { 331 | width: 82.87292817100001%; 332 | *width: 82.8197366816383%; 333 | } 334 | .row-fluid .span9 { 335 | width: 74.30939226%; 336 | *width: 74.25620077063829%; 337 | } 338 | .row-fluid .span8 { 339 | width: 65.74585634900001%; 340 | *width: 65.6926648596383%; 341 | } 342 | .row-fluid .span7 { 343 | width: 57.182320438000005%; 344 | *width: 57.129128948638304%; 345 | } 346 | .row-fluid .span6 { 347 | width: 48.618784527%; 348 | *width: 48.5655930376383%; 349 | } 350 | .row-fluid .span5 { 351 | width: 40.055248616%; 352 | *width: 40.0020571266383%; 353 | } 354 | .row-fluid .span4 { 355 | width: 31.491712705%; 356 | *width: 31.4385212156383%; 357 | } 358 | .row-fluid .span3 { 359 | width: 22.928176794%; 360 | *width: 22.874985304638297%; 361 | } 362 | .row-fluid .span2 { 363 | width: 14.364640883%; 364 | *width: 14.311449393638298%; 365 | } 366 | .row-fluid .span1 { 367 | width: 5.801104972%; 368 | *width: 5.747913482638298%; 369 | } 370 | input, 371 | textarea, 372 | .uneditable-input { 373 | margin-left: 0; 374 | } 375 | input.span12, 376 | textarea.span12, 377 | .uneditable-input.span12 { 378 | width: 714px; 379 | } 380 | input.span11, 381 | textarea.span11, 382 | .uneditable-input.span11 { 383 | width: 652px; 384 | } 385 | input.span10, 386 | textarea.span10, 387 | .uneditable-input.span10 { 388 | width: 590px; 389 | } 390 | input.span9, 391 | textarea.span9, 392 | .uneditable-input.span9 { 393 | width: 528px; 394 | } 395 | input.span8, 396 | textarea.span8, 397 | .uneditable-input.span8 { 398 | width: 466px; 399 | } 400 | input.span7, 401 | textarea.span7, 402 | .uneditable-input.span7 { 403 | width: 404px; 404 | } 405 | input.span6, 406 | textarea.span6, 407 | .uneditable-input.span6 { 408 | width: 342px; 409 | } 410 | input.span5, 411 | textarea.span5, 412 | .uneditable-input.span5 { 413 | width: 280px; 414 | } 415 | input.span4, 416 | textarea.span4, 417 | .uneditable-input.span4 { 418 | width: 218px; 419 | } 420 | input.span3, 421 | textarea.span3, 422 | .uneditable-input.span3 { 423 | width: 156px; 424 | } 425 | input.span2, 426 | textarea.span2, 427 | .uneditable-input.span2 { 428 | width: 94px; 429 | } 430 | input.span1, 431 | textarea.span1, 432 | .uneditable-input.span1 { 433 | width: 32px; 434 | } 435 | } 436 | 437 | @media (min-width: 1200px) { 438 | .row { 439 | margin-left: -30px; 440 | *zoom: 1; 441 | } 442 | .row:before, 443 | .row:after { 444 | display: table; 445 | content: ""; 446 | } 447 | .row:after { 448 | clear: both; 449 | } 450 | [class*="span"] { 451 | float: left; 452 | margin-left: 30px; 453 | } 454 | .container, 455 | .navbar-fixed-top .container, 456 | .navbar-fixed-bottom .container { 457 | width: 1170px; 458 | } 459 | .span12 { 460 | width: 1170px; 461 | } 462 | .span11 { 463 | width: 1070px; 464 | } 465 | .span10 { 466 | width: 970px; 467 | } 468 | .span9 { 469 | width: 870px; 470 | } 471 | .span8 { 472 | width: 770px; 473 | } 474 | .span7 { 475 | width: 670px; 476 | } 477 | .span6 { 478 | width: 570px; 479 | } 480 | .span5 { 481 | width: 470px; 482 | } 483 | .span4 { 484 | width: 370px; 485 | } 486 | .span3 { 487 | width: 270px; 488 | } 489 | .span2 { 490 | width: 170px; 491 | } 492 | .span1 { 493 | width: 70px; 494 | } 495 | .offset12 { 496 | margin-left: 1230px; 497 | } 498 | .offset11 { 499 | margin-left: 1130px; 500 | } 501 | .offset10 { 502 | margin-left: 1030px; 503 | } 504 | .offset9 { 505 | margin-left: 930px; 506 | } 507 | .offset8 { 508 | margin-left: 830px; 509 | } 510 | .offset7 { 511 | margin-left: 730px; 512 | } 513 | .offset6 { 514 | margin-left: 630px; 515 | } 516 | .offset5 { 517 | margin-left: 530px; 518 | } 519 | .offset4 { 520 | margin-left: 430px; 521 | } 522 | .offset3 { 523 | margin-left: 330px; 524 | } 525 | .offset2 { 526 | margin-left: 230px; 527 | } 528 | .offset1 { 529 | margin-left: 130px; 530 | } 531 | .row-fluid { 532 | width: 100%; 533 | *zoom: 1; 534 | } 535 | .row-fluid:before, 536 | .row-fluid:after { 537 | display: table; 538 | content: ""; 539 | } 540 | .row-fluid:after { 541 | clear: both; 542 | } 543 | .row-fluid [class*="span"] { 544 | display: block; 545 | float: left; 546 | width: 100%; 547 | min-height: 28px; 548 | margin-left: 2.564102564%; 549 | *margin-left: 2.510911074638298%; 550 | -webkit-box-sizing: border-box; 551 | -moz-box-sizing: border-box; 552 | -ms-box-sizing: border-box; 553 | box-sizing: border-box; 554 | } 555 | .row-fluid [class*="span"]:first-child { 556 | margin-left: 0; 557 | } 558 | .row-fluid .span12 { 559 | width: 100%; 560 | *width: 99.94680851063829%; 561 | } 562 | .row-fluid .span11 { 563 | width: 91.45299145300001%; 564 | *width: 91.3997999636383%; 565 | } 566 | .row-fluid .span10 { 567 | width: 82.905982906%; 568 | *width: 82.8527914166383%; 569 | } 570 | .row-fluid .span9 { 571 | width: 74.358974359%; 572 | *width: 74.30578286963829%; 573 | } 574 | .row-fluid .span8 { 575 | width: 65.81196581200001%; 576 | *width: 65.7587743226383%; 577 | } 578 | .row-fluid .span7 { 579 | width: 57.264957265%; 580 | *width: 57.2117657756383%; 581 | } 582 | .row-fluid .span6 { 583 | width: 48.717948718%; 584 | *width: 48.6647572286383%; 585 | } 586 | .row-fluid .span5 { 587 | width: 40.170940171000005%; 588 | *width: 40.117748681638304%; 589 | } 590 | .row-fluid .span4 { 591 | width: 31.623931624%; 592 | *width: 31.5707401346383%; 593 | } 594 | .row-fluid .span3 { 595 | width: 23.076923077%; 596 | *width: 23.0237315876383%; 597 | } 598 | .row-fluid .span2 { 599 | width: 14.529914530000001%; 600 | *width: 14.4767230406383%; 601 | } 602 | .row-fluid .span1 { 603 | width: 5.982905983%; 604 | *width: 5.929714493638298%; 605 | } 606 | input, 607 | textarea, 608 | .uneditable-input { 609 | margin-left: 0; 610 | } 611 | input.span12, 612 | textarea.span12, 613 | .uneditable-input.span12 { 614 | width: 1160px; 615 | } 616 | input.span11, 617 | textarea.span11, 618 | .uneditable-input.span11 { 619 | width: 1060px; 620 | } 621 | input.span10, 622 | textarea.span10, 623 | .uneditable-input.span10 { 624 | width: 960px; 625 | } 626 | input.span9, 627 | textarea.span9, 628 | .uneditable-input.span9 { 629 | width: 860px; 630 | } 631 | input.span8, 632 | textarea.span8, 633 | .uneditable-input.span8 { 634 | width: 760px; 635 | } 636 | input.span7, 637 | textarea.span7, 638 | .uneditable-input.span7 { 639 | width: 660px; 640 | } 641 | input.span6, 642 | textarea.span6, 643 | .uneditable-input.span6 { 644 | width: 560px; 645 | } 646 | input.span5, 647 | textarea.span5, 648 | .uneditable-input.span5 { 649 | width: 460px; 650 | } 651 | input.span4, 652 | textarea.span4, 653 | .uneditable-input.span4 { 654 | width: 360px; 655 | } 656 | input.span3, 657 | textarea.span3, 658 | .uneditable-input.span3 { 659 | width: 260px; 660 | } 661 | input.span2, 662 | textarea.span2, 663 | .uneditable-input.span2 { 664 | width: 160px; 665 | } 666 | input.span1, 667 | textarea.span1, 668 | .uneditable-input.span1 { 669 | width: 60px; 670 | } 671 | .thumbnails { 672 | margin-left: -30px; 673 | } 674 | .thumbnails > li { 675 | margin-left: 30px; 676 | } 677 | .row-fluid .thumbnails { 678 | margin-left: 0; 679 | } 680 | } 681 | 682 | @media (max-width: 979px) { 683 | body { 684 | padding-top: 0; 685 | } 686 | .navbar-fixed-top, 687 | .navbar-fixed-bottom { 688 | position: static; 689 | } 690 | .navbar-fixed-top { 691 | margin-bottom: 18px; 692 | } 693 | .navbar-fixed-bottom { 694 | margin-top: 18px; 695 | } 696 | .navbar-fixed-top .navbar-inner, 697 | .navbar-fixed-bottom .navbar-inner { 698 | padding: 5px; 699 | } 700 | .navbar .container { 701 | width: auto; 702 | padding: 0; 703 | } 704 | .navbar .brand { 705 | padding-right: 10px; 706 | padding-left: 10px; 707 | margin: 0 0 0 -5px; 708 | } 709 | .nav-collapse { 710 | clear: both; 711 | } 712 | .nav-collapse .nav { 713 | float: none; 714 | margin: 0 0 9px; 715 | } 716 | .nav-collapse .nav > li { 717 | float: none; 718 | } 719 | .nav-collapse .nav > li > a { 720 | margin-bottom: 2px; 721 | } 722 | .nav-collapse .nav > .divider-vertical { 723 | display: none; 724 | } 725 | .nav-collapse .nav .nav-header { 726 | color: #999999; 727 | text-shadow: none; 728 | } 729 | .nav-collapse .nav > li > a, 730 | .nav-collapse .dropdown-menu a { 731 | padding: 6px 15px; 732 | font-weight: bold; 733 | color: #999999; 734 | -webkit-border-radius: 3px; 735 | -moz-border-radius: 3px; 736 | border-radius: 3px; 737 | } 738 | .nav-collapse .btn { 739 | padding: 4px 10px 4px; 740 | font-weight: normal; 741 | -webkit-border-radius: 4px; 742 | -moz-border-radius: 4px; 743 | border-radius: 4px; 744 | } 745 | .nav-collapse .dropdown-menu li + li a { 746 | margin-bottom: 2px; 747 | } 748 | .nav-collapse .nav > li > a:hover, 749 | .nav-collapse .dropdown-menu a:hover { 750 | background-color: #222222; 751 | } 752 | .nav-collapse.in .btn-group { 753 | padding: 0; 754 | margin-top: 5px; 755 | } 756 | .nav-collapse .dropdown-menu { 757 | position: static; 758 | top: auto; 759 | left: auto; 760 | display: block; 761 | float: none; 762 | max-width: none; 763 | padding: 0; 764 | margin: 0 15px; 765 | background-color: transparent; 766 | border: none; 767 | -webkit-border-radius: 0; 768 | -moz-border-radius: 0; 769 | border-radius: 0; 770 | -webkit-box-shadow: none; 771 | -moz-box-shadow: none; 772 | box-shadow: none; 773 | } 774 | .nav-collapse .dropdown-menu:before, 775 | .nav-collapse .dropdown-menu:after { 776 | display: none; 777 | } 778 | .nav-collapse .dropdown-menu .divider { 779 | display: none; 780 | } 781 | .nav-collapse .navbar-form, 782 | .nav-collapse .navbar-search { 783 | float: none; 784 | padding: 9px 15px; 785 | margin: 9px 0; 786 | border-top: 1px solid #222222; 787 | border-bottom: 1px solid #222222; 788 | -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 789 | -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 790 | box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); 791 | } 792 | .navbar .nav-collapse .nav.pull-right { 793 | float: none; 794 | margin-left: 0; 795 | } 796 | .nav-collapse, 797 | .nav-collapse.collapse { 798 | height: 0; 799 | overflow: hidden; 800 | } 801 | .navbar .btn-navbar { 802 | display: block; 803 | } 804 | .navbar-static .navbar-inner { 805 | padding-right: 10px; 806 | padding-left: 10px; 807 | } 808 | } 809 | 810 | @media (min-width: 980px) { 811 | .nav-collapse.collapse { 812 | height: auto !important; 813 | overflow: visible !important; 814 | } 815 | } 816 | -------------------------------------------------------------------------------- /assets/themes/hooligan/css-social-buttons/css/zocial.css: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | /*! 4 | Code written by Sam Collins (@smcllns) of www.eventasaur.us 5 | You are free to use this work commercially 6 | You are free to extend this work without permissions from the author (just do so tastefully eh?) 7 | Enjoy 8 | */ 9 | 10 | /* Reference icons from font-files */ 11 | 12 | @font-face { 13 | font-family: 'zocial'; 14 | font-style: normal; 15 | font-weight: normal; 16 | src: url('zocial-regular-webfont.eot'); 17 | src: url('zocial-regular-webfont.eot?#iefix') format('embedded-opentype'), 18 | url('zocial-regular-webfont.woff') format('woff'), 19 | url('zocial-regular-webfont.ttf') format('truetype'), 20 | url('zocial-regular-webfont.svg#ZocialRegular') format('svg'); 21 | unicode-range: U+0-U+10FFFF; 22 | } 23 | 24 | /* Button structure */ 25 | 26 | .zocial, 27 | a.zocial { 28 | border: 1px solid #777; 29 | border-color: rgba(0,0,0,0.2); 30 | border-bottom-color: #333; 31 | border-bottom-color: rgba(0,0,0,0.4); 32 | color: #fff; 33 | -moz-box-shadow: inset 0 0.08em 0 rgba(255,255,255,0.4), inset 0 0 0.1em rgba(255,255,255,0.9); 34 | -webkit-box-shadow: inset 0 0.08em 0 rgba(255,255,255,0.4), inset 0 0 0.1em rgba(255,255,255,0.9); 35 | box-shadow: inset 0 0.08em 0 rgba(255,255,255,0.4), inset 0 0 0.1em rgba(255,255,255,0.9); 36 | cursor: pointer; 37 | display: inline-block; 38 | font: bold 100%/2.1 "Lucida Grande", Tahoma, sans-serif; 39 | text-align: center; 40 | text-decoration: none; 41 | text-shadow: 0 1px 0 rgba(0,0,0,0.5); 42 | white-space: nowrap; 43 | 44 | -moz-user-select: none; 45 | -webkit-user-select: none; 46 | user-select: none; 47 | 48 | position: relative; 49 | 50 | -moz-border-radius: .3em; 51 | -webkit-border-radius: .3em; 52 | border-radius: .3em; 53 | } 54 | 55 | .zocial:before { 56 | content: ""; 57 | border-right: 0.075em solid rgba(0,0,0,0.1); 58 | float: left; 59 | font: 120%/1.65 zocial; 60 | font-style: normal; 61 | font-weight: normal; 62 | margin: 0 0.5em 0 0; 63 | padding: 0 0.5em; 64 | text-align: center; 65 | text-decoration: none; 66 | text-transform: none; 67 | 68 | -moz-box-shadow: 0.075em 0 0 rgba(255,255,255,0.25); 69 | -webkit-box-shadow: 0.075em 0 0 rgba(255,255,255,0.25); 70 | box-shadow: 0.075em 0 0 rgba(255,255,255,0.25); 71 | 72 | -webkit-font-smoothing: antialiased; 73 | } 74 | 75 | .zocial:active { 76 | outline: none; /* outline is visible on :focus */ 77 | } 78 | 79 | /* Buttons can be displayed as standalone icons by adding a class of "icon" */ 80 | 81 | .zocial.icon { 82 | overflow: hidden; 83 | max-width: 2.4em; 84 | padding-left: 0; 85 | padding-right: 0; 86 | max-height: 2.15em; 87 | white-space: nowrap; 88 | } 89 | .zocial.icon:before { 90 | padding: 0; 91 | width: 2em; 92 | height: 2em; 93 | 94 | box-shadow: none; 95 | border: none; 96 | } 97 | 98 | /* Gradients */ 99 | 100 | .zocial { 101 | background-image: -moz-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1)); 102 | background-image: -ms-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1)); 103 | background-image: -o-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1)); 104 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.1)), color-stop(49%, rgba(255,255,255,.05)), color-stop(51%, rgba(0,0,0,.05)), to(rgba(0,0,0,.1))); 105 | background-image: -webkit-linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1)); 106 | background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.05) 49%, rgba(0,0,0,.05) 51%, rgba(0,0,0,.1)); 107 | } 108 | 109 | .zocial:hover, .zocial:focus { 110 | background-image: -moz-linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15)); 111 | background-image: -ms-linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15)); 112 | background-image: -o-linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15)); 113 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.15)), color-stop(49%, rgba(255,255,255,.15)), color-stop(51%, rgba(0,0,0,.1)), to(rgba(0,0,0,.15))); 114 | background-image: -webkit-linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15)); 115 | background-image: linear-gradient(rgba(255,255,255,.15) 49%, rgba(0,0,0,.1) 51%, rgba(0,0,0,.15)); 116 | } 117 | 118 | .zocial:active { 119 | background-image: -moz-linear-gradient(bottom, rgba(255,255,255,.1), rgba(255,255,255,0) 30%, transparent 50%, rgba(0,0,0,.1)); 120 | background-image: -ms-linear-gradient(bottom, rgba(255,255,255,.1), rgba(255,255,255,0) 30%, transparent 50%, rgba(0,0,0,.1)); 121 | background-image: -o-linear-gradient(bottom, rgba(255,255,255,.1), rgba(255,255,255,0) 30%, transparent 50%, rgba(0,0,0,.1)); 122 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,.1)), color-stop(30%, rgba(255,255,255,0)), color-stop(50%, transparent), to(rgba(0,0,0,.1))); 123 | background-image: -webkit-linear-gradient(bottom, rgba(255,255,255,.1), rgba(255,255,255,0) 30%, transparent 50%, rgba(0,0,0,.1)); 124 | background-image: linear-gradient(bottom, rgba(255,255,255,.1), rgba(255,255,255,0) 30%, transparent 50%, rgba(0,0,0,.1)); 125 | } 126 | 127 | /* Adjustments for light background buttons */ 128 | 129 | .zocial.bitcoin, 130 | .zocial.cloudapp, 131 | .zocial.dropbox, 132 | .zocial.email, 133 | .zocial.eventful, 134 | .zocial.github, 135 | .zocial.gmail, 136 | .zocial.instapaper, 137 | .zocial.itunes, 138 | .zocial.ninetyninedesigns, 139 | .zocial.openid, 140 | .zocial.plancast, 141 | .zocial.posterous, 142 | .zocial.reddit, 143 | .zocial.secondary, 144 | .zocial.viadeo, 145 | .zocial.weibo, 146 | .zocial.wikipedia { 147 | border: 1px solid #aaa; 148 | border-color: rgba(0,0,0,0.3); 149 | border-bottom-color: #777; 150 | border-bottom-color: rgba(0,0,0,0.5); 151 | -moz-box-shadow: inset 0 0.08em 0 rgba(255,255,255,0.7), inset 0 0 0.08em rgba(255,255,255,0.5); 152 | -webkit-box-shadow: inset 0 0.08em 0 rgba(255,255,255,0.7), inset 0 0 0.08em rgba(255,255,255,0.5); 153 | box-shadow: inset 0 0.08em 0 rgba(255,255,255,0.7), inset 0 0 0.08em rgba(255,255,255,0.5); 154 | text-shadow: 0 1px 0 rgba(255,255,255,0.8); 155 | } 156 | 157 | /* :hover adjustments for light background buttons */ 158 | 159 | .zocial.bitcoin:focus, 160 | .zocial.bitcoin:hover, 161 | .zocial.dropbox:focus, 162 | .zocial.dropbox:hover, 163 | .zocial.email:focus, 164 | .zocial.email:hover, 165 | .zocial.eventful:focus, 166 | .zocial.eventful:hover, 167 | .zocial.github:focus, 168 | .zocial.github:hover, 169 | .zocial.gmail:focus, 170 | .zocial.gmail:hover, 171 | .zocial.instapaper:focus, 172 | .zocial.instapaper:hover, 173 | .zocial.itunes:focus, 174 | .zocial.itunes:hover, 175 | .zocial.ninetyninedesigns:focus, 176 | .zocial.ninetyninedesigns:hover, 177 | .zocial.openid:focus, 178 | .zocial.openid:hover, 179 | .zocial.plancast:focus, 180 | .zocial.plancast:hover, 181 | .zocial.posterous:focus, 182 | .zocial.posterous:hover, 183 | .zocial.reddit:focus, 184 | .zocial.reddit:hover, 185 | .zocial.secondary:focus, 186 | .zocial.secondary:hover, 187 | .zocial.twitter:focus, 188 | .zocial.viadeo:focus, 189 | .zocial.viadeo:hover, 190 | .zocial.weibo:focus, 191 | .zocial.weibo:hover, 192 | .zocial.wikipedia:focus, 193 | .zocial.wikipedia:hover { 194 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0.5)), color-stop(49%, rgba(255,255,255,0.2)), color-stop(51%, rgba(0,0,0,0.05)), to(rgba(0,0,0,0.15))); 195 | background-image: -moz-linear-gradient(top, rgba(255,255,255,0.5), rgba(255,255,255,0.2) 49%, rgba(0,0,0,0.05) 51%, rgba(0,0,0,0.15)); 196 | background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.5), rgba(255,255,255,0.2) 49%, rgba(0,0,0,0.05) 51%, rgba(0,0,0,0.15)); 197 | background-image: -o-linear-gradient(top, rgba(255,255,255,0.5), rgba(255,255,255,0.2) 49%, rgba(0,0,0,0.05) 51%, rgba(0,0,0,0.15)); 198 | background-image: -ms-linear-gradient(top, rgba(255,255,255,0.5), rgba(255,255,255,0.2) 49%, rgba(0,0,0,0.05) 51%, rgba(0,0,0,0.15)); 199 | background-image: linear-gradient(top, rgba(255,255,255,0.5), rgba(255,255,255,0.2) 49%, rgba(0,0,0,0.05) 51%, rgba(0,0,0,0.15)); 200 | } 201 | 202 | /* :active adjustments for light background buttons */ 203 | 204 | .zocial.bitcoin:active, 205 | .zocial.dropbox:active, 206 | .zocial.email:active, 207 | .zocial.eventful:active, 208 | .zocial.github:active, 209 | .zocial.gmail:active, 210 | .zocial.instapaper:active, 211 | .zocial.itunes:active, 212 | .zocial.ninetyninedesigns:active, 213 | .zocial.openid:active, 214 | .zocial.plancast:active, 215 | .zocial.posterous:active, 216 | .zocial.reddit:active, 217 | .zocial.secondary:active, 218 | .zocial.viadeo:active, 219 | .zocial.weibo:active, 220 | .zocial.wikipedia:active { 221 | background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255,255,255,0)), color-stop(30%, rgba(255,255,255,0)), color-stop(50%, rgba(0,0,0,0)), to(rgba(0,0,0,0.1))); 222 | background-image: -moz-linear-gradient(bottom, rgba(255,255,255,0), rgba(255,255,255,0) 30%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.1)); 223 | background-image: -webkit-linear-gradient(bottom, rgba(255,255,255,0), rgba(255,255,255,0) 30%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.1)); 224 | background-image: -o-linear-gradient(bottom, rgba(255,255,255,0), rgba(255,255,255,0) 30%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.1)); 225 | background-image: -ms-linear-gradient(bottom, rgba(255,255,255,0), rgba(255,255,255,0) 30%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.1)); 226 | background-image: linear-gradient(bottom, rgba(255,255,255,0), rgba(255,255,255,0) 30%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.1)); 227 | } 228 | 229 | /* Button icon and color */ 230 | /* Icon characters are stored in unicode private area */ 231 | .zocial.amazon:before {content: "\E040";} 232 | .zocial.android:before {content: "\E005";} 233 | .zocial.angellist:before {content: "\E06C";} 234 | .zocial.aol:before {content: "\E001";} 235 | .zocial.appstore:before {content: "\E020";} 236 | .zocial.bitcoin:before {content: "\E011"; color: #f7931a;} 237 | .zocial.blogger:before {content: "\E021";} 238 | .zocial.call:before {content: "\E016";} 239 | .zocial.cal:before {content: "\E00D";} 240 | .zocial.cart:before {content: "\E06A";} 241 | .zocial.chrome:before {content: "\E03A";} 242 | .zocial.cloudapp:before {content: "\E042";} 243 | .zocial.creativecommons:before {content: "\E022";} 244 | .zocial.delicious:before {content: "\E002";} 245 | .zocial.digg:before {content: "\E01A";} 246 | .zocial.disqus:before {content: "\E030";} 247 | .zocial.dribbble:before {content: "\E023";} 248 | .zocial.dropbox:before {content: "\E043"; color: #1f75cc;} 249 | .zocial.email:before {content: "\E03C"; color: #312c2a;} 250 | .zocial.eventasaurus:before {content: "\E055"; color: #9de428;} 251 | .zocial.eventbrite:before {content: "\E05B";} 252 | .zocial.eventful:before {content: "\E006"; color: #0066CC;} 253 | .zocial.evernote:before {content: "\E024";} 254 | .zocial.facebook:before {content: "\E045";} 255 | .zocial.fivehundredpx:before {content: "\E00F"; color: #29b6ff;} 256 | .zocial.flattr:before {content: "\E004";} 257 | .zocial.flickr:before {content: "\E025";} 258 | .zocial.forrst:before {content: "\E019"; color: #50894f;} 259 | .zocial.foursquare:before {content: "\E013";} 260 | .zocial.github:before {content: "\E046";} 261 | .zocial.gmail:before {content: "\E04C"; color: #f00;} 262 | .zocial.google:before {content: "\E026";} 263 | .zocial.googleplay:before {content: "\E05E";} 264 | .zocial.googleplus:before {content: "\E00A";} 265 | .zocial.gowalla:before {content: "\E01F";} 266 | .zocial.grooveshark:before {content: "\E017";} 267 | .zocial.guest:before {content: "\E01E";} 268 | .zocial.html5:before {content: "\E014";} 269 | .zocial.ie:before {content: "\E015";} 270 | .zocial.instagram:before {content: "\E06D";} 271 | .zocial.instapaper:before {content: "\E028";} 272 | .zocial.intensedebate:before {content: "\E05A";} 273 | .zocial.itunes:before {content: "\E048"; color: #1a6dd2;} 274 | .zocial.klout:before {content: "\E02A"; } 275 | .zocial.lanyrd:before {content: "\E00C";} 276 | .zocial.lastfm:before {content: "\E04B";} 277 | .zocial.linkedin:before {content: "\E02B";} 278 | .zocial.macstore:before {content: "\E03D";} 279 | .zocial.meetup:before {content: "\E02C";} 280 | .zocial.myspace:before {content: "\E03E";} 281 | .zocial.ninetyninedesigns:before {content: "\E018"; color: #f50;} 282 | .zocial.openid:before {content: "\E04E"; color: #ff921d;} 283 | .zocial.opentable:before {content: "\E05F";} 284 | .zocial.paypal:before {content: "\E003";} 285 | .zocial.pinboard:before {content: "\E04D";} 286 | .zocial.pinterest:before {content: "\E010";} 287 | .zocial.plancast:before {content: "\E02F";} 288 | .zocial.plurk:before {content: "\E049";} 289 | .zocial.podcast:before {content: "\E03F";} 290 | .zocial.posterous:before {content: "\E05D";} 291 | .zocial.print:before {content: "\E06B";} 292 | .zocial.quora:before {content: "\E050";} 293 | .zocial.reddit:before {content: "\E01D"; color: red;} 294 | .zocial.rss:before {content: "\E031";} 295 | .zocial.scribd:before {content: "\E05C"; color: #00d5ea;} 296 | .zocial.skype:before {content: "\E032";} 297 | .zocial.smashing:before {content: "\E009";} 298 | .zocial.songkick:before {content: "\E04A";} 299 | .zocial.soundcloud:before {content: "\E052";} 300 | .zocial.spotify:before {content: "\E01C";} 301 | .zocial.stumbleupon:before {content: "\E00E";} 302 | .zocial.tumblr:before {content: "\E053";} 303 | .zocial.twitter:before {content: "\E033";} 304 | .zocial.viadeo:before {content: "\E027"; color: #f59b20;} 305 | .zocial.vimeo:before {content: "\E035";} 306 | .zocial.weibo:before {content: "\E029"; color: #e6162d;} 307 | .zocial.wikipedia:before {content: "\E00B";} 308 | .zocial.windows:before {content: "\E036";} 309 | .zocial.xing:before {content: "\E037"} 310 | .zocial.wordpress:before {content: "\E056";} 311 | .zocial.yahoo:before {content: "\E038";} 312 | .zocial.yelp:before {content: "\E058";} 313 | .zocial.youtube:before {content: "\E034";} 314 | 315 | /* Button background and text color */ 316 | 317 | .zocial.amazon {background-color: #ffad1d; color: #030037; text-shadow: 0 1px 0 rgba(255,255,255,0.5);} 318 | .zocial.android {background-color: #a4c639;} 319 | .zocial.angellist {background-color: #000;} 320 | .zocial.aol {background-color: #f00;} 321 | .zocial.appstore {background-color: #000;} 322 | .zocial.bitcoin {background-color: #efefef; color: #4d4d4d;} 323 | .zocial.blogger {background-color: #ee5a22;} 324 | .zocial.call {background-color: #008000;} 325 | .zocial.cal {background-color: #d63538;} 326 | .zocial.cart {background-color: #333;} 327 | .zocial.chrome {background-color: #006cd4;} 328 | .zocial.cloudapp {background-color: #fff; color: #312c2a;} 329 | .zocial.creativecommons {background-color: #000;} 330 | .zocial.delicious {background-color: #3271cb;} 331 | .zocial.digg {background-color: #164673;} 332 | .zocial.disqus {background-color: #5d8aad;} 333 | .zocial.dribbble {background-color: #ea4c89;} 334 | .zocial.dropbox {background-color: #fff; color: #312c2a;} 335 | .zocial.email {background-color: #f0f0eb; color: #312c2a;} 336 | .zocial.eventasaurus {background-color: #192931; color: #fff;} 337 | .zocial.eventbrite {background-color: #ff5616;} 338 | .zocial.eventful {background-color: #fff; color: #47ab15;} 339 | .zocial.evernote {background-color: #6bb130; color: #fff;} 340 | .zocial.facebook {background-color: #4863ae;} 341 | .zocial.fivehundredpx {background-color: #333;} 342 | .zocial.flattr {background-color: #8aba42;} 343 | .zocial.flickr {background-color: #ff0084;} 344 | .zocial.forrst {background-color: #1e360d;} 345 | .zocial.foursquare {background-color: #44a8e0;} 346 | .zocial.github {background-color: #fbfbfb; color: #050505;} 347 | .zocial.gmail {background-color: #efefef; color: #222;} 348 | .zocial.google {background-color: #4e6cf7;} 349 | .zocial.googleplay {background-color: #000;} 350 | .zocial.googleplus {background-color: #dd4b39;} 351 | .zocial.gowalla {background-color: #ff720a;} 352 | .zocial.grooveshark {background-color: #111; color:#eee;} 353 | .zocial.guest {background-color: #1b4d6d;} 354 | .zocial.html5 {background-color: #ff3617;} 355 | .zocial.ie {background-color: #00a1d9;} 356 | .zocial.instapaper {background-color: #eee; color: #222;} 357 | .zocial.instagram {background-color: #3f729b;} 358 | .zocial.intensedebate {background-color: #0099e1;} 359 | .zocial.klout {background-color: #e34a25;} 360 | .zocial.itunes {background-color: #efefeb; color: #312c2a;} 361 | .zocial.lanyrd {background-color: #2e6ac2;} 362 | .zocial.lastfm {background-color: #dc1a23;} 363 | .zocial.linkedin {background-color: #0083a8;} 364 | .zocial.macstore {background-color: #007dcb} 365 | .zocial.meetup {background-color: #ff0026;} 366 | .zocial.myspace {background-color: #000;} 367 | .zocial.ninetyninedesigns {background-color: #fff; color: #072243;} 368 | .zocial.openid {background-color: #f5f5f5; color: #333;} 369 | .zocial.opentable {background-color: #990000;} 370 | .zocial.paypal {background-color: #fff; color: #32689a; text-shadow: 0 1px 0 rgba(255,255,255,0.5);} 371 | .zocial.pinboard {background-color: blue;} 372 | .zocial.pinterest {background-color: #c91618;} 373 | .zocial.plancast {background-color: #e7ebed; color: #333;} 374 | .zocial.plurk {background-color: #cf682f;} 375 | .zocial.podcast {background-color: #9365ce;} 376 | .zocial.posterous {background-color: #ffd959; color: #bc7134;} 377 | .zocial.print {background-color: #f0f0eb; color: #222; text-shadow: 0 1px 0 rgba(255,255,255,0.8);} 378 | .zocial.quora {background-color: #a82400;} 379 | .zocial.reddit {background-color: #fff; color: #222;} 380 | .zocial.rss {background-color: #ff7f25;} 381 | .zocial.scribd {background-color: #231c1a;} 382 | .zocial.skype {background-color: #00a2ed;} 383 | .zocial.smashing {background-color: #ff4f27;} 384 | .zocial.songkick {background-color: #ff0050;} 385 | .zocial.soundcloud {background-color: #ff4500;} 386 | .zocial.spotify {background-color: #60af00;} 387 | .zocial.stumbleupon {background-color: #eb4924;} 388 | .zocial.tumblr {background-color: #374a61;} 389 | .zocial.twitter {background-color: #46c0fb;} 390 | .zocial.viadeo {background-color: #fff; color: #000;} 391 | .zocial.vimeo {background-color: #00a2cd;} 392 | .zocial.weibo {background-color: #faf6f1; color: #000;} 393 | .zocial.wikipedia {background-color: #fff; color: #000;} 394 | .zocial.windows {background-color: #0052a4; color: #fff;} 395 | .zocial.wordpress {background-color: #464646;} 396 | .zocial.xing {background-color: #0A5D5E;} 397 | .zocial.yahoo {background-color: #a200c2;} 398 | .zocial.yelp {background-color: #e60010;} 399 | .zocial.youtube {background-color: #f00;} 400 | 401 | /* 402 | The Miscellaneous Buttons 403 | These button have no icons and can be general purpose buttons while ensuring consistent button style 404 | Credit to @guillermovs for suggesting 405 | */ 406 | 407 | .zocial.primary, .zocial.secondary {margin: 0.1em 0; padding: 0 1em;} 408 | .zocial.primary:before, .zocial.secondary:before {display: none;} 409 | .zocial.primary {background-color: #333;} 410 | .zocial.secondary {background-color: #f0f0eb; color: #222; text-shadow: 0 1px 0 rgba(255,255,255,0.8);} 411 | 412 | /* Any browser-specific adjustments */ 413 | 414 | button:-moz-focus-inner { 415 | border: 0; 416 | padding: 0; 417 | } 418 | 419 | 420 | -------------------------------------------------------------------------------- /assets/themes/hooligan/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap.js by @fat & @mdo 3 | * Copyright 2012 Twitter, Inc. 4 | * http://www.apache.org/licenses/LICENSE-2.0.txt 5 | */ 6 | !function(a){a(function(){"use strict",a.support.transition=function(){var a=function(){var a=document.createElement("bootstrap"),b={WebkitTransition:"webkitTransitionEnd",MozTransition:"transitionend",OTransition:"oTransitionEnd",msTransition:"MSTransitionEnd",transition:"transitionend"},c;for(c in b)if(a.style[c]!==undefined)return b[c]}();return a&&{end:a}}()})}(window.jQuery),!function(a){"use strict";var b='[data-dismiss="alert"]',c=function(c){a(c).on("click",b,this.close)};c.prototype.close=function(b){function f(){e.trigger("closed").remove()}var c=a(this),d=c.attr("data-target"),e;d||(d=c.attr("href"),d=d&&d.replace(/.*(?=#[^\s]*$)/,"")),e=a(d),b&&b.preventDefault(),e.length||(e=c.hasClass("alert")?c:c.parent()),e.trigger(b=a.Event("close"));if(b.isDefaultPrevented())return;e.removeClass("in"),a.support.transition&&e.hasClass("fade")?e.on(a.support.transition.end,f):f()},a.fn.alert=function(b){return this.each(function(){var d=a(this),e=d.data("alert");e||d.data("alert",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.alert.Constructor=c,a(function(){a("body").on("click.alert.data-api",b,c.prototype.close)})}(window.jQuery),!function(a){"use strict";var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.button.defaults,c)};b.prototype.setState=function(a){var b="disabled",c=this.$element,d=c.data(),e=c.is("input")?"val":"html";a+="Text",d.resetText||c.data("resetText",c[e]()),c[e](d[a]||this.options[a]),setTimeout(function(){a=="loadingText"?c.addClass(b).attr(b,b):c.removeClass(b).removeAttr(b)},0)},b.prototype.toggle=function(){var a=this.$element.parent('[data-toggle="buttons-radio"]');a&&a.find(".active").removeClass("active"),this.$element.toggleClass("active")},a.fn.button=function(c){return this.each(function(){var d=a(this),e=d.data("button"),f=typeof c=="object"&&c;e||d.data("button",e=new b(this,f)),c=="toggle"?e.toggle():c&&e.setState(c)})},a.fn.button.defaults={loadingText:"loading..."},a.fn.button.Constructor=b,a(function(){a("body").on("click.button.data-api","[data-toggle^=button]",function(b){var c=a(b.target);c.hasClass("btn")||(c=c.closest(".btn")),c.button("toggle")})})}(window.jQuery),!function(a){"use strict";var b=function(b,c){this.$element=a(b),this.options=c,this.options.slide&&this.slide(this.options.slide),this.options.pause=="hover"&&this.$element.on("mouseenter",a.proxy(this.pause,this)).on("mouseleave",a.proxy(this.cycle,this))};b.prototype={cycle:function(b){return b||(this.paused=!1),this.options.interval&&!this.paused&&(this.interval=setInterval(a.proxy(this.next,this),this.options.interval)),this},to:function(b){var c=this.$element.find(".active"),d=c.parent().children(),e=d.index(c),f=this;if(b>d.length-1||b<0)return;return this.sliding?this.$element.one("slid",function(){f.to(b)}):e==b?this.pause().cycle():this.slide(b>e?"next":"prev",a(d[b]))},pause:function(a){return a||(this.paused=!0),clearInterval(this.interval),this.interval=null,this},next:function(){if(this.sliding)return;return this.slide("next")},prev:function(){if(this.sliding)return;return this.slide("prev")},slide:function(b,c){var d=this.$element.find(".active"),e=c||d[b](),f=this.interval,g=b=="next"?"left":"right",h=b=="next"?"first":"last",i=this,j=a.Event("slide");this.sliding=!0,f&&this.pause(),e=e.length?e:this.$element.find(".item")[h]();if(e.hasClass("active"))return;if(a.support.transition&&this.$element.hasClass("slide")){this.$element.trigger(j);if(j.isDefaultPrevented())return;e.addClass(b),e[0].offsetWidth,d.addClass(g),e.addClass(g),this.$element.one(a.support.transition.end,function(){e.removeClass([b,g].join(" ")).addClass("active"),d.removeClass(["active",g].join(" ")),i.sliding=!1,setTimeout(function(){i.$element.trigger("slid")},0)})}else{this.$element.trigger(j);if(j.isDefaultPrevented())return;d.removeClass("active"),e.addClass("active"),this.sliding=!1,this.$element.trigger("slid")}return f&&this.cycle(),this}},a.fn.carousel=function(c){return this.each(function(){var d=a(this),e=d.data("carousel"),f=a.extend({},a.fn.carousel.defaults,typeof c=="object"&&c);e||d.data("carousel",e=new b(this,f)),typeof c=="number"?e.to(c):typeof c=="string"||(c=f.slide)?e[c]():f.interval&&e.cycle()})},a.fn.carousel.defaults={interval:5e3,pause:"hover"},a.fn.carousel.Constructor=b,a(function(){a("body").on("click.carousel.data-api","[data-slide]",function(b){var c=a(this),d,e=a(c.attr("data-target")||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,"")),f=!e.data("modal")&&a.extend({},e.data(),c.data());e.carousel(f),b.preventDefault()})})}(window.jQuery),!function(a){"use strict";var b=function(b,c){this.$element=a(b),this.options=a.extend({},a.fn.collapse.defaults,c),this.options.parent&&(this.$parent=a(this.options.parent)),this.options.toggle&&this.toggle()};b.prototype={constructor:b,dimension:function(){var a=this.$element.hasClass("width");return a?"width":"height"},show:function(){var b,c,d,e;if(this.transitioning)return;b=this.dimension(),c=a.camelCase(["scroll",b].join("-")),d=this.$parent&&this.$parent.find("> .accordion-group > .in");if(d&&d.length){e=d.data("collapse");if(e&&e.transitioning)return;d.collapse("hide"),e||d.data("collapse",null)}this.$element[b](0),this.transition("addClass",a.Event("show"),"shown"),this.$element[b](this.$element[0][c])},hide:function(){var b;if(this.transitioning)return;b=this.dimension(),this.reset(this.$element[b]()),this.transition("removeClass",a.Event("hide"),"hidden"),this.$element[b](0)},reset:function(a){var b=this.dimension();return this.$element.removeClass("collapse")[b](a||"auto")[0].offsetWidth,this.$element[a!==null?"addClass":"removeClass"]("collapse"),this},transition:function(b,c,d){var e=this,f=function(){c.type=="show"&&e.reset(),e.transitioning=0,e.$element.trigger(d)};this.$element.trigger(c);if(c.isDefaultPrevented())return;this.transitioning=1,this.$element[b]("in"),a.support.transition&&this.$element.hasClass("collapse")?this.$element.one(a.support.transition.end,f):f()},toggle:function(){this[this.$element.hasClass("in")?"hide":"show"]()}},a.fn.collapse=function(c){return this.each(function(){var d=a(this),e=d.data("collapse"),f=typeof c=="object"&&c;e||d.data("collapse",e=new b(this,f)),typeof c=="string"&&e[c]()})},a.fn.collapse.defaults={toggle:!0},a.fn.collapse.Constructor=b,a(function(){a("body").on("click.collapse.data-api","[data-toggle=collapse]",function(b){var c=a(this),d,e=c.attr("data-target")||b.preventDefault()||(d=c.attr("href"))&&d.replace(/.*(?=#[^\s]+$)/,""),f=a(e).data("collapse")?"toggle":c.data();a(e).collapse(f)})})}(window.jQuery),!function(a){function d(){a(b).parent().removeClass("open")}"use strict";var b='[data-toggle="dropdown"]',c=function(b){var c=a(b).on("click.dropdown.data-api",this.toggle);a("html").on("click.dropdown.data-api",function(){c.parent().removeClass("open")})};c.prototype={constructor:c,toggle:function(b){var c=a(this),e,f,g;if(c.is(".disabled, :disabled"))return;return f=c.attr("data-target"),f||(f=c.attr("href"),f=f&&f.replace(/.*(?=#[^\s]*$)/,"")),e=a(f),e.length||(e=c.parent()),g=e.hasClass("open"),d(),g||e.toggleClass("open"),!1}},a.fn.dropdown=function(b){return this.each(function(){var d=a(this),e=d.data("dropdown");e||d.data("dropdown",e=new c(this)),typeof b=="string"&&e[b].call(d)})},a.fn.dropdown.Constructor=c,a(function(){a("html").on("click.dropdown.data-api",d),a("body").on("click.dropdown",".dropdown form",function(a){a.stopPropagation()}).on("click.dropdown.data-api",b,c.prototype.toggle)})}(window.jQuery),!function(a){function c(){var b=this,c=setTimeout(function(){b.$element.off(a.support.transition.end),d.call(b)},500);this.$element.one(a.support.transition.end,function(){clearTimeout(c),d.call(b)})}function d(a){this.$element.hide().trigger("hidden"),e.call(this)}function e(b){var c=this,d=this.$element.hasClass("fade")?"fade":"";if(this.isShown&&this.options.backdrop){var e=a.support.transition&&d;this.$backdrop=a('