web:
* add transition to all a:hover * remove inherited font-family * specify the default font size
This commit is contained in:
parent
bf603cc975
commit
2d6d1f3250
|
@ -1,7 +1,7 @@
|
||||||
body {
|
body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-family: Calibri, Verdana, sans-serif;
|
font: 16px Calibri, Verdana, sans-serif;
|
||||||
color: black;
|
color: black;
|
||||||
background-color: #eee;
|
background-color: #eee;
|
||||||
}
|
}
|
||||||
|
@ -12,13 +12,20 @@ dt {
|
||||||
|
|
||||||
|
|
||||||
/* Default link style */
|
/* Default link style */
|
||||||
|
a:hover {
|
||||||
|
-webkit-transition: all 0.20s ease-in-out;
|
||||||
|
-moz-transition: all 0.20s ease-in-out;
|
||||||
|
-o-transition: all 0.20s ease-in-out;
|
||||||
|
transition: all 0.20s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
a:link,
|
a:link,
|
||||||
a:visited { color: #036; text-decoration: underline; }
|
a:visited { color: #036; text-decoration: underline; }
|
||||||
|
|
||||||
a:link:hover,
|
a:active,
|
||||||
a:visited:hover,
|
|
||||||
a:focus,
|
a:focus,
|
||||||
a:active { color: #369; text-decoration: none; }
|
a:hover,
|
||||||
|
a:visited { color: #369; text-decoration: node; }
|
||||||
|
|
||||||
|
|
||||||
/* Header */
|
/* Header */
|
||||||
|
@ -30,7 +37,7 @@ a:active { color: #369; text-decoration: none; }
|
||||||
#header h1 {
|
#header h1 {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-family: Orbitron, Calibri, Verdana, sans-serif;
|
font-family: Orbitron;
|
||||||
}
|
}
|
||||||
|
|
||||||
#header p {
|
#header p {
|
||||||
|
@ -159,13 +166,6 @@ a.downloadnow:hover {
|
||||||
background-color: #090;
|
background-color: #090;
|
||||||
}
|
}
|
||||||
|
|
||||||
a.downloadnow:hover {
|
|
||||||
-webkit-transition: background-color 0.20s ease-in-out;
|
|
||||||
-moz-transition: background-color 0.20s ease-in-out;
|
|
||||||
-o-transition: background-color 0.20s ease-in-out;
|
|
||||||
transition: background-color 0.20s ease-in-out;
|
|
||||||
}
|
|
||||||
|
|
||||||
.downloadnow strong {
|
.downloadnow strong {
|
||||||
display: block;
|
display: block;
|
||||||
font-size: larger;
|
font-size: larger;
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue