Skip to content
Snippets Groups Projects
Commit a2eb97db authored by codecraft's avatar codecraft :crocodile:
Browse files

Improve Heros for Projects and correct title font

parent 382afc33
No related branches found
No related tags found
1 merge request!28Neue Website basierend auf Zola
...@@ -8,3 +8,8 @@ ...@@ -8,3 +8,8 @@
.roboto-black { .roboto-black {
font-family: 'Roboto Black'; font-family: 'Roboto Black';
} }
.media-v-centered {
@extend .media;
align-items: center;
}
...@@ -19,7 +19,12 @@ $project-colors: ( ...@@ -19,7 +19,12 @@ $project-colors: (
$project-colors-fonts: ( $project-colors-fonts: (
hack-n-fun: #ffffff, hack-n-fun: #ffffff,
schul-frei: #ffffff, schul-frei: #ffffff,
indiedact: #000000, indiedact: #1c1f33,
);
$project-colors-title-fonts: (
hack-n-fun: rgba(white, 0.7),
schul-frei: rgba(white, 0.7),
indiedact: rgba(black, 0.5),
); );
.menu-project-section { .menu-project-section {
...@@ -31,6 +36,9 @@ $project-colors-fonts: ( ...@@ -31,6 +36,9 @@ $project-colors-fonts: (
background-color: map-get($project-colors, $project); background-color: map-get($project-colors, $project);
color: map-get($project-colors-fonts, $project); color: map-get($project-colors-fonts, $project);
} }
.project-title-#{$project} {
color: map-get($project-colors-title-fonts, $project);
}
#menu-project-section-#{$project} { #menu-project-section-#{$project} {
border-color: map-get($project-colors, $project); border-color: map-get($project-colors, $project);
......
...@@ -3,14 +3,13 @@ ...@@ -3,14 +3,13 @@
<div class="container is-fluid"> <div class="container is-fluid">
<div class="columns"> <div class="columns">
{% for project in projects.items %} {% for project in projects.items %}
<section <section class="column menu-project-section" id="menu-project-section-{{ project.slug }}">
class="column menu-project-section"
id="menu-project-section-{{ project.slug }}"
>
{% set section = get_section(path = "projekte/" ~ project.slug ~ {% set section = get_section(path = "projekte/" ~ project.slug ~
"/_index.md") %} "/_index.md") %}
<h1 class="title is-6 is-mega-menu-title"><a href="{{ section.permalink }}">{{ section.title }}</a></h1> <h1 class="title is-6 is-mega-menu-title"><a href="{{ section.permalink }}">
<strong class="is-mega-menu-subtitle">{{ section.description }}</strong> <p> {{ section.title }} </p>
<p class="is-4">{{ section.description }}</p>
</a></h1>
{% for page in project.pages %} {% for page in project.pages %}
<a class="navbar-item" href="{{ page.permalink }}"> <a class="navbar-item" href="{{ page.permalink }}">
......
...@@ -16,25 +16,26 @@ ...@@ -16,25 +16,26 @@
<section class="hero hero-main is-fullheight-with-navbar project-background-{{ section.extra.project_slug }} roboto-black"> <section class="hero hero-main is-fullheight-with-navbar project-background-{{ section.extra.project_slug }} roboto-black">
<div class="hero-body"> <div class="hero-body">
<div class="container"> <div class="container">
<div class="columns is-vcentered"> <!-- <div class="columns is-vcentered"> -->
<div class="column is-one-third circle-bg"> <!-- <div class="column is-two-fifth project-title"> -->
<img class="is-1by1" src="/{{ section.extra.title_icon }}" alt="">
</div>
<div class="column is-two-fifth project-title">
<div class="columns"> <div class="columns">
<div class="column"> <div class="column project-title-{{ section.extra.project_slug }}">
<h1 class="title is-1">{{ section.title }}</h1> <h1 class="title is-1">{{ section.title }}</h1>
<p class="title is-3"> <p class="title is-3">
{{ section.description }} {{ section.description }}
</p> </p>
</div> <!-- </div> -->
</div> <!-- </div> -->
</div> </div>
</div> </div>
<div class="container"> <div class="container">
<div class="columns is-vcentered">
<div class="column is-one-third circle-bg">
<img class="is-1by1" src="/{{ section.extra.title_icon }}" alt="">
</div>
<div class="project-theses"> <div class="project-theses">
{% for thesis in section.extra.theses %} {% for thesis in section.extra.theses %}
<article class="media"> <article class="media-v-centered">
<figure class="media-left"> <figure class="media-left">
<p class="image is-64x64"> <p class="image is-64x64">
<img src="/{{ section.extra.list_icon }}" /> <img src="/{{ section.extra.list_icon }}" />
...@@ -45,6 +46,7 @@ ...@@ -45,6 +46,7 @@
</div> </div>
</article> </article>
{% endfor %} {% endfor %}
</div>
</div> </div>
</div> </div>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment