]> git.ipfire.org Git - thirdparty/bulma.git/commitdiff
Add sponsors
authorJeremy Thomas <bbxdesign@gmail.com>
Mon, 4 Dec 2017 13:11:09 +0000 (13:11 +0000)
committerJeremy Thomas <bbxdesign@gmail.com>
Mon, 4 Dec 2017 13:11:09 +0000 (13:11 +0000)
docs/_includes/footer.html
docs/_includes/sponsors.html [new file with mode: 0644]
docs/_sass/sponsors.sass [new file with mode: 0644]
docs/bulma-docs.sass
docs/css/bulma-docs.css
docs/images/sponsors/bestcss.png [new file with mode: 0644]

index 01706e170693b75c8065325716a6a50b131d2fe5..46de21b7f28b9fb22483f1428647ee726de226b1 100644 (file)
@@ -1,3 +1,5 @@
+{% include sponsors.html %}
+
 {% include bsa.html %}
 
 <section id="newsletter" class="hero is-primary">
diff --git a/docs/_includes/sponsors.html b/docs/_includes/sponsors.html
new file mode 100644 (file)
index 0000000..aa70370
--- /dev/null
@@ -0,0 +1,19 @@
+<section class="hero is-light">
+  <div class="hero-body">
+    <div class="container">
+      <div class="columns is-vcentered">
+        <div class="column is-4">
+          <p class="title">Bulma <strong>Sponsors</strong></p>
+        </div>
+
+        <div class="column is-8">
+          <div class="bd-sponsors">
+            <a href="http://bestcss.in/" target="_blank">
+              <img src="{{ site.url }}/images/sponsors/bestcss.png" alt="bestcss logo">
+            </a>
+          </div>
+        </div>
+      </div>
+    </div>
+  </div>
+</section>
diff --git a/docs/_sass/sponsors.sass b/docs/_sass/sponsors.sass
new file mode 100644 (file)
index 0000000..133557b
--- /dev/null
@@ -0,0 +1,8 @@
+.bd-sponsors
+  align-items: center
+  display: flex
+  a
+    align-items: center
+    display: flex
+    justify-content: center
+    width: 150px
index 0073d449d5c2463995be6b69c877dbd2bc497d54..23e4adb416687c458176cb2d4997addeff7720b1 100644 (file)
@@ -24,3 +24,4 @@ $patreon-blue: #052d49
 @import "./_sass/bootstrap"
 @import "./_sass/klmn"
 @import "./_sass/patreon"
+@import "./_sass/sponsors"
index 611fc5bb11d877bb14583968de015f22a8863e05..ab6aac16f5a1a82ba8196506cd24689bf4c2d323 100644 (file)
@@ -679,6 +679,10 @@ table th {
   text-transform: uppercase !important;
 }
 
+.is-italic {
+  font-style: italic !important;
+}
+
 .has-text-white {
   color: white !important;
 }
@@ -13299,4 +13303,26 @@ html.route-index .hero.is-primary a.column:hover .title strong {
   }
 }
 
+.bd-sponsors {
+  -webkit-box-align: center;
+      -ms-flex-align: center;
+          align-items: center;
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex;
+}
+
+.bd-sponsors a {
+  -webkit-box-align: center;
+      -ms-flex-align: center;
+          align-items: center;
+  display: -webkit-box;
+  display: -ms-flexbox;
+  display: flex;
+  -webkit-box-pack: center;
+      -ms-flex-pack: center;
+          justify-content: center;
+  width: 150px;
+}
+
 /*# sourceMappingURL=bulma-docs.css.map */
\ No newline at end of file
diff --git a/docs/images/sponsors/bestcss.png b/docs/images/sponsors/bestcss.png
new file mode 100644 (file)
index 0000000..731549a
Binary files /dev/null and b/docs/images/sponsors/bestcss.png differ