├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── css └── styles.css ├── index.html └── previews ├── Wedding-Planner.png ├── coming_soon.png ├── cv.png ├── dummy.png ├── event.png ├── hotel.png ├── login.png ├── product_landing_page.png ├── rent.png └── tropico.png /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing Guide 2 | 3 | Please be sure to follow the [Awesome Bulma Templates Community Guidelines](https://github.com/aldi/awesome-bulma-templates/blob/master/.github/CODE_OF_CONDUCT.md). 4 | 5 | ## General Guidelines 6 | 7 | 1. Respect the formats described below. 8 | 2. Make sure your template is **awesome** and was built with Bulma. 9 | 3. Be awesome and love open source. :heart_eyes: 10 | 11 | ## Formats and Naming Conventions 12 | 13 | - Every Template MUST have the following format: `[Name of Template] Template`. 14 | - ✔ Landing Page Template. 15 | - ✖ Template of Landing Page. 16 | - ✖ Landing Page Website. 17 | - The name should must be in English. 18 | - The project must be updated to the **latest** versions of Bulma etc. 19 | - The template must be placed at the bottom of the list in `README.md` and `index.html`. 20 | - Follow the other templates' structure in `index.html`. 21 | - Your project must be have its own dedicated _repo_. 22 | - The screenshot of the template must be inside the _previews_ folder. 23 | - The dimensions of the template's screenshot must be at `3808 × 2418` (optional). 24 | 25 | ### License 📜 26 | 27 | Are you using the MIT License? 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright © 2024 aldi 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 | # Awesome Bulma Templates [](https://awesome.re) 2 | 3 | A list of real-world templates made using the Bulma CSS Framework 4 | 5 | ## Check out [Awesome-Bulma](https://github.com/aldi/awesome-bulma) 🎉 6 | 7 | ## Templates 🎨 8 | 9 | Tropico Template: [Live Demo](https://restylianos.github.io/bulma-tropico-template/) | [Source Code](https://github.com/restylianos/bulma-tropico-template) 10 |  11 | 12 | Wedding Planner Template: [Live Demo](https://restylianos.github.io/bulma-wedding-planner-template/) | [Source Code](https://github.com/restylianos/bulma-wedding-planner-template/) 13 |  14 | 15 | Login Page Template: [Live Demo](https://aldi.github.io/bulma-login-template/) | [Source Code](https://github.com/aldi/bulma-login-template/) 16 |  17 | 18 | Product/App Landing Page Template: [Live Demo](http://bulma-template.runkodapps.com/) | [Source Code](https://github.com/hellobetkowski/bulma-product-landing-page-template/) 19 |  20 | 21 | CV Template: [Live Demo](https://aldi.github.io/bulma-cv-template/) | [Source Code](https://github.com/aldi/bulma-cv-template/) 22 |  23 | 24 | Rent Template: [Live Demo](https://aldi.github.io/bulma-rent-template/) | [Source Code](https://github.com/aldi/bulma-rent-template/) 25 |  26 | 27 | Hotel Template: [Live Demo](https://aldi.github.io/bulma-hotel-template/) | [Source Code](https://github.com/aldi/bulma-hotel-template/) 28 |  29 | 30 | Event Participation Template: [Live Demo](https://aldi.github.io/bulma-event-participation-template/) | [Source Code](https://github.com/aldi/bulma-event-participation-template/) 31 |  32 | 33 | Coming Soon Template: [Live Demo](https://aldi.github.io/bulma-coming-soon-template/) | [Source Code](https://github.com/aldi/bulma-event-participation-template/) 34 |  35 | 36 | Each template has its own dedicated repo. This repo is for showcase purposes only. 37 | 38 | ## Contributing 😍 39 | 40 | Do you want to add your awesome template to the list? 41 | Follow the contribution guide [here](https://github.com/aldi/awesome-bulma-templates/blob/master/CONTRIBUTING.md). 42 | 43 | ## Licence 📜 44 | 45 | Code released under [the MIT license](https://github.com/aldi/awesome-bulma-templates/blob/master/LICENSE). 46 | -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- 1 | html, 2 | body { 3 | font-family: 'Open Sans', serif; 4 | background: #f0f2f4; 5 | } 6 | .hero-body { 7 | background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab); 8 | background-size: 400% 400%; 9 | animation: gradientBG 15s ease infinite; 10 | } 11 | @keyframes gradientBG { 12 | 0% { 13 | background-position: 0% 50%; 14 | } 15 | 50% { 16 | background-position: 100% 50%; 17 | } 18 | 100% { 19 | background-position: 0% 50%; 20 | } 21 | } 22 | @keyframes slideDown { 23 | from { 24 | opacity: 0; 25 | transform: translateY(-1rem); 26 | } 27 | to { 28 | opacity: 1; 29 | transform: translateY(0); 30 | } 31 | } 32 | .card { 33 | margin-bottom: 3rem; 34 | border-radius: 15px; 35 | animation-duration: 1s; 36 | animation-timing-function: cubic-bezier(0, 0.5, 0, 1); 37 | animation-fill-mode: both; 38 | } 39 | 40 | .card-footer-item { 41 | font-size: 12px; 42 | font-weight: bold; 43 | color: #666; 44 | } 45 | .card-header { 46 | box-shadow: 0 0.125em 0 rgba(10, 10, 10, 0.1); 47 | } 48 | .card-header-title { 49 | display: block; 50 | } 51 | .card-content p { 52 | margin-bottom: 2rem; 53 | } 54 | .footer { 55 | padding: 0; 56 | } 57 | .content p:not(:last-child) { 58 | margin-bottom: 0; 59 | } 60 | .subtitle a { 61 | color: #fc60a8; 62 | } 63 | 64 | .button { 65 | height: auto; 66 | } 67 | 68 | .hero { 69 | animation-delay: 0s; 70 | -webkit-animation: fadein 3s; /* Safari, Chrome and Opera > 12.1 */ 71 | -moz-animation: fadein 3s; /* Firefox < 16 */ 72 | -ms-animation: fadein 3s; /* Internet Explorer */ 73 | -o-animation: fadein 3s; /* Opera < 12.1 */ 74 | animation: fadein 3s; 75 | } 76 | 77 | @keyframes fadein { 78 | from { 79 | opacity: 0; 80 | } 81 | to { 82 | opacity: 1; 83 | } 84 | } 85 | 86 | /* Firefox < 16 */ 87 | @-moz-keyframes fadein { 88 | from { 89 | opacity: 0; 90 | } 91 | to { 92 | opacity: 1; 93 | } 94 | } 95 | 96 | /* Safari, Chrome and Opera > 12.1 */ 97 | @-webkit-keyframes fadein { 98 | from { 99 | opacity: 0; 100 | } 101 | to { 102 | opacity: 1; 103 | } 104 | } 105 | 106 | /* Internet Explorer */ 107 | @-ms-keyframes fadein { 108 | from { 109 | opacity: 0; 110 | } 111 | to { 112 | opacity: 1; 113 | } 114 | } 115 | 116 | /* Opera < 12.1 */ 117 | @-o-keyframes fadein { 118 | from { 119 | opacity: 0; 120 | } 121 | to { 122 | opacity: 1; 123 | } 124 | } 125 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 13 | 14 |65 | Bulma Tropico 66 | 67 | 70 | 73 | 0.9.0 74 | 75 |
76 |102 | Wedding Planner 103 | 104 | Updated 105 | 108 | 111 | 0.9.0 112 | 113 |
114 |143 | Login 144 | 145 | Updated 146 | 149 | 152 | 0.9.0 153 | 154 |
155 |181 | Product Landing Page 182 | 183 | 186 | 189 | 0.9.0 190 | 191 |
192 |221 | CV 222 | 223 | Updated 224 | 227 | 230 | 0.9.0 231 | 232 |
233 |259 | Rent 260 | 261 | Updated 262 | 265 | 268 | 0.9.0 269 | 270 |
271 |297 | Hotel 298 | 299 | Updated 300 | 303 | 306 | 0.9.0 307 | 308 |
309 |335 | Event Participation 336 | 337 | Updated 338 | 341 | 344 | 0.9.0 345 | 346 |
347 |373 | Coming Soon 374 | 375 | 378 | 381 | 0.9.0 382 | 383 |
384 |410 | Your New Template? 411 |
412 |More templates coming soon. Stay tuned!
439 |