diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..364fdec --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +public/ diff --git a/LICENSE b/LICENSE index 8a384a6..d4717fe 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Nathan Day, TheJoKlLa +Copyright (c) 2018 TheJoKlLa Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 917e0d2..27baafc 100644 --- a/README.md +++ b/README.md @@ -3,4 +3,7 @@ Responsive Theme without Javascript ## Main Colors 1. #00d4aa -2. #3c474d \ No newline at end of file +2. #3c474d + +## Sponsors Logo +880px x 625px \ No newline at end of file diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 4f3fb8e..cd5ec43 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -1,15 +1,11 @@ diff --git a/layouts/partials/head_meta.html b/layouts/partials/head_meta.html index e6d18ce..97e7e43 100644 --- a/layouts/partials/head_meta.html +++ b/layouts/partials/head_meta.html @@ -3,9 +3,20 @@ + + + + + + + + + + + {{ $.Site.Title }} - {{ $.Page.Title }} \ No newline at end of file diff --git a/static/css/content.css b/static/css/content.css index 6bb9999..6aaede7 100644 --- a/static/css/content.css +++ b/static/css/content.css @@ -35,25 +35,34 @@ main .list-project .content { } /* project sites */ -main .header-project .content{ - display: flex; - +main .header-project .content { padding-top: 5px; margin-top: 10px; - max-height: 200px; + display: flex; + + flex-direction: row; + justify-content: space-between; } main .header-project .content .logo { - width: 200px; - margin-left: auto; - margin-right: 20px; + align-self: center; + height: 200px; } -main .header-project .content .logo img { - width: : 100%; -} - -@media (max-width: 35em) { - main .header-project .content .logo { - display: none; +/* Change Grid Structure */ +@media (max-width: 30em) { + main .header-project .content { + flex-direction: column-reverse; + justify-content: space-between; } + + main .header-project .content .logo { + align-self: center; + width: 200px; + } +} + +/* images */ +.text-justify img { + display: block; + margin: 50px auto; } \ No newline at end of file diff --git a/static/css/main.css b/static/css/main.css index 134c520..a5bcbcf 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -117,14 +117,6 @@ body { top:0; } -/* main */ -main { - padding: 75px 30px 100px 30px; - font-family: Roboto, sans-serif; -} - -/* 48em = 768px @ 16pt font */ - @media (min-width: 48em) { .header li { float: left; @@ -140,8 +132,18 @@ main { .header .menu-icon { display: none; } +} + +/* main */ +main { + padding: 75px 30px 150px 30px; + font-family: Roboto, sans-serif; +} + +/* Change Padding for Mobile View */ +@media (min-width: 48em) { main { - padding: 75px 150px 100px 150px; + padding: 75px 150px 100px 150px; } } @@ -158,24 +160,32 @@ main { bottom: 0; width: 100%; padding: 20px 0px; - display: flex; + display: grid; + grid-template-columns: 20px 100px 10px auto 10px 100px 20px; } -.footer .text{ - margin-right: auto; - margin-left: auto; +.footer .text { + grid-column-start: 4; } -.footer .sponsor{ - height: 76px; - width: 115px; - margin: -15px 30px -15px auto; +.footer .sponsor { + grid-column-start: 6; + width: 100%; } -.footer .sponsor_placeholder{ - height: 76px; - width: 115px; - margin: -15px auto -15px 30px; +/* Change Grid Structure */ +@media (max-width: 48em) { + .footer { + grid-template-columns: 10px auto 10px 100px 10px; + } + + .footer .text { + grid-column-start: 2; + } + + .footer .sponsor { + grid-column-start: 4; + } } .footer p { diff --git a/static/css/size.css b/static/css/size.css new file mode 100644 index 0000000..20af409 --- /dev/null +++ b/static/css/size.css @@ -0,0 +1,4 @@ +:root { + --size-normal: 48em; + --size-small: 35em; +} \ No newline at end of file diff --git a/static/img/favicon/android-chrome-192x192.png b/static/img/favicon/android-chrome-192x192.png index fa63d54..e6bf9c4 100644 Binary files a/static/img/favicon/android-chrome-192x192.png and b/static/img/favicon/android-chrome-192x192.png differ diff --git a/static/img/favicon/android-chrome-512x512.png b/static/img/favicon/android-chrome-512x512.png index fb0850e..eb8c860 100644 Binary files a/static/img/favicon/android-chrome-512x512.png and b/static/img/favicon/android-chrome-512x512.png differ diff --git a/static/img/favicon/apple-touch-icon.png b/static/img/favicon/apple-touch-icon.png index 84869aa..3b99b19 100644 Binary files a/static/img/favicon/apple-touch-icon.png and b/static/img/favicon/apple-touch-icon.png differ diff --git a/static/img/favicon/browserconfig.xml b/static/img/favicon/browserconfig.xml index 05bdbfe..71d5c5c 100644 --- a/static/img/favicon/browserconfig.xml +++ b/static/img/favicon/browserconfig.xml @@ -2,7 +2,7 @@ - + #3c474d diff --git a/static/img/favicon/favicon-16x16.png b/static/img/favicon/favicon-16x16.png index 9e22aa3..810116c 100644 Binary files a/static/img/favicon/favicon-16x16.png and b/static/img/favicon/favicon-16x16.png differ diff --git a/static/img/favicon/favicon-32x32.png b/static/img/favicon/favicon-32x32.png index e5fa09c..4a70092 100644 Binary files a/static/img/favicon/favicon-32x32.png and b/static/img/favicon/favicon-32x32.png differ diff --git a/static/img/favicon/favicon.ico b/static/img/favicon/favicon.ico new file mode 100644 index 0000000..275d539 Binary files /dev/null and b/static/img/favicon/favicon.ico differ diff --git a/static/img/favicon/logo_512x512.png b/static/img/favicon/logo_512x512.png deleted file mode 100644 index fb0850e..0000000 Binary files a/static/img/favicon/logo_512x512.png and /dev/null differ diff --git a/static/img/favicon/mstile-144x144.png b/static/img/favicon/mstile-144x144.png index 5816317..f7d4155 100644 Binary files a/static/img/favicon/mstile-144x144.png and b/static/img/favicon/mstile-144x144.png differ diff --git a/static/img/favicon/mstile-150x150.png b/static/img/favicon/mstile-150x150.png index b7d743f..d69ac20 100644 Binary files a/static/img/favicon/mstile-150x150.png and b/static/img/favicon/mstile-150x150.png differ diff --git a/static/img/favicon/mstile-310x150.png b/static/img/favicon/mstile-310x150.png index 3a83f69..c86efc8 100644 Binary files a/static/img/favicon/mstile-310x150.png and b/static/img/favicon/mstile-310x150.png differ diff --git a/static/img/favicon/mstile-310x310.png b/static/img/favicon/mstile-310x310.png index 032a3da..5e0384d 100644 Binary files a/static/img/favicon/mstile-310x310.png and b/static/img/favicon/mstile-310x310.png differ diff --git a/static/img/favicon/mstile-70x70.png b/static/img/favicon/mstile-70x70.png index 1f3d09f..70b9d17 100644 Binary files a/static/img/favicon/mstile-70x70.png and b/static/img/favicon/mstile-70x70.png differ diff --git a/static/img/favicon/site.webmanifest b/static/img/favicon/site.webmanifest index d7b9c45..a12f719 100644 --- a/static/img/favicon/site.webmanifest +++ b/static/img/favicon/site.webmanifest @@ -1,14 +1,14 @@ { - "name": "", - "short_name": "", + "name": "FabInfra", + "short_name": "FabInfra", "icons": [ { - "src": "/android-chrome-192x192.png", + "src": "/img/favicon/android-chrome-192x192.png", "sizes": "192x192", "type": "image/png" }, { - "src": "/android-chrome-512x512.png", + "src": "/img/favicon/android-chrome-512x512.png", "sizes": "512x512", "type": "image/png" } diff --git a/static/img/sponsors/BMBF.jpg b/static/img/sponsors/BMBF.jpg deleted file mode 100644 index e91c985..0000000 Binary files a/static/img/sponsors/BMBF.jpg and /dev/null differ diff --git a/static/img/sponsors/BMBF_DE.png b/static/img/sponsors/BMBF_DE.png new file mode 100644 index 0000000..1599826 Binary files /dev/null and b/static/img/sponsors/BMBF_DE.png differ diff --git a/static/img/sponsors/BMBF_EN.png b/static/img/sponsors/BMBF_EN.png new file mode 100644 index 0000000..01e746b Binary files /dev/null and b/static/img/sponsors/BMBF_EN.png differ diff --git a/static/img/sponsors/BMBF_ENG.jpg b/static/img/sponsors/BMBF_ENG.jpg deleted file mode 100644 index 1f53176..0000000 Binary files a/static/img/sponsors/BMBF_ENG.jpg and /dev/null differ diff --git a/static/img/sponsors/FabInfra.png b/static/img/sponsors/FabInfra.png new file mode 100644 index 0000000..df44db9 Binary files /dev/null and b/static/img/sponsors/FabInfra.png differ