Fazil Altinel
2 years ago
6 changed files with 215 additions and 128 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,99 @@ |
|||
body { |
|||
background-color: #15151c; |
|||
} |
|||
#console { |
|||
font-family: monospace, monospace; |
|||
color: #fff; |
|||
width:750px; |
|||
margin-left:auto; |
|||
margin-right:auto; |
|||
margin-top:100px; |
|||
font-size:14px; |
|||
} |
|||
a:link { |
|||
color: #5fc; |
|||
text-decoration: none; |
|||
} |
|||
a:visited { |
|||
color: #5fc; |
|||
text-decoration: none; |
|||
} |
|||
a:hover { |
|||
color: #0bc; |
|||
text-decoration: underline; |
|||
} |
|||
#a { |
|||
color: #0f0; |
|||
} |
|||
#c { |
|||
color: #0bc; |
|||
} |
|||
#b { |
|||
color: #ff0096; |
|||
} |
|||
#typed-cursor { |
|||
font-weight: 100; |
|||
font-size: 14px; |
|||
color: #fff; |
|||
} |
|||
.slogan { |
|||
color: #2E3D48; |
|||
font-size: 30px; |
|||
position: absolute; |
|||
top: 50%; |
|||
text-align: center; |
|||
margin: -60px 0 0 0; |
|||
display: block; |
|||
width: 100%; |
|||
} |
|||
#typed-cursor { |
|||
color: #2E3D48; |
|||
font-weight: 100; |
|||
} |
|||
#typed-cursor.blinking { |
|||
-webkit-animation: 1s blink step-end infinite; |
|||
-moz-animation: 1s blink step-end infinite; |
|||
-ms-animation: 1s blink step-end infinite; |
|||
-o-animation: 1s blink step-end infinite; |
|||
animation: 1s blink step-end infinite; |
|||
} |
|||
@keyframes "blink" { |
|||
from,to { |
|||
color: transparent; |
|||
} |
|||
50% { |
|||
color: white; |
|||
} |
|||
} |
|||
@-moz-keyframes blink { |
|||
from,to { |
|||
color: transparent; |
|||
} |
|||
50% { |
|||
color:white ; |
|||
} |
|||
} |
|||
@-webkit-keyframes "blink" { |
|||
from,to { |
|||
color: transparent; |
|||
} |
|||
50% { |
|||
color: white; |
|||
} |
|||
} |
|||
@-ms-keyframes "blink" { |
|||
from,to { |
|||
color: transparent; |
|||
} |
|||
50% { |
|||
color: white; |
|||
} |
|||
} |
|||
@-o-keyframes "blink" { |
|||
from,to { |
|||
color: transparent; |
|||
} |
|||
50% { |
|||
color: white; |
|||
} |
|||
} |
Loading…
Reference in new issue