Last active
December 16, 2015 13:54
-
-
Save AntonKL/2e4261d4e967aa107923 to your computer and use it in GitHub Desktop.
Defiso landningssida CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Färg på navigation + länkfärg i navigation */ | |
.desktop-nav { | |
background-color: #f7f7f7; | |
} | |
.desktop-nav a, | |
.desktop-nav a:visited { | |
color: #3d3d3d; | |
} | |
.desktop-nav a:hover, | |
.desktop-nav a:active { | |
color: #3d3d3d; | |
} | |
/* Färg på text till stora headerbilden */ | |
.jumbotron h2 { | |
color: #FFFFFF; | |
} | |
/* Färg på sidospalt */ | |
aside { | |
background-color: #58b6cb; | |
} | |
/* Färg på actionyta i botten på sidorna (ytan med en knapp) */ | |
.cta-block { | |
background-color: #58b6cb; | |
} | |
/* Färg på text i actionyta */ | |
.cta-block .paragraph { | |
color: #FFFFFF; | |
} | |
/* Knappfärger */ | |
button, input[type="button"], input[type="reset"], input[type="submit"], button { | |
background-color: #e73c35; | |
} | |
/* Knappfärger vid hover */ | |
button:hover, button:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="reset"]:hover, input[type="reset"]:focus, input[type="submit"]:hover, input[type="submit"]:focus, button:hover, button:focus { | |
background-color: #ef7e79; | |
} | |
/* Färg på sidfot samt text i sidfot */ | |
footer { | |
background-color: #3c3c3b; | |
color: #FFFFFF; | |
} | |
/* Länkfärger */ | |
a { | |
color: #58b6cb; | |
} | |
a:active, a:focus, a:hover { | |
color: #338fa4; | |
} | |
/* Färg på hela sidans bakgrund samt textfärg */ | |
body { | |
background-color: #FFFFFF; | |
color: #333333; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment