-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
67 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,18 @@ | ||
|
||
<h3 class="h2"> | ||
<div class="pf-row"> | ||
<div class="pf-grow pf-sponsor-gold-header">Gold Sponsors</div> | ||
|
||
<div class="pf-sponsors"> | ||
<span>Thanks to</span> | ||
<h2 class="no-margin"> | ||
Gold Sponsor | ||
</h2> | ||
<div class="pf-margin-big"> | ||
<a href="https://gruenecho.de/en" target="_blank" rel="noopener noreferrer"> | ||
<div class="pf-sponsor pf-sponsor-gold pf-sponsor-dark"> | ||
<img src="https://gruenecho.de/img/ge-logo.svg" alt="The Pirate Forest"> | ||
</div> | ||
</a> | ||
<a href="https://github.com/sponsors/b-lack" target="_blank" rel="noopener noreferrer"> | ||
<div class="pf-sponsor pf-sponsor-gold pf-sponsor-dark"> | ||
<span class="pf-sponsor-text">Become a sponsor</span> | ||
</div> | ||
</a> | ||
</div> | ||
</h3> | ||
<div class="pf-under-title pf-unterlines"> | ||
|
||
</div> | ||
<div> | ||
<a href="https://gruenecho.de/en" target="_blank" rel="noopener noreferrer"> | ||
<div class="pf-sponsor pf-sponsor-gold pf-sponsor-dark"> | ||
<img src="https://gruenecho.de/img/ge-logo.svg" alt="The Pirate Forest"> | ||
</div> | ||
</a> | ||
</div> | ||
|
||
<div class="text-center margin-big"> | ||
<a class="pf-under-title pf-unterlines" href="https://github.com/sponsors/b-lack" target="_blank" rel="noopener noreferrer">Become a <b>Gold Level Sponsor</b></a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,53 @@ | ||
|
||
.pf-sponsor { | ||
|
||
&-gold { | ||
width: 100px; | ||
height: 100px; | ||
border-radius: 50%; | ||
padding: 15px; | ||
.pf-sponsors { | ||
background-color: #222; | ||
padding: 20px; | ||
margin: 80px 0; | ||
text-align: center; | ||
color: #444; | ||
} | ||
.pf-sponsor { | ||
margin: 10px; | ||
display: inline-block; | ||
text-align: center; | ||
:hover { | ||
transform: scale(1.1); | ||
} | ||
&-gold { | ||
width: 100px; | ||
height: 100px; | ||
border-radius: 50%; | ||
padding: 15px; | ||
overflow: hidden; | ||
img{ | ||
object-fit: cover; | ||
overflow: hidden; | ||
img{ | ||
object-fit: cover; | ||
overflow: hidden; | ||
max-width: 100px; | ||
max-height: 100px; | ||
} | ||
} | ||
&-dark { | ||
background-color: #000; | ||
} | ||
&-light { | ||
background-color: #fff; | ||
max-width: 100px; | ||
max-height: 100px; | ||
} | ||
} | ||
&-dark { | ||
background-color: #000; | ||
color: #fff; | ||
} | ||
&-dark:hover { | ||
background-color: #111; | ||
} | ||
&-light { | ||
background-color: #fff; | ||
color: #000; | ||
} | ||
&-light:hover { | ||
background-color: #eee; | ||
} | ||
|
||
.pf-sponsor-text { | ||
font-size: 0.8em; | ||
margin-top: 30px; | ||
display: inline-block; | ||
} | ||
|
||
} | ||
.pf-sponsor-gold-header{ | ||
color: yellow; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,7 @@ body{ | |
font-size: 1.3em; | ||
margin: 0; | ||
} | ||
main{ | ||
main, .no-margin{ | ||
margin: 0px; | ||
} | ||
a, .pf-clickable{ | ||
|