github.com/buildtool/build-tools@v0.2.29-0.20240322150259-6a1d0a553c23/www/docs/overrides/home.html (about) 1 <!-- 2 MIT License 3 4 Copyright (c) 2018 buildtool 5 6 Permission is hereby granted, free of charge, to any person obtaining a copy 7 of this software and associated documentation files (the "Software"), to deal 8 in the Software without restriction, including without limitation the rights 9 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 copies of the Software, and to permit persons to whom the Software is 11 furnished to do so, subject to the following conditions: 12 13 The above copyright notice and this permission notice shall be included in all 14 copies or substantial portions of the Software. 15 16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 SOFTWARE. 23 --> 24 25 {% extends "main.html" %} 26 {% block tabs %} 27 {{ super() }} 28 <style> 29 :root { 30 --buildtools-primary-color: #3b5672; 31 } 32 33 .md-header { 34 position: initial 35 } 36 37 .md-main__inner { 38 margin: 0 39 } 40 41 .md-content { 42 display: none 43 } 44 45 .tx-container { 46 padding-top: 1rem; 47 background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1123 258'><path d='M1124,2c0,0 0,256 0,256l-1125,0l0,-48c0,0 16,5 55,5c116,0 197,-92 325,-92c121,0 114,46 254,46c140,0 214,-167 572,-166Z' style='fill: white' /></svg>") no-repeat bottom, linear-gradient(to bottom, var(--md-primary-fg-color), var(--buildtools-primary-color) 99%, #fff 99%) 48 } 49 50 .tx-hero { 51 margin: 0 .8rem; 52 color: var(--md-primary-bg-color) 53 } 54 55 .tx-hero h1 { 56 margin-bottom: 1rem; 57 color: currentColor; 58 font-weight: 700 59 } 60 61 .tx-hero__content { 62 padding-bottom: 6rem 63 } 64 65 .tx-hero .md-button { 66 margin-top: .5rem; 67 margin-right: .5rem; 68 color: var(--md-primary-bg-color) 69 } 70 71 .tx-hero .md-button--primary { 72 background-color: var(--md-primary-bg-color); 73 color: var(--buildtools-primary-color); 74 border-color: var(--md-primary-bg-color) 75 } 76 77 .tx-hero .md-button:focus, 78 .tx-hero .md-button:hover { 79 background-color: var(--md-accent-fg-color); 80 color: var(--md-default-bg-color); 81 border-color: var(--md-accent-fg-color) 82 } 83 84 @media screen and (max-width:70em) { 85 .tx-hero h1 { 86 font-size: 1.4rem 87 } 88 89 .tx-hero__image { 90 text-align: center; 91 } 92 93 .tx-hero__image img { 94 max-width: 10rem; 95 } 96 } 97 98 @media screen and (min-width:70em) { 99 .md-sidebar--secondary { 100 display: none 101 } 102 103 .tx-hero { 104 display: flex; 105 align-items: stretch 106 } 107 108 .tx-hero__content { 109 max-width: 30rem; 110 margin-top: 3.5rem; 111 padding-bottom: 14vw 112 } 113 114 .tx-hero__image { 115 order: 1; 116 margin-left: auto; 117 margin-top: 3.5rem; 118 } 119 120 .tx-hero__image img { 121 max-width: 15rem; 122 } 123 } 124 125 @media screen and (min-width:76.25em) { 126 .md-sidebar--primary { 127 display: none 128 } 129 130 .tx-hero__image { 131 margin-left: auto; 132 } 133 134 .tx-hero__image img { 135 max-width: 20rem; 136 } 137 } 138 139 </style> 140 <section class="tx-container"> 141 <div class="md-grid md-typeset"> 142 <div class="tx-hero"> 143 <div class="tx-hero__image"> 144 <img src="assets/images/logo.png" alt="" draggable="false"> 145 </div> 146 <div class="tx-hero__content"> 147 <h1>Buildtools</h1> 148 <h2>Build services and deploy to Kubernetes - fast and easy!</h2> 149 150 <a href="{{ page.next_page.url | url }}" title="{{ page.next_page.title | striptags }}" 151 class="md-button md-button--primary"> 152 Get started 153 </a> 154 <a href="{{ config.repo_url }}" title="{{ lang.t('source.link.title') }}" class="md-button"> 155 Go to GitHub 156 </a> 157 </div> 158 </div> 159 </div> 160 </section> 161 {% endblock %} 162 {% block content %}{% endblock %} 163 {% block footer %}{% endblock %}