Remove banner

This commit is contained in:
Jeremy Thomas 2020-05-17 13:43:03 +01:00
parent dffdffa1a4
commit 0dc44161bc
7 changed files with 30 additions and 17 deletions

View File

@ -3,6 +3,7 @@
"monovm": { "monovm": {
"name": "monovm", "name": "monovm",
"url": "https://monovm.com/", "url": "https://monovm.com/",
"textOnly": "VPS Hosting",
"width":"108", "width":"108",
"height":"40" "height":"40"
}, },

View File

@ -15,13 +15,17 @@
{% endunless %} {% endunless %}
title="{{ sponsor_alt }}" title="{{ sponsor_alt }}"
> >
{% if sponsor.textOnly %}
<strong>{{ sponsor.textOnly }}</strong>
{% else %}
{% {%
include elements/responsive-image-2x.html include elements/responsive-image-2x.html
path=sponsor_path path=sponsor_path
extension="png" extension="png"
alt=sponsor_alt alt=sponsor_alt
width=sponsor.width width=sponsor.width
height=sponsor.height height=sponsor.height
%} %}
{% endif %}
</a> </a>
</div> </div>

View File

@ -15,7 +15,7 @@
<span> <span>
and and
<br> <br>
<a href="https://www.routerhosting.com/" target="_blank">RouterHosting</a> <a href="https://www.routerhosting.com/" target="_blank"><strong>RouterHosting</strong></a>
</span> </span>
</div> </div>
</div> </div>

View File

@ -7,7 +7,8 @@
<body <body
class="layout-{{ page.layout }}{% if page.doc-tab %} page-{{ page.doc-tab}}{% endif %}" class="layout-{{ page.layout }}{% if page.doc-tab %} page-{{ page.doc-tab}}{% endif %}"
> >
{% include global/deprecated.html %} {% include global/notice.html %} {{ {% include global/deprecated.html %}
content }} {% include global/footer.html %} {{ content }}
{% include global/footer.html %}
</body> </body>
</html> </html>

View File

@ -34,9 +34,9 @@ $bd-partner-width: 12rem
text-align: center text-align: center
&.is-text &.is-text
color: $text-light color: $text-light
font-size: 0.875em // font-size: 0.875em
line-height: 1.25 line-height: 1.25
min-height: 0 // min-height: 0
.bd-sponsor-item .bd-sponsor-item
display: inline display: inline
.bd-sponsor-item:before .bd-sponsor-item:before
@ -47,6 +47,7 @@ $bd-partner-width: 12rem
@extend %center @extend %center
flex-grow: 1 flex-grow: 1
position: relative position: relative
strong,
img img
position: relative position: relative

View File

@ -3829,6 +3829,11 @@ fieldset[disabled] .button {
color: currentColor; color: currentColor;
} }
.table td.is-vcentered,
.table th.is-vcentered {
vertical-align: middle;
}
.table th { .table th {
color: #363636; color: #363636;
} }
@ -8019,11 +8024,13 @@ label.panel-block:hover {
} }
.tabs.is-toggle li:first-child a { .tabs.is-toggle li:first-child a {
border-radius: 4px 0 0 4px; border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
} }
.tabs.is-toggle li:last-child a { .tabs.is-toggle li:last-child a {
border-radius: 0 4px 4px 0; border-bottom-right-radius: 4px;
border-top-right-radius: 4px;
} }
.tabs.is-toggle li.is-active a { .tabs.is-toggle li.is-active a {
@ -14532,9 +14539,7 @@ svg {
.bd-partner-sponsor.is-text { .bd-partner-sponsor.is-text {
color: #7a7a7a; color: #7a7a7a;
font-size: 0.875em;
line-height: 1.25; line-height: 1.25;
min-height: 0;
} }
.bd-partner-sponsor.is-text .bd-sponsor-item { .bd-partner-sponsor.is-text .bd-sponsor-item {
@ -14550,6 +14555,7 @@ svg {
position: relative; position: relative;
} }
.bd-sponsor-item strong,
.bd-sponsor-item img { .bd-sponsor-item img {
position: relative; position: relative;
} }

File diff suppressed because one or more lines are too long