mirror of
https://github.com/kaboomserver/website.git
synced 2024-12-01 11:37:03 -05:00
Cleaning up CSS
This commit is contained in:
parent
b773d5f5ae
commit
4e37a223c7
1 changed files with 17 additions and 18 deletions
35
index.html
35
index.html
|
@ -24,7 +24,7 @@
|
|||
font-weight: 300;
|
||||
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;}
|
||||
to{opacity:1;}
|
||||
}
|
||||
|
@ -32,11 +32,11 @@ to{opacity:1;}
|
|||
from{opacity:0;}
|
||||
to{opacity:1;}
|
||||
}
|
||||
@-webkit-keyframes fadein{
|
||||
@-ms-keyframes fadein{
|
||||
from{opacity:0;}
|
||||
to{opacity:1;}
|
||||
}
|
||||
@-ms-keyframes fadein{
|
||||
@keyframes fadein{
|
||||
from{opacity:0;}
|
||||
to{opacity:1;}
|
||||
}
|
||||
|
@ -54,7 +54,7 @@ body {
|
|||
background: #000;
|
||||
webkit-tap-highlight-color: rgba(255,255,255,.2);
|
||||
-webkit-animation: fadein 1.5s;
|
||||
-moz-animation: fadein 1.5s rotate(0.01deg);
|
||||
-moz-animation: fadein 1.5s;
|
||||
-ms-animation: fadein 1.5s;
|
||||
-o-animation: fadein 1.5s;
|
||||
animation: fadein 1.5s;
|
||||
|
@ -65,7 +65,16 @@ body {
|
|||
-khtml-user-select: none;
|
||||
-moz-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 {
|
||||
|
@ -184,18 +193,8 @@ h1 {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
::-moz-selection {
|
||||
background: #fcfcfc;
|
||||
background: rgba(255,255,255,.2);
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #fcfcfc;
|
||||
background: rgba(255,255,255,.2);
|
||||
}
|
||||
|
||||
input {
|
||||
border: 1px solid #4a6f28;
|
||||
border: #4a6f28 solid 1px;
|
||||
color: #4a6f28;
|
||||
background: none;
|
||||
padding: 7px;
|
||||
|
@ -213,13 +212,13 @@ input {
|
|||
|
||||
input:hover,
|
||||
input:focus {
|
||||
border: 1px solid #4a6f28;
|
||||
border: #4a6f28 solid 1px;
|
||||
outline: 0;
|
||||
color: #000;
|
||||
background: #4a6f28;
|
||||
}
|
||||
#ip {
|
||||
border: #4a6f28 1px solid;
|
||||
border: #4a6f28 solid 1px;
|
||||
color: #000;
|
||||
background: #4a6f28;
|
||||
padding: 7px;
|
||||
|
|
Loading…
Reference in a new issue