new logo header
This commit is contained in:
parent
4497aa046d
commit
f2c16c4b84
5 changed files with 29 additions and 16 deletions
|
@ -7,7 +7,6 @@
|
||||||
foreach($collections as $c) {
|
foreach($collections as $c) {
|
||||||
$html = '
|
$html = '
|
||||||
<div class="collection">
|
<div class="collection">
|
||||||
<h1>' . $c["name"] . '</h1>
|
|
||||||
<div class="flexbox-col-img">
|
<div class="flexbox-col-img">
|
||||||
<div class="col-img-container">
|
<div class="col-img-container">
|
||||||
<img class="col-image" src="projects_data/img/' . $c['preview_image_url'] . '" alt="example image for ' . $c['name'] .'">
|
<img class="col-image" src="projects_data/img/' . $c['preview_image_url'] . '" alt="example image for ' . $c['name'] .'">
|
||||||
|
@ -22,6 +21,7 @@
|
||||||
' . $c['collection_description'] . '
|
' . $c['collection_description'] . '
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<h1>' . $c["name"] . '</h1>
|
||||||
</div>
|
</div>
|
||||||
';
|
';
|
||||||
print($html);
|
print($html);
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
/* FONTS */
|
/* FONTS */
|
||||||
|
|
||||||
/* Überschrift Font */
|
/* Überschrift Font
|
||||||
|
====================*/
|
||||||
|
|
||||||
/* im-fell-english-sc-regular - latin */
|
/* im-fell-english-sc-regular - latin */
|
||||||
@font-face {
|
@font-face {
|
||||||
|
@ -16,7 +17,8 @@
|
||||||
url('../fonts/im-fell-english-sc-v10-latin-regular.svg#IMFellEnglishSC') format('svg'); /* Legacy iOS */
|
url('../fonts/im-fell-english-sc-v10-latin-regular.svg#IMFellEnglishSC') format('svg'); /* Legacy iOS */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Fließtext Font */
|
/* Fließtext Font
|
||||||
|
====================*/
|
||||||
|
|
||||||
/* im-fell-great-primer-regular - latin */
|
/* im-fell-great-primer-regular - latin */
|
||||||
@font-face {
|
@font-face {
|
||||||
|
@ -46,12 +48,12 @@
|
||||||
url('../fonts/im-fell-great-primer-v10-latin-italic.svg#IMFellGreatPrimer') format('svg'); /* Legacy iOS */
|
url('../fonts/im-fell-great-primer-v10-latin-italic.svg#IMFellGreatPrimer') format('svg'); /* Legacy iOS */
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Festlegung Font */
|
/* Festlegung Font
|
||||||
|
===================*/
|
||||||
|
|
||||||
body {
|
body {
|
||||||
font-family: 'IM Fell Great Primer';
|
font-family: 'IM Fell Great Primer';
|
||||||
margin: 0;
|
margin: 0;
|
||||||
text-align: center;
|
|
||||||
background-color: #000;
|
background-color: #000;
|
||||||
color: #f9f9ed;
|
color: #f9f9ed;
|
||||||
}
|
}
|
||||||
|
@ -60,7 +62,8 @@ h1, h2, h3, h4, h5 {
|
||||||
font-family: 'IM Fell English SC'
|
font-family: 'IM Fell English SC'
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Breitenanpassung */
|
/* Breitenanpassung
|
||||||
|
====================*/
|
||||||
|
|
||||||
@media only screen and (min-width: 1000px) {
|
@media only screen and (min-width: 1000px) {
|
||||||
div.collection {
|
div.collection {
|
||||||
|
@ -124,12 +127,12 @@ header {
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav ul {
|
.nav ul {
|
||||||
margin: 0;
|
float: right;
|
||||||
|
margin-right: 20px;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
width: 100%;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav li {
|
.nav li {
|
||||||
|
@ -158,10 +161,14 @@ header {
|
||||||
}
|
}
|
||||||
|
|
||||||
.logo {
|
.logo {
|
||||||
margin-top: 0.5rem;
|
margin-top: 20px;
|
||||||
|
margin-left: 20px;
|
||||||
|
float: left;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Collection */
|
/* Collection
|
||||||
|
================*/
|
||||||
|
|
||||||
div.collection_container {
|
div.collection_container {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -170,6 +177,7 @@ div.collection_container {
|
||||||
|
|
||||||
div.collection {
|
div.collection {
|
||||||
margin: 4px;
|
margin: 4px;
|
||||||
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
div.collection h1 {
|
div.collection h1 {
|
||||||
|
@ -183,7 +191,8 @@ div.collection div.col-desc {
|
||||||
text-align: justify;
|
text-align: justify;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Img Collections + Slide in stuff */
|
/* Img Collections + Slide in stuff
|
||||||
|
====================================*/
|
||||||
|
|
||||||
.flexbox-col-img {
|
.flexbox-col-img {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -234,7 +243,8 @@ div.collection div.col-desc {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Images Instagram */
|
/* Images Instagram
|
||||||
|
=======================*/
|
||||||
|
|
||||||
.images {
|
.images {
|
||||||
filter: grayscale(100%);
|
filter: grayscale(100%);
|
||||||
|
@ -253,7 +263,8 @@ div.collection div.col-desc {
|
||||||
transition: filter 0.8s ease-out;
|
transition: filter 0.8s ease-out;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* buttons */ /* Noch ordnen */
|
/* buttons
|
||||||
|
=======================*/ /* Noch ordnen */
|
||||||
|
|
||||||
.button {
|
.button {
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
|
|
@ -11,7 +11,9 @@
|
||||||
<div class="col-3">
|
<div class="col-3">
|
||||||
<ul class="unstyled-list" style="text-align:center;">
|
<ul class="unstyled-list" style="text-align:center;">
|
||||||
<li><strong>Follow us</strong></li>
|
<li><strong>Follow us</strong></li>
|
||||||
<a href="https://www.facebook.com/bricabracomania" target="popup"><img src="images\logo_button\fb_ivory.png" style ="width:50px; height:50px;"/></a> <a href="https://www.etsy.com/shop/BricabracomaniaCraft" target="popup"><img src="images\logo_button\etsy_ivory.png" style ="width:50px; height:50px;"/></a> <a href="https://www.instagram.com/bricabracomania_metalworks" target="popup"><img src="images\logo_button\instagram_ivory.png" style ="width:50px; height:50px;"/></a>
|
<a href="https://www.facebook.com/bricabracomania" target="popup"><img src="images/logo_button/fb_ivory.png" style ="width:50px; height:50px;"/></a>
|
||||||
|
<a href="https://www.etsy.com/shop/BricabracomaniaCraft" target="popup"><img src="images/logo_button/etsy_ivory.png" style ="width:50px; height:50px;"/></a>
|
||||||
|
<a href="https://www.instagram.com/bricabracomania_metalworks" target="popup"><img src="images/logo_button/instagram_ivory.png" style ="width:50px; height:50px;"/></a>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
@ -7,12 +7,12 @@
|
||||||
<link href="css/styles.css" rel="stylesheet" type="text/css">
|
<link href="css/styles.css" rel="stylesheet" type="text/css">
|
||||||
<link rel="icon"
|
<link rel="icon"
|
||||||
type="image/png"
|
type="image/png"
|
||||||
href="/img/favicon.png" />
|
href="images/logo_button/favicon.png" />
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<img src="images/logo_button/logo_ivory.png" alt="bricabracomania logo" class="logo" />
|
<img src="images/logo_button/header_logo_ivory_test.png" alt="bricabracomania logo" class="logo" />
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="/">Home</a></li>
|
<li><a href="/">Home</a></li>
|
||||||
|
|
BIN
images/logo_button/header_logo_ivory_test.png
Normal file
BIN
images/logo_button/header_logo_ivory_test.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.4 KiB |
Loading…
Reference in a new issue