├── .gitignore ├── LICENSE ├── README.md ├── css ├── style.css └── style.min.css ├── demo ├── css │ ├── style.css │ └── style.min.css ├── img │ ├── header-bg.jpg │ ├── hero.png │ ├── logo.png │ ├── slider-2.jpg │ ├── slider-3.jpg │ └── slider.jpg ├── index.html ├── js │ ├── script.js │ └── script.min.js ├── robots.txt └── src │ ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js │ └── font-awesome │ ├── css │ ├── font-awesome.css │ └── font-awesome.min.css │ └── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 ├── gulpfile.js ├── img ├── header-bg.jpg ├── hero.png ├── logo.png ├── slider-2.jpg ├── slider-3.jpg └── slider.jpg ├── index.html ├── js ├── script.js └── script.min.js ├── package.json ├── scss ├── _base.scss ├── _layout.scss ├── _theme.scss ├── _variable.scss ├── module │ ├── _accordian.scss │ ├── _btn.scss │ ├── _carousel.scss │ ├── _jumbotron.scss │ ├── _module.scss │ ├── _navbar.scss │ ├── _quote.scss │ └── _social-link.scss └── style.scss ├── src ├── bootstrap │ ├── css │ │ ├── bootstrap.css │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ └── bootstrap.min.js └── font-awesome │ ├── css │ ├── font-awesome.css │ └── font-awesome.min.css │ └── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Imran Mondal 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GoGo 2 | Free Bootstrap template for chat bot landing page 3 | 4 | Demo: http://imondal007.github.io/gogo/demo -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | /* Typography */ 2 | html, p, body { 3 | font-size: 16px; 4 | } 5 | 6 | body { 7 | font-family: "Ubuntu", sans-serif; 8 | font-weight: 400; 9 | line-height: 1.45; 10 | color: #343e48; 11 | } 12 | 13 | p { 14 | margin-bottom: 1.3em; 15 | margin-top: 0px; 16 | } 17 | 18 | a { 19 | font-family: "Oxygen", sans-serif; 20 | font-size: inherit; 21 | } 22 | 23 | a:focus, a:hover { 24 | color: #1b49a0; 25 | text-decoration: none; 26 | } 27 | 28 | h1, h2, h3, h4 { 29 | font-family: "Oxygen", sans-serif; 30 | margin: 1.414em 0 0.5em; 31 | font-weight: 300; 32 | line-height: 1.2; 33 | } 34 | 35 | h1 { 36 | margin-top: 0; 37 | font-size: 2.8em; 38 | } 39 | 40 | h2 { 41 | font-size: 2.369em; 42 | } 43 | 44 | h3 { 45 | font-size: 1.5em; 46 | } 47 | 48 | h4 { 49 | font-size: 1.333em; 50 | } 51 | 52 | small, .font_small { 53 | font-size: 0.75em; 54 | } 55 | 56 | /* Layout */ 57 | .container { 58 | max-width: 1000px; 59 | } 60 | 61 | .l-section, .l-section-full-height { 62 | padding: 5% 0px; 63 | } 64 | 65 | @media screen and (min-width: 768px) { 66 | .l-section-full-height { 67 | height: 100vh; 68 | } 69 | } 70 | 71 | .l-img-center { 72 | margin: 0 auto; 73 | } 74 | 75 | .social-link { 76 | margin: 0px; 77 | padding: 0px; 78 | } 79 | 80 | .social-link li { 81 | padding: 0; 82 | list-style-type: none; 83 | } 84 | 85 | .social-link li a { 86 | display: inline-block; 87 | padding: 5px; 88 | color: #343e48; 89 | min-height: 35px; 90 | min-width: 35px; 91 | text-align: center; 92 | margin-bottom: 2%; 93 | border-radius: 50%; 94 | background-color: #ffffff; 95 | } 96 | 97 | .social-link li a:last-child { 98 | margin: 0px; 99 | } 100 | 101 | .social-link li a.fb:hover { 102 | color: #ffffff; 103 | background-color: #3B5A99; 104 | } 105 | 106 | .social-link li a.tw:hover { 107 | color: #ffffff; 108 | background-color: #29A9E1; 109 | } 110 | 111 | .social-link li a.gp:hover { 112 | color: #ffffff; 113 | background-color: #DF4B38; 114 | } 115 | 116 | .social-link li a.lin:hover { 117 | color: #ffffff; 118 | background-color: #117BB8; 119 | } 120 | 121 | .social-link.inline li { 122 | display: inline-block; 123 | margin-bottom: 0px; 124 | margin-right: 2%; 125 | } 126 | 127 | .social-link.inline li:last-child { 128 | margin: 0px; 129 | } 130 | 131 | /* Jumbotron */ 132 | .jumbotron { 133 | background: #f8f9fa url("../img/header-bg.jpg"); 134 | -moz-background-size: cover; 135 | -o-background-size: cover; 136 | -webkit-background-size: cover; 137 | background-size: cover; 138 | margin-bottom: 0; 139 | font-size: 1em; 140 | } 141 | 142 | .jumbotron h1 { 143 | font-size: 2.5em; 144 | margin-bottom: 0; 145 | margin-top: 15%; 146 | margin-bottom: 3%; 147 | } 148 | 149 | .jumbotron p { 150 | font-size: 1em; 151 | } 152 | 153 | .jumbotron .container { 154 | max-width: 1000px; 155 | } 156 | 157 | .jumbotron.l-section-full-height { 158 | padding: 15% 0px; 159 | } 160 | 161 | @media screen and (min-width: 768px) { 162 | .jumbotron h1 { 163 | font-size: 3em; 164 | } 165 | .jumbotron p { 166 | font-size: 1em; 167 | } 168 | .jumbotron.l-section-full-height { 169 | padding: 10% 0px; 170 | } 171 | } 172 | 173 | /* Carousel */ 174 | .carousel.slide { 175 | margin-left: 5%; 176 | margin-right: 5%; 177 | } 178 | 179 | .carousel-indicators { 180 | bottom: 5px; 181 | height: 10px; 182 | padding-top: 30px; 183 | } 184 | 185 | .carousel-indicators li { 186 | background-color: #ddd; 187 | } 188 | 189 | .carousel-indicators li.active { 190 | background-color: #ffc820; 191 | } 192 | 193 | @media screen and (min-width: 768px) { 194 | .carousel-indicators { 195 | bottom: 0px; 196 | } 197 | } 198 | 199 | /* Button */ 200 | .btn { 201 | border: 0px; 202 | border-radius: 0px !important; 203 | font-family: "Oxygen", sans-serif; 204 | } 205 | 206 | .btn-default { 207 | color: #343e48; 208 | } 209 | 210 | .btn-primary { 211 | color: #ffffff; 212 | background-color: #1b49a0; 213 | } 214 | 215 | .btn-primary-border { 216 | background-color: transparent; 217 | border: 1px solid #1b49a0; 218 | color: #1b49a0; 219 | } 220 | 221 | .btn-info { 222 | color: #343e48; 223 | background-color: #5bc0de; 224 | } 225 | 226 | .btn-warning { 227 | color: #343e48; 228 | background-color: #ffc820; 229 | } 230 | 231 | .btn-warning:hover { 232 | color: #343e48; 233 | } 234 | 235 | .btn-lg { 236 | padding: 10px 30px; 237 | font-size: 1em; 238 | } 239 | 240 | /* Navbar */ 241 | .navbar-transparent { 242 | background-color: #f8f9fa; 243 | border: 0px; 244 | margin-bottom: 0px !important; 245 | position: absolute; 246 | top: 0; 247 | left: 0; 248 | right: 0; 249 | z-index: 999; 250 | } 251 | 252 | @media screen and (min-width: 768px) { 253 | .navbar-transparent { 254 | background-color: transparent; 255 | } 256 | } 257 | 258 | .btn.btn-nav { 259 | padding: 7px 15px; 260 | margin: 9px 0; 261 | } 262 | 263 | .btn.btn-primary { 264 | color: #ffffff !important; 265 | } 266 | 267 | .btn.btn-primary:hover { 268 | background-color: #286090 !important; 269 | } 270 | 271 | /* Accordian */ 272 | .panel-heading { 273 | padding: 2% 3%; 274 | } 275 | 276 | .panel-title a { 277 | font-size: 1.5em; 278 | color: #343e48; 279 | } 280 | 281 | .panel-group .panel { 282 | margin-bottom: 2%; 283 | } 284 | 285 | /* Quotes */ 286 | blockquote.gogo-quote { 287 | padding: 20% 0 22.5%; 288 | margin: 0; 289 | font-size: inherit; 290 | border-left: 0; 291 | position: relative; 292 | text-align: center; 293 | } 294 | 295 | blockquote.gogo-quote:before { 296 | content: "\f10d"; 297 | font-family: FontAwesome; 298 | color: #ffc820; 299 | font-size: 58px; 300 | position: absolute; 301 | top: 0px; 302 | left: 0; 303 | right: 0; 304 | } 305 | 306 | blockquote.gogo-quote:after { 307 | content: "\f10e"; 308 | font-family: FontAwesome; 309 | color: #ffc820; 310 | font-size: 58px; 311 | position: absolute; 312 | bottom: 0px; 313 | left: 0; 314 | right: 0; 315 | } 316 | 317 | blockquote.gogo-quote h2 { 318 | font-family: "Ubuntu", sans-serif; 319 | font-weight: 300; 320 | font-style: italic; 321 | margin: 0; 322 | padding: 0; 323 | } 324 | 325 | /* Background Colors */ 326 | .gray-bg { 327 | background-color: #f8f9fa; 328 | } 329 | 330 | .blue-bg { 331 | background-color: #1b49a0; 332 | } 333 | 334 | /* Text Color */ 335 | .text-white { 336 | color: #ffffff; 337 | } 338 | 339 | /* Margin */ 340 | .t-margin-bt-0x { 341 | margin-bottom: 0px; 342 | } 343 | 344 | .t-margin-bt-1x { 345 | margin-bottom: 2%; 346 | } 347 | 348 | .t-margin-bt-2x { 349 | margin-bottom: 3%; 350 | } 351 | 352 | .t-margin-bt-3x { 353 | margin-bottom: 5%; 354 | } 355 | 356 | .t-margin-bt-6x { 357 | margin-bottom: 10%; 358 | } 359 | 360 | .text-margin-bottom-x { 361 | margin-bottom: 0.2em; 362 | } 363 | -------------------------------------------------------------------------------- /css/style.min.css: -------------------------------------------------------------------------------- 1 | body,html,p{font-size:16px}body{font-family:Ubuntu,sans-serif;font-weight:400;line-height:1.45;color:#343e48}p{margin-bottom:1.3em;margin-top:0}a{font-family:Oxygen,sans-serif;font-size:inherit}a:focus,a:hover{color:#1b49a0;text-decoration:none}h1,h2,h3,h4{font-family:Oxygen,sans-serif;margin:1.414em 0 .5em;font-weight:300;line-height:1.2}h1{margin-top:0;font-size:2.8em}h2{font-size:2.369em}h3{font-size:1.5em}h4{font-size:1.333em}.font_small,small{font-size:.75em}.container{max-width:1000px}.l-section,.l-section-full-height{padding:5% 0}@media screen and (min-width:768px){.l-section-full-height{height:100vh}}.l-img-center{margin:0 auto}.social-link{margin:0;padding:0}.social-link li{padding:0;list-style-type:none}.social-link li a{display:inline-block;padding:5px;color:#343e48;min-height:35px;min-width:35px;text-align:center;margin-bottom:2%;border-radius:50%;background-color:#fff}.social-link li a:last-child{margin:0}.social-link li a.fb:hover{color:#fff;background-color:#3b5a99}.social-link li a.tw:hover{color:#fff;background-color:#29a9e1}.social-link li a.gp:hover{color:#fff;background-color:#df4b38}.social-link li a.lin:hover{color:#fff;background-color:#117bb8}.social-link.inline li{display:inline-block;margin-bottom:0;margin-right:2%}.social-link.inline li:last-child{margin:0}.jumbotron{background:#f8f9fa url(../img/header-bg.jpg);-moz-background-size:cover;-o-background-size:cover;-webkit-background-size:cover;background-size:cover;margin-bottom:0;font-size:1em}.jumbotron h1{font-size:2.5em;margin-bottom:0;margin-top:15%;margin-bottom:3%}.jumbotron p{font-size:1em}.jumbotron .container{max-width:1000px}.jumbotron.l-section-full-height{padding:15% 0}@media screen and (min-width:768px){.jumbotron h1{font-size:3em}.jumbotron p{font-size:1em}.jumbotron.l-section-full-height{padding:10% 0}}.carousel.slide{margin-left:5%;margin-right:5%}.carousel-indicators{bottom:5px;height:10px;padding-top:30px}.carousel-indicators li{background-color:#ddd}.carousel-indicators li.active{background-color:#ffc820}@media screen and (min-width:768px){.carousel-indicators{bottom:0}}.btn{border:0;border-radius:0!important;font-family:Oxygen,sans-serif}.btn-default{color:#343e48}.btn-primary{color:#fff;background-color:#1b49a0}.btn-primary-border{background-color:transparent;border:1px solid #1b49a0;color:#1b49a0}.btn-info{color:#343e48;background-color:#5bc0de}.btn-warning{color:#343e48;background-color:#ffc820}.btn-warning:hover{color:#343e48}.btn-lg{padding:10px 30px;font-size:1em}.navbar-transparent{background-color:#f8f9fa;border:0;margin-bottom:0!important;position:absolute;top:0;left:0;right:0;z-index:999}@media screen and (min-width:768px){.navbar-transparent{background-color:transparent}}.btn.btn-nav{padding:7px 15px;margin:9px 0}.btn.btn-primary{color:#fff!important}.btn.btn-primary:hover{background-color:#286090!important}.panel-heading{padding:2% 3%}.panel-title a{font-size:1.5em;color:#343e48}.panel-group .panel{margin-bottom:2%}blockquote.gogo-quote{padding:20% 0 22.5%;margin:0;font-size:inherit;border-left:0;position:relative;text-align:center}blockquote.gogo-quote:before{content:"\f10d";font-family:FontAwesome;color:#ffc820;font-size:58px;position:absolute;top:0;left:0;right:0}blockquote.gogo-quote:after{content:"\f10e";font-family:FontAwesome;color:#ffc820;font-size:58px;position:absolute;bottom:0;left:0;right:0}blockquote.gogo-quote h2{font-family:Ubuntu,sans-serif;font-weight:300;font-style:italic;margin:0;padding:0}.gray-bg{background-color:#f8f9fa}.blue-bg{background-color:#1b49a0}.text-white{color:#fff}.t-margin-bt-0x{margin-bottom:0}.t-margin-bt-1x{margin-bottom:2%}.t-margin-bt-2x{margin-bottom:3%}.t-margin-bt-3x{margin-bottom:5%}.t-margin-bt-6x{margin-bottom:10%}.text-margin-bottom-x{margin-bottom:.2em} -------------------------------------------------------------------------------- /demo/css/style.css: -------------------------------------------------------------------------------- 1 | /* Typography */ 2 | html, p, body { 3 | font-size: 16px; 4 | } 5 | 6 | body { 7 | font-family: "Ubuntu", sans-serif; 8 | font-weight: 400; 9 | line-height: 1.45; 10 | color: #343e48; 11 | } 12 | 13 | p { 14 | margin-bottom: 1.3em; 15 | margin-top: 0px; 16 | } 17 | 18 | a { 19 | font-family: "Oxygen", sans-serif; 20 | font-size: inherit; 21 | } 22 | 23 | a:focus, a:hover { 24 | color: #1b49a0; 25 | text-decoration: none; 26 | } 27 | 28 | h1, h2, h3, h4 { 29 | font-family: "Oxygen", sans-serif; 30 | margin: 1.414em 0 0.5em; 31 | font-weight: 300; 32 | line-height: 1.2; 33 | } 34 | 35 | h1 { 36 | margin-top: 0; 37 | font-size: 2.8em; 38 | } 39 | 40 | h2 { 41 | font-size: 2.369em; 42 | } 43 | 44 | h3 { 45 | font-size: 1.5em; 46 | } 47 | 48 | h4 { 49 | font-size: 1.333em; 50 | } 51 | 52 | small, .font_small { 53 | font-size: 0.75em; 54 | } 55 | 56 | /* Layout */ 57 | .container { 58 | max-width: 1000px; 59 | } 60 | 61 | .l-section, .l-section-full-height { 62 | padding: 5% 0px; 63 | } 64 | 65 | @media screen and (min-width: 768px) { 66 | .l-section-full-height { 67 | height: 100vh; 68 | } 69 | } 70 | 71 | .l-img-center { 72 | margin: 0 auto; 73 | } 74 | 75 | .social-link { 76 | margin: 0px; 77 | padding: 0px; 78 | } 79 | 80 | .social-link li { 81 | padding: 0; 82 | list-style-type: none; 83 | } 84 | 85 | .social-link li a { 86 | display: inline-block; 87 | padding: 5px; 88 | color: #343e48; 89 | min-height: 35px; 90 | min-width: 35px; 91 | text-align: center; 92 | margin-bottom: 2%; 93 | border-radius: 50%; 94 | background-color: #ffffff; 95 | } 96 | 97 | .social-link li a:last-child { 98 | margin: 0px; 99 | } 100 | 101 | .social-link li a.fb:hover { 102 | color: #ffffff; 103 | background-color: #3B5A99; 104 | } 105 | 106 | .social-link li a.tw:hover { 107 | color: #ffffff; 108 | background-color: #29A9E1; 109 | } 110 | 111 | .social-link li a.gp:hover { 112 | color: #ffffff; 113 | background-color: #DF4B38; 114 | } 115 | 116 | .social-link li a.lin:hover { 117 | color: #ffffff; 118 | background-color: #117BB8; 119 | } 120 | 121 | .social-link.inline li { 122 | display: inline-block; 123 | margin-bottom: 0px; 124 | margin-right: 2%; 125 | } 126 | 127 | .social-link.inline li:last-child { 128 | margin: 0px; 129 | } 130 | 131 | /* Jumbotron */ 132 | .jumbotron { 133 | background: #f8f9fa url("../img/header-bg.jpg"); 134 | -moz-background-size: cover; 135 | -o-background-size: cover; 136 | -webkit-background-size: cover; 137 | background-size: cover; 138 | margin-bottom: 0; 139 | font-size: 1em; 140 | } 141 | 142 | .jumbotron h1 { 143 | font-size: 2.5em; 144 | margin-bottom: 0; 145 | margin-top: 15%; 146 | margin-bottom: 3%; 147 | } 148 | 149 | .jumbotron p { 150 | font-size: 1em; 151 | } 152 | 153 | .jumbotron .container { 154 | max-width: 1000px; 155 | } 156 | 157 | .jumbotron.l-section-full-height { 158 | padding: 15% 0px; 159 | } 160 | 161 | @media screen and (min-width: 768px) { 162 | .jumbotron h1 { 163 | font-size: 3em; 164 | } 165 | .jumbotron p { 166 | font-size: 1em; 167 | } 168 | .jumbotron.l-section-full-height { 169 | padding: 10% 0px; 170 | } 171 | } 172 | 173 | /* Carousel */ 174 | .carousel.slide { 175 | margin-left: 5%; 176 | margin-right: 5%; 177 | } 178 | 179 | .carousel-indicators { 180 | bottom: 5px; 181 | height: 10px; 182 | padding-top: 30px; 183 | } 184 | 185 | .carousel-indicators li { 186 | background-color: #ddd; 187 | } 188 | 189 | .carousel-indicators li.active { 190 | background-color: #ffc820; 191 | } 192 | 193 | @media screen and (min-width: 768px) { 194 | .carousel-indicators { 195 | bottom: 0px; 196 | } 197 | } 198 | 199 | /* Button */ 200 | .btn { 201 | border: 0px; 202 | border-radius: 0px !important; 203 | font-family: "Oxygen", sans-serif; 204 | } 205 | 206 | .btn-default { 207 | color: #343e48; 208 | } 209 | 210 | .btn-primary { 211 | color: #ffffff; 212 | background-color: #1b49a0; 213 | } 214 | 215 | .btn-primary-border { 216 | background-color: transparent; 217 | border: 1px solid #1b49a0; 218 | color: #1b49a0; 219 | } 220 | 221 | .btn-info { 222 | color: #343e48; 223 | background-color: #5bc0de; 224 | } 225 | 226 | .btn-warning { 227 | color: #343e48; 228 | background-color: #ffc820; 229 | } 230 | 231 | .btn-warning:hover { 232 | color: #343e48; 233 | } 234 | 235 | .btn-lg { 236 | padding: 10px 30px; 237 | font-size: 1em; 238 | } 239 | 240 | /* Navbar */ 241 | .navbar-transparent { 242 | background-color: #f8f9fa; 243 | border: 0px; 244 | margin-bottom: 0px !important; 245 | position: absolute; 246 | top: 0; 247 | left: 0; 248 | right: 0; 249 | z-index: 999; 250 | } 251 | 252 | @media screen and (min-width: 768px) { 253 | .navbar-transparent { 254 | background-color: transparent; 255 | } 256 | } 257 | 258 | .btn.btn-nav { 259 | padding: 7px 15px; 260 | margin: 9px 0; 261 | } 262 | 263 | .btn.btn-primary { 264 | color: #ffffff !important; 265 | } 266 | 267 | .btn.btn-primary:hover { 268 | background-color: #286090 !important; 269 | } 270 | 271 | /* Accordian */ 272 | .panel-heading { 273 | padding: 2% 3%; 274 | } 275 | 276 | .panel-title a { 277 | font-size: 1.5em; 278 | color: #343e48; 279 | } 280 | 281 | .panel-group .panel { 282 | margin-bottom: 2%; 283 | } 284 | 285 | /* Quotes */ 286 | blockquote.gogo-quote { 287 | padding: 20% 0 22.5%; 288 | margin: 0; 289 | font-size: inherit; 290 | border-left: 0; 291 | position: relative; 292 | text-align: center; 293 | } 294 | 295 | blockquote.gogo-quote:before { 296 | content: "\f10d"; 297 | font-family: FontAwesome; 298 | color: #ffc820; 299 | font-size: 58px; 300 | position: absolute; 301 | top: 0px; 302 | left: 0; 303 | right: 0; 304 | } 305 | 306 | blockquote.gogo-quote:after { 307 | content: "\f10e"; 308 | font-family: FontAwesome; 309 | color: #ffc820; 310 | font-size: 58px; 311 | position: absolute; 312 | bottom: 0px; 313 | left: 0; 314 | right: 0; 315 | } 316 | 317 | blockquote.gogo-quote h2 { 318 | font-family: "Ubuntu", sans-serif; 319 | font-weight: 300; 320 | font-style: italic; 321 | margin: 0; 322 | padding: 0; 323 | } 324 | 325 | /* Background Colors */ 326 | .gray-bg { 327 | background-color: #f8f9fa; 328 | } 329 | 330 | .blue-bg { 331 | background-color: #1b49a0; 332 | } 333 | 334 | /* Text Color */ 335 | .text-white { 336 | color: #ffffff; 337 | } 338 | 339 | /* Margin */ 340 | .t-margin-bt-0x { 341 | margin-bottom: 0px; 342 | } 343 | 344 | .t-margin-bt-1x { 345 | margin-bottom: 2%; 346 | } 347 | 348 | .t-margin-bt-2x { 349 | margin-bottom: 3%; 350 | } 351 | 352 | .t-margin-bt-3x { 353 | margin-bottom: 5%; 354 | } 355 | 356 | .t-margin-bt-6x { 357 | margin-bottom: 10%; 358 | } 359 | 360 | .text-margin-bottom-x { 361 | margin-bottom: 0.2em; 362 | } 363 | -------------------------------------------------------------------------------- /demo/css/style.min.css: -------------------------------------------------------------------------------- 1 | body,html,p{font-size:16px}body{font-family:Ubuntu,sans-serif;font-weight:400;line-height:1.45;color:#343e48}p{margin-bottom:1.3em;margin-top:0}a{font-family:Oxygen,sans-serif;font-size:inherit}a:focus,a:hover{color:#1b49a0;text-decoration:none}h1,h2,h3,h4{font-family:Oxygen,sans-serif;margin:1.414em 0 .5em;font-weight:300;line-height:1.2}h1{margin-top:0;font-size:2.8em}h2{font-size:2.369em}h3{font-size:1.5em}h4{font-size:1.333em}.font_small,small{font-size:.75em}.container{max-width:1000px}.l-section,.l-section-full-height{padding:5% 0}@media screen and (min-width:768px){.l-section-full-height{height:100vh}}.l-img-center{margin:0 auto}.social-link{margin:0;padding:0}.social-link li{padding:0;list-style-type:none}.social-link li a{display:inline-block;padding:5px;color:#343e48;min-height:35px;min-width:35px;text-align:center;margin-bottom:2%;border-radius:50%;background-color:#fff}.social-link li a:last-child{margin:0}.social-link li a.fb:hover{color:#fff;background-color:#3b5a99}.social-link li a.tw:hover{color:#fff;background-color:#29a9e1}.social-link li a.gp:hover{color:#fff;background-color:#df4b38}.social-link li a.lin:hover{color:#fff;background-color:#117bb8}.social-link.inline li{display:inline-block;margin-bottom:0;margin-right:2%}.social-link.inline li:last-child{margin:0}.jumbotron{background:#f8f9fa url(../img/header-bg.jpg);-moz-background-size:cover;-o-background-size:cover;-webkit-background-size:cover;background-size:cover;margin-bottom:0;font-size:1em}.jumbotron h1{font-size:2.5em;margin-bottom:0;margin-top:15%;margin-bottom:3%}.jumbotron p{font-size:1em}.jumbotron .container{max-width:1000px}.jumbotron.l-section-full-height{padding:15% 0}@media screen and (min-width:768px){.jumbotron h1{font-size:3em}.jumbotron p{font-size:1em}.jumbotron.l-section-full-height{padding:10% 0}}.carousel.slide{margin-left:5%;margin-right:5%}.carousel-indicators{bottom:5px;height:10px;padding-top:30px}.carousel-indicators li{background-color:#ddd}.carousel-indicators li.active{background-color:#ffc820}@media screen and (min-width:768px){.carousel-indicators{bottom:0}}.btn{border:0;border-radius:0!important;font-family:Oxygen,sans-serif}.btn-default{color:#343e48}.btn-primary{color:#fff;background-color:#1b49a0}.btn-primary-border{background-color:transparent;border:1px solid #1b49a0;color:#1b49a0}.btn-info{color:#343e48;background-color:#5bc0de}.btn-warning{color:#343e48;background-color:#ffc820}.btn-warning:hover{color:#343e48}.btn-lg{padding:10px 30px;font-size:1em}.navbar-transparent{background-color:#f8f9fa;border:0;margin-bottom:0!important;position:absolute;top:0;left:0;right:0;z-index:999}@media screen and (min-width:768px){.navbar-transparent{background-color:transparent}}.btn.btn-nav{padding:7px 15px;margin:9px 0}.btn.btn-primary{color:#fff!important}.btn.btn-primary:hover{background-color:#286090!important}.panel-heading{padding:2% 3%}.panel-title a{font-size:1.5em;color:#343e48}.panel-group .panel{margin-bottom:2%}blockquote.gogo-quote{padding:20% 0 22.5%;margin:0;font-size:inherit;border-left:0;position:relative;text-align:center}blockquote.gogo-quote:before{content:"\f10d";font-family:FontAwesome;color:#ffc820;font-size:58px;position:absolute;top:0;left:0;right:0}blockquote.gogo-quote:after{content:"\f10e";font-family:FontAwesome;color:#ffc820;font-size:58px;position:absolute;bottom:0;left:0;right:0}blockquote.gogo-quote h2{font-family:Ubuntu,sans-serif;font-weight:300;font-style:italic;margin:0;padding:0}.gray-bg{background-color:#f8f9fa}.blue-bg{background-color:#1b49a0}.text-white{color:#fff}.t-margin-bt-0x{margin-bottom:0}.t-margin-bt-1x{margin-bottom:2%}.t-margin-bt-2x{margin-bottom:3%}.t-margin-bt-3x{margin-bottom:5%}.t-margin-bt-6x{margin-bottom:10%}.text-margin-bottom-x{margin-bottom:.2em} -------------------------------------------------------------------------------- /demo/img/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imondal007/gogo/856a615631ce65d7792ed33cbfecdeae3d13f5e0/demo/img/header-bg.jpg -------------------------------------------------------------------------------- /demo/img/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imondal007/gogo/856a615631ce65d7792ed33cbfecdeae3d13f5e0/demo/img/hero.png -------------------------------------------------------------------------------- /demo/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imondal007/gogo/856a615631ce65d7792ed33cbfecdeae3d13f5e0/demo/img/logo.png -------------------------------------------------------------------------------- /demo/img/slider-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imondal007/gogo/856a615631ce65d7792ed33cbfecdeae3d13f5e0/demo/img/slider-2.jpg -------------------------------------------------------------------------------- /demo/img/slider-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imondal007/gogo/856a615631ce65d7792ed33cbfecdeae3d13f5e0/demo/img/slider-3.jpg -------------------------------------------------------------------------------- /demo/img/slider.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imondal007/gogo/856a615631ce65d7792ed33cbfecdeae3d13f5e0/demo/img/slider.jpg -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- 1 |
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
So they said think Before smiling? not anymore.
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.
Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis.
Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
58 | 59 |114 |116 |So they said think Before smiling? not anymore.
115 |
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.
120 |Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation.
121 |Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis.
122 |