summaryrefslogtreecommitdiffstats
path: root/site/common
diff options
context:
space:
mode:
authorFrancis Rowe <fchmmr@minifree.lan>2015-12-03 22:45:55 (EST)
committer Francis Rowe <fchmmr@minifree.lan>2015-12-03 22:45:55 (EST)
commit6cfbb99e65d69893edd17b252d99def7733aadf1 (patch)
tree1028569faea3034aefb8a9dad4149e4bcd1c79e0 /site/common
parent3ab053cd49502c310250085e063c80bbdeb8f749 (diff)
downloadlibreboot.org-6cfbb99e65d69893edd17b252d99def7733aadf1.zip
libreboot.org-6cfbb99e65d69893edd17b252d99def7733aadf1.tar.gz
libreboot.org-6cfbb99e65d69893edd17b252d99def7733aadf1.tar.bz2
remove css animation
Diffstat (limited to 'site/common')
-rw-r--r--site/common/css/main.css44
1 files changed, 2 insertions, 42 deletions
diff --git a/site/common/css/main.css b/site/common/css/main.css
index 6e8be97..bc9d78d 100644
--- a/site/common/css/main.css
+++ b/site/common/css/main.css
@@ -7,6 +7,8 @@ line-height:1.4
}
html{
background:#eee;
+background-image:url('/common/background/background.jpg');
+background-attachment:fixed;
font:99% sans-serif
}
div{
@@ -30,45 +32,3 @@ color:#33a
a,a:hover,strong,em{
padding:0
}
-
-
-
-
-/* etc */
-html{
-background-image:url('/common/background/background.jpg');
-background-attachment:fixed;
-}
-div:hover{
- -webkit-animation: fadein .5s;
- -moz-animation: fadein .5s;
- -ms-animation: fadein .5s;
- -o-animation: fadein .5s;
- animation: fadein .5s;
- opacity:1;
-}
-
-@keyframes fadein {
- from { opacity: 0.95; }
- to { opacity: 1; }
-}
-
-@-moz-keyframes fadein {
- from { opacity: 0.95; }
- to { opacity: 1; }
-}
-
-@-webkit-keyframes fadein {
- from { opacity: 0.95; }
- to { opacity: 1; }
-}
-
-@-ms-keyframes fadein {
- from { opacity: 0.95; }
- to { opacity: 1; }
-}
-
-@-o-keyframes fadein {
- from { opacity: 0.9; }
- to { opacity: 1; }
-}