-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
some improvements, create sponsor-page
- Loading branch information
1 parent
ab3668f
commit 1e7aa2c
Showing
7 changed files
with
116 additions
and
126 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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/*--------------------- | ||
Counter | ||
-----------------------*/ | ||
|
||
.counter-section { | ||
.counter-text span { | ||
font-size: 16px; | ||
color: #ffffff; | ||
} | ||
|
||
.counter-text h3 { | ||
color: #ffffff; | ||
font-weight: 700; | ||
line-height: 38px; | ||
margin-top: 10px; | ||
} | ||
|
||
.cd-timer .cd-item { | ||
display: inline-block; | ||
text-align: center; | ||
margin-left: 35px; | ||
height: 120px; | ||
width: 120px; | ||
padding-top: 32px; | ||
position: relative; | ||
} | ||
|
||
.cd-timer .cd-item:after { | ||
position: absolute; | ||
left: 0; | ||
top: 0; | ||
width: 100%; | ||
height: 100%; | ||
border: 2px solid #ffffff; | ||
content: ""; | ||
opacity: 0.1; | ||
border-radius: 4px; | ||
} | ||
|
||
.cd-timer .cd-item:first-child { | ||
margin-left: 0; | ||
} | ||
|
||
.cd-timer .cd-item span { | ||
font-size: 60px; | ||
color: #ffffff; | ||
font-weight: 600; | ||
line-height: 30px; | ||
} | ||
|
||
.cd-timer .cd-item p { | ||
font-size: 18px; | ||
color: #ffffff; | ||
margin-bottom: 0; | ||
line-height: 30px; | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
--- | ||
title: "Sponsoren & Partner" | ||
description: Wir danken unseren Sponsoren und Partnern für ihre Unterstützung bei der Edirom Summer School | ||
layout: default | ||
card: false | ||
--- | ||
|
||
<div class="container"> | ||
<div class="row py-3"> | ||
<h1 class="py-3 text-center">{{ page.title }}</h1> | ||
</div> | ||
<div><p class="text-center">Wir danken unseren Sponsoren und Partnern für ihre Unterstützung bei der Edirom Summer School!</p></div> | ||
|
||
<hr/> | ||
|
||
<div class="row py-3 justify-content-around align-items-center"> | ||
<h2>Sponsoren</h2> | ||
<div class="col-10 col-sm-8 col-md-6 col-lg-4"> | ||
<a class="m-1" href="https://text-plus.org/" | ||
target="_blank"><img width="200px" | ||
src="{{ '/assets/img/textplus_logo_RGB.png' | relative_url }}" | ||
alt="TextPlus Logo"/></a> | ||
</div> | ||
</div> | ||
|
||
<hr/> | ||
|
||
<div class="row py-3 justify-content-around align-items-center"> | ||
<h2>Partner</h2> | ||
<div class="col-10 col-sm-8 col-md-6 col-lg-4"> | ||
<a class="m-1" href="https://www.uni-paderborn.de" | ||
target="_blank"><img width="250px" | ||
src="{{ '/assets/img/UPB_Logo_DE_vierfarbig_CMYK.png' | relative_url }}" | ||
alt="Universität Paderborn Logo"/></a> | ||
</div> | ||
<div class="col-10 col-sm-8 col-md-6 col-lg-4"> | ||
<a class="m-1" href="https://www.edirom.de" | ||
target="_blank"><img width="250px" | ||
src="{{ '/assets/img/ViFE-logo-s.png' | relative_url }}" | ||
alt="ViFE Logo"/></a> | ||
</div> | ||
|
||
<div class="col-10 col-sm-8 col-md-6 col-lg-4"> | ||
<a href="https://zenmem.de/" | ||
target="_blank"><img width="500px" | ||
src="{{ '/assets/img/ZenMEM_dunkel.png' | relative_url }}" alt="ZenMEM Logo" | ||
class="img-fluid"/> | ||
</a> | ||
</div> | ||
|
||
</div> | ||
</div> |