karnov.club/css/typed/main.css
Marc Cataford 0748aa808e up
2015-12-22 01:07:30 -05:00

66 lines
No EOL
916 B
CSS
Executable file

/*
*{
padding:0;
margin:0;
}
body{
font-family: "Ubuntu", sans-serif;
font-size: 100%;
background:#f8f8f8;
}
a{
text-decoration: none;
color:#666;
}
a:hover{
color:#999;
}
p{
line-height: 2em;
margin:0 0 20px;
text-align: center;
}
*/
.wrap{
max-width: 600px;
margin:150px auto;
}
.type-wrap{
margin:10px auto;
padding:20px;
background:#f0f0f0;
border-radius:5px;
border:#CCC 1px solid;
}
.links{
margin:20px 0;
font-size: 0.75em;
text-align: center;
}
.typed-cursor{
opacity: 1;
-webkit-animation: blink 0.7s infinite;
-moz-animation: blink 0.7s infinite;
animation: blink 0.7s infinite;
}
@keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-webkit-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}
@-moz-keyframes blink{
0% { opacity:1; }
50% { opacity:0; }
100% { opacity:1; }
}