Skip to content

Commit 13e23c3

Browse files
committed
Polish, new banner image
1 parent 8ec1cd1 commit 13e23c3

File tree

8 files changed

+54
-21
lines changed

8 files changed

+54
-21
lines changed

_assets/css/agency.scss

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ a:hover,
4242
a:focus,
4343
a:active,
4444
a.active {
45-
outline: none;
45+
//outline: none;
4646
}
4747

4848
a {
49-
color: $brand-primary;
49+
//color: $brand-primary;
5050
}
5151

5252
a.facebook {
@@ -57,7 +57,7 @@ a:hover,
5757
a:focus,
5858
a:active,
5959
a.active {
60-
color: darken($brand-primary, 10%);
60+
//color: darken($brand-primary, 10%);
6161
}
6262

6363
h1, h2, h3, h4, h5, h6 {
@@ -262,7 +262,7 @@ header {
262262
text-align: center;
263263
color: white;
264264
.intro-text {
265-
padding-top: 45%;
265+
padding-top: 55%;
266266
padding-bottom: 5%;
267267
.intro-lead-in {
268268
@include serif-font();
@@ -286,15 +286,15 @@ header {
286286
@media(min-width: 400px) {
287287
header{
288288
.intro-text {
289-
padding-top: 40%;
289+
padding-top: 48%;
290290
}
291291
}
292292
}
293293

294294
@media(min-width: 600px) {
295295
header{
296296
.intro-text {
297-
padding-top: 35%;
297+
padding-top: 42%;
298298
}
299299
}
300300
}
@@ -303,8 +303,8 @@ header {
303303
header {
304304
//background: url('../img/header-bg.jpg') no-repeat scroll center center;
305305
.intro-text {
306-
padding-top: 28%;
307-
padding-bottom: 2.5%;
306+
padding-top: 30%;
307+
padding-bottom: 7%;
308308
.intro-lead-in {
309309
@include serif-font();
310310
font-style: italic;
@@ -777,7 +777,7 @@ img::-moz-selection {
777777
}
778778

779779
body {
780-
-webkit-tap-highlight-color: $brand-primary;
780+
webkit-tap-highlight-color: $brand-primary;
781781
}
782782

783783
// Datenschutz

_assets/css/mixins.scss

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,47 @@
11
// Bootstrap Button Variant
22

3-
@mixin button-variant($color, $background, $border)
4-
{
3+
@mixin button-variant($color, $background, $border) {
54
color: $color;
65
background-color: $background;
76
border-color: $border;
87

9-
&:hover,
108
&:focus,
9+
&.focus {
10+
color: $color;
11+
background-color: darken($background, 10%);
12+
border-color: darken($border, 25%);
13+
}
14+
&:hover {
15+
color: $color;
16+
background-color: darken($background, 10%);
17+
border-color: darken($border, 12%);
18+
}
1119
&:active,
1220
&.active,
13-
.open .dropdown-toggle {
21+
.open > &.dropdown-toggle {
1422
color: $color;
1523
background-color: darken($background, 10%);
16-
border-color: darken($border, 12%);
24+
border-color: darken($border, 12%);
25+
26+
&:hover,
27+
&:focus,
28+
&.focus {
29+
color: $color;
30+
background-color: darken($background, 17%);
31+
border-color: darken($border, 25%);
32+
}
1733
}
1834
&:active,
1935
&.active,
20-
.open .dropdown-toggle {
36+
.open > &.dropdown-toggle {
2137
background-image: none;
2238
}
2339
&.disabled,
2440
&[disabled],
2541
fieldset[disabled] & {
26-
&,
2742
&:hover,
2843
&:focus,
29-
&:active,
30-
&.active {
44+
&.focus {
3145
background-color: $background;
3246
border-color: $border;
3347
}

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ markdown: kramdown
1919

2020
gems: [jekyll-assets, github-pages, uglifier]
2121

22-
exclude: [build.sh, Gemfile, pyserve.bat]
22+
exclude: [build.sh, Gemfile, pyserve.bat, README.md]
2323

2424

2525
assets:

_includes/foot.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

1010
<!-- Site JavaScript -->
1111
{% js ff5 %}
12-
<!--<script src="/js/ff5.min.js"></script>-->
12+
13+
{% include tracking.html %}
1314

1415
</body>
1516

_includes/tracking.html

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!-- Piwik -->
2+
<script type="text/javascript">
3+
var _paq = _paq || [];
4+
_paq.push(['trackPageView']);
5+
_paq.push(['enableLinkTracking']);
6+
(function() {
7+
var u="//analytics.funkforce5.de/";
8+
_paq.push(['setTrackerUrl', u+'piwik.php']);
9+
_paq.push(['setSiteId', 2]);
10+
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
11+
g.type='text/javascript'; g.async=true; g.defer=true; g.src=u+'piwik.js'; s.parentNode.insertBefore(g,s);
12+
})();
13+
</script>
14+
<noscript><p><img src="//analytics.funkforce5.de/piwik.php?idsite=2" style="border:0;" alt="" /></p></noscript>
15+
<!-- End Piwik Code -->

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
rm -rf .asset-cache _site
2-
jekyll build --watch
2+
jekyll build --watch --force_polling

img/header-bg.jpg

25 KB
Loading

pyserve.bat

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
@echo off
22
setlocal
33

4+
start http://localhost:8000
5+
46
cd _site
57
python -m http.server
8+

0 commit comments

Comments
 (0)