├── screenshot.png ├── media ├── cartoon_city.png ├── city_clipart.png ├── house_for_rent.png └── property_image.png ├── README.md ├── LICENSE.md ├── css └── styles.css └── index.html /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldi/bulma-rent-template/HEAD/screenshot.png -------------------------------------------------------------------------------- /media/cartoon_city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldi/bulma-rent-template/HEAD/media/cartoon_city.png -------------------------------------------------------------------------------- /media/city_clipart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldi/bulma-rent-template/HEAD/media/city_clipart.png -------------------------------------------------------------------------------- /media/house_for_rent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldi/bulma-rent-template/HEAD/media/house_for_rent.png -------------------------------------------------------------------------------- /media/property_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aldi/bulma-rent-template/HEAD/media/property_image.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Bulma Rent Template 2 | 3 | Part of [Awesome Bulma Templates](https://github.com/aldi/awesome-bulma-templates) repo 4 | 5 | ## [Live Demo](https://aldi.github.io/bulma-rent-template/index.html) 6 | 7 |  8 | 9 | ## Additional Libraries used 10 | 11 | Font-Awesome - [github.com/FortAwesome/Font-Awesome](https://github.com/FortAwesome/Font-Awesome) 12 | 13 | ## Contributing 14 | 15 | 1. Fork it! 16 | 2. Create your feature branch: `git checkout -b my-new-feature` 17 | 3. Commit your changes: `git commit -am 'Add some feature'` 18 | 4. Push to the branch: `git push origin my-new-feature` 19 | 5. Submit a pull request! 20 | 21 | ## Licence 22 | 23 | Code released under [the MIT license](https://github.com/aldi/bulma-rent-template/blob/master/LICENSE.md). 24 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Aldi Duzha (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 | -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- 1 | .sub-section { 2 | margin-bottom: 60px; 3 | } 4 | .rb-card { 5 | border: none; 6 | border-radius: 4px; 7 | box-shadow: 5px 5px 16px 0 rgba(0, 0, 0, 0.13); 8 | cursor: pointer; 9 | transition: all 0.3s ease-in-out; 10 | position: relative; 11 | overflow: hidden; 12 | } 13 | .rb-card a { 14 | color: #515f6a; 15 | } 16 | .rb-card:hover { 17 | transform: scale(1.015); 18 | } 19 | .m-l-5 { 20 | margin-left: 5px !important; 21 | } 22 | .p-t-30 { 23 | padding-top: 30px !important; 24 | } 25 | .p-b-30 { 26 | padding-bottom: 30px !important; 27 | } 28 | .m-t-10 { 29 | margin-top: 10px !important; 30 | } 31 | .m-t-30 { 32 | margin-top: 30px !important; 33 | } 34 | .m-t-50 { 35 | margin-top: 50px !important; 36 | } 37 | .m-t-60 { 38 | margin-top: 60px !important; 39 | } 40 | .b-t { 41 | border-top: 1px solid #e2e8ef; 42 | } 43 | .ellipsis { 44 | display: block; 45 | display: -webkit-box; 46 | margin: 0 auto; 47 | line-height: 1.4; 48 | -webkit-box-orient: vertical; 49 | overflow: hidden; 50 | text-overflow: ellipsis; 51 | } 52 | .is-ellipsis-1 { 53 | -webkit-line-clamp: 1; 54 | } 55 | .is-ellipsis-2 { 56 | -webkit-line-clamp: 2; 57 | } 58 | h1, 59 | h2, 60 | h3, 61 | h4 { 62 | font-family: Montserrat, sans-serif; 63 | font-weight: 600; 64 | } 65 | .title { 66 | font-weight: 600; 67 | } 68 | .field.has-shadow-field { 69 | -webkit-box-shadow: 0 5px 30px hsla(224, 8%, 64%, 0.25) !important; 70 | box-shadow: 0 5px 30px hsla(224, 8%, 64%, 0.25) !important; 71 | } 72 | .subtitle { 73 | font-family: BlinkMacSystemFont, -apple-system, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, 74 | Fira Sans, Droid Sans, Helvetica Neue, Helvetica, Arial, sans-serif; 75 | font-weight: 500; 76 | } 77 | .hero.is-light .subtitle, 78 | .subtitle { 79 | color: #99a6b3; 80 | } 81 | .input { 82 | box-shadow: none; 83 | -webkit-box-shadow: none; 84 | } 85 | .input:-webkit-autofill { 86 | -webkit-box-shadow: 0 0 0 30px #fff inset; 87 | } 88 | .input:invalid { 89 | outline: none; 90 | -webkit-box-shadow: none; 91 | box-shadow: none; 92 | } 93 | .input:active, 94 | .input:focus { 95 | -webkit-box-shadow: none; 96 | box-shadow: none; 97 | } 98 | .button { 99 | -webkit-transition: all 0.3s ease-out; 100 | transition: all 0.3s ease-out; 101 | font-family: Montserrat, sans-serif; 102 | font-weight: 500; 103 | } 104 | .button.is-shadowy { 105 | box-shadow: 0 5px 30px hsla(224, 8%, 64%, 0.25); 106 | -webkit-box-shadow: 0 5px 30px hsla(224, 8%, 64%, 0.25); 107 | -moz-box-shadow: 0 5px 30px hsla(224, 8%, 64%, 0.25); 108 | } 109 | .button.is-shadowy:hover { 110 | -webkit-box-shadow: 0 16px 43px 2px rgba(0, 0, 0, 0.2); 111 | box-shadow: 0 16px 43px 2px rgba(0, 0, 0, 0.2); 112 | } 113 | a { 114 | -webkit-transition: color 0.3s ease-out; 115 | transition: color 0.3s ease-out; 116 | } 117 | .navbar.is-transparent { 118 | background-color: transparent; 119 | background-image: none; 120 | } 121 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 |
90 |
301 |
317 | 616 | 617 | Learn more 618 | 619 |
620 |
622 |