Colour change on mouseover for links.

This commit is contained in:
m 2016-01-06 10:20:23 +01:00
parent 98270d74e8
commit 3d4f10c235
4 changed files with 28 additions and 28 deletions

View File

@ -12,6 +12,6 @@ Deswegen laden wir euch zu uns ein. Am 26.-28. Februar veranstalten wir das erst
Allerdings kann da noch viel viel mehr!
Unkostenbeitrag 13,37€. Dafür erwartet euch ewiges Frühstück (u.a. ein Pott voll Mett, auch vegan) und Kaffee.
Der Platz für die erste Iteration ist stark begrenzt, so das wir nur 42 Plätze für das gesamte Event haben. First come, first serve.Voranmeldung demnächst!
Der Platz für die erste Iteration ist stark begrenzt, so das wir nur 42 Plätze für das gesamte Event haben. First come, first serve. Voranmeldung demnächst!
Auf ein exzellentes HIP0!

View File

@ -1,18 +0,0 @@
@font-face {
font-family: 'Share Tech';
font-style: normal;
font-weight: 400;
src: local('Share Tech'), local('ShareTech-Regular'), url(/fonts/ShareTech-Regular.woff2) format('woff2'), url(/fonts/ShareTech-Regular.ttf) format('truetype');
}
#footer-nav-links a, #header-nav-links a {
color:$nav-link-color;
&:visited {
color:$nav-link-color;
}
&:hover {
color:$nav-link-hover;
}
}

View File

@ -1,17 +1,20 @@
@font-face {
font-family: 'Share Tech';
font-style: normal;
font-weight: 400;
src: local('Share Tech'), local('ShareTech-Regular'), url(/fonts/ShareTech-Regular.woff2) format('woff2'), url(/fonts/ShareTech-Regular.ttf) format('truetype');
}
body {
background:#222 url('/img/logowall_opt.svg') center top;
background-size: 300px;
color: white;
}
a {
color: red;
}
h1 {
padding-left:160px;
padding-bottom:20px;
color: $link-primary;
color: $nav-link-color;
}
a, .navbar-default .navbar-nav li a, .navbar-nav > li > a {
@ -73,7 +76,11 @@ a, .navbar-default .navbar-nav li a, .navbar-nav > li > a {
}
a {
color: $link-hover;
color: $link-primary;
&:hover {
color: $link-hover;
}
}
h2 {
@ -97,3 +104,15 @@ a, .navbar-default .navbar-nav li a, .navbar-nav > li > a {
list-style-type: none;
}
}
#footer-nav-links a, #header-nav-links a {
color:$nav-link-color;
&:visited {
color:$nav-link-color;
}
&:hover {
color:$nav-link-hover;
}
}

View File

@ -26,7 +26,7 @@ $nav-link-color: #FFF;
$nav-link-hover: #DDD;
$primary-bg: #333;
$link-primary: #FFF;
$link-primary: #FF5E5E;
$link-hover: #F44;
// Using media queries with like this:
@ -48,6 +48,5 @@ $link-hover: #F44;
@import
"base",
"layout",
"syntax-highlighting",
"hackimpott"
"syntax-highlighting"
;