Cleaning up CSS

This commit is contained in:
mathias 2015-02-16 17:48:26 +02:00
parent b773d5f5ae
commit 4e37a223c7

View file

@ -24,7 +24,7 @@
font-weight: 300; font-weight: 300;
src: local('Merriweather Sans Light'), local('MerriweatherSans-Light'), url(https://fonts.gstatic.com/s/merriweathersans/v5/6LmGj5dOJopQKEkt88Gowby3qP8l_EZEfCX16eKT4TP3rGVtsTkPsbDajuO5ueQw.woff) format('woff'); src: local('Merriweather Sans Light'), local('MerriweatherSans-Light'), url(https://fonts.gstatic.com/s/merriweathersans/v5/6LmGj5dOJopQKEkt88Gowby3qP8l_EZEfCX16eKT4TP3rGVtsTkPsbDajuO5ueQw.woff) format('woff');
} }
@keyframes fadein{ @-webkit-keyframes fadein{
from{opacity:0;} from{opacity:0;}
to{opacity:1;} to{opacity:1;}
} }
@ -32,11 +32,11 @@ to{opacity:1;}
from{opacity:0;} from{opacity:0;}
to{opacity:1;} to{opacity:1;}
} }
@-webkit-keyframes fadein{ @-ms-keyframes fadein{
from{opacity:0;} from{opacity:0;}
to{opacity:1;} to{opacity:1;}
} }
@-ms-keyframes fadein{ @keyframes fadein{
from{opacity:0;} from{opacity:0;}
to{opacity:1;} to{opacity:1;}
} }
@ -54,7 +54,7 @@ body {
background: #000; background: #000;
webkit-tap-highlight-color: rgba(255,255,255,.2); webkit-tap-highlight-color: rgba(255,255,255,.2);
-webkit-animation: fadein 1.5s; -webkit-animation: fadein 1.5s;
-moz-animation: fadein 1.5s rotate(0.01deg); -moz-animation: fadein 1.5s;
-ms-animation: fadein 1.5s; -ms-animation: fadein 1.5s;
-o-animation: fadein 1.5s; -o-animation: fadein 1.5s;
animation: fadein 1.5s; animation: fadein 1.5s;
@ -65,7 +65,16 @@ body {
-khtml-user-select: none; -khtml-user-select: none;
-moz-user-select: none; -moz-user-select: none;
-ms-user-select: none; -ms-user-select: none;
user-select: none; }
::-moz-selection {
background: #fcfcfc;
background: rgba(255,255,255,.2);
}
::selection {
background: #fcfcfc;
background: rgba(255,255,255,.2);
} }
h2 { h2 {
@ -184,18 +193,8 @@ h1 {
text-align: center; text-align: center;
} }
::-moz-selection {
background: #fcfcfc;
background: rgba(255,255,255,.2);
}
::selection {
background: #fcfcfc;
background: rgba(255,255,255,.2);
}
input { input {
border: 1px solid #4a6f28; border: #4a6f28 solid 1px;
color: #4a6f28; color: #4a6f28;
background: none; background: none;
padding: 7px; padding: 7px;
@ -213,13 +212,13 @@ input {
input:hover, input:hover,
input:focus { input:focus {
border: 1px solid #4a6f28; border: #4a6f28 solid 1px;
outline: 0; outline: 0;
color: #000; color: #000;
background: #4a6f28; background: #4a6f28;
} }
#ip { #ip {
border: #4a6f28 1px solid; border: #4a6f28 solid 1px;
color: #000; color: #000;
background: #4a6f28; background: #4a6f28;
padding: 7px; padding: 7px;