mirror of
https://github.com/squidfunk/mkdocs-material.git
synced 2024-06-14 11:52:32 +03:00
Added Manticore Games to the list of premium sponsors
This commit is contained in:
parent
ff53ba0d76
commit
155f82f934
BIN
.github/assets/sponsors/manticoregames.png
vendored
Normal file
BIN
.github/assets/sponsors/manticoregames.png
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 13 KiB |
@ -62,6 +62,9 @@
|
|||||||
<p id="premium-sponsors" align="center"><strong>Special thanks</strong> to our <strong>premium sponsors</strong>:</p>
|
<p id="premium-sponsors" align="center"><strong>Special thanks</strong> to our <strong>premium sponsors</strong>:</p>
|
||||||
<p> </p>
|
<p> </p>
|
||||||
<p align="center">
|
<p align="center">
|
||||||
|
<a href="https://www.manticoregames.com/" target=_blank><img
|
||||||
|
src="https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/manticoregames.png" height="40"
|
||||||
|
/></a>
|
||||||
<a href="https://kx.com/" target=_blank><img
|
<a href="https://kx.com/" target=_blank><img
|
||||||
src="https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/kx.svg" height="40"
|
src="https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/kx.svg" height="40"
|
||||||
/></a>
|
/></a>
|
||||||
|
@ -104,16 +104,15 @@ You can cancel your sponsorship anytime.[^4]
|
|||||||
|
|
||||||
**Special thanks** to our **premium sponsors**:
|
**Special thanks** to our **premium sponsors**:
|
||||||
|
|
||||||
[![KX]](https://kx.com/){ target=_blank }
|
[![Manticore Games]](https://www.manticoregames.com/){ target=_blank title="Manticore Games" }
|
||||||
|
[![KX]](https://kx.com/){ target=_blank title="KX Systems" }
|
||||||
[![Hummingbot]](https://hummingbot.io/){ target=_blank }
|
[![Hummingbot]](https://hummingbot.io/){ target=_blank title="Hummingbot" }
|
||||||
|
[![Basler]](https://docs.baslerweb.com/){ target=_blank title="Basler" }
|
||||||
[![Basler]](https://docs.baslerweb.com/){ target=_blank }
|
[![Cirrus CI]](https://cirrus-ci.org/){ target=_blank title="Cirrus CI" }
|
||||||
|
|
||||||
[![Cirrus CI]](https://cirrus-ci.org/){ target=_blank }
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
[Manticore Games]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/manticoregames.png
|
||||||
[KX]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/kx.svg
|
[KX]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/kx.svg
|
||||||
[Hummingbot]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/hummingbot.png
|
[Hummingbot]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/hummingbot.png
|
||||||
[Basler]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/basler.png
|
[Basler]: https://raw.githubusercontent.com/squidfunk/mkdocs-material/master/.github/assets/sponsors/basler.png
|
||||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -3,7 +3,7 @@
|
|||||||
-#}
|
-#}
|
||||||
{% extends "base.html" %}
|
{% extends "base.html" %}
|
||||||
{% block extrahead %}
|
{% block extrahead %}
|
||||||
<link rel="stylesheet" href="{{ 'overrides/assets/stylesheets/main.5136944a.min.css' | url }}">
|
<link rel="stylesheet" href="{{ 'overrides/assets/stylesheets/main.a0dddeeb.min.css' | url }}">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block announce %}
|
{% block announce %}
|
||||||
<a href="https://twitter.com/squidfunk">
|
<a href="https://twitter.com/squidfunk">
|
||||||
|
@ -36,9 +36,30 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Images
|
// Premium sponsor image
|
||||||
img {
|
img {
|
||||||
height: px2rem(40px);
|
height: px2rem(60px);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Premium sponsor list
|
||||||
|
p:last-child {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
// Premium sponsor link
|
||||||
|
> a {
|
||||||
|
display: block;
|
||||||
|
flex-shrink: 0;
|
||||||
|
padding: px2rem(10px) px2rem(20px);
|
||||||
|
transition: transform 125ms;
|
||||||
|
|
||||||
|
// Premium sponsor item on focus/hover
|
||||||
|
&:focus,
|
||||||
|
&:hover {
|
||||||
|
transform: scale(1.1);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -48,7 +69,13 @@
|
|||||||
// Sponsorship list
|
// Sponsorship list
|
||||||
&__list {
|
&__list {
|
||||||
margin: 2em 0;
|
margin: 2em 0;
|
||||||
overflow: auto;
|
|
||||||
|
// Clearfix, because we can't use overflow: auto
|
||||||
|
&::after {
|
||||||
|
display: block;
|
||||||
|
clear: both;
|
||||||
|
content: "";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Sponsorship item
|
// Sponsorship item
|
||||||
@ -91,7 +118,7 @@
|
|||||||
display: block;
|
display: block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: auto;
|
height: auto;
|
||||||
filter: grayscale(100%);
|
filter: grayscale(100%) opacity(75%);
|
||||||
transition: filter 125ms;
|
transition: filter 125ms;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user