Cutesy stuff
This commit is contained in:
+23
-1
@@ -63,6 +63,7 @@ footer {
|
|||||||
section {
|
section {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
margin-left: 12em;
|
margin-left: 12em;
|
||||||
|
line-height: 1.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@@ -72,4 +73,25 @@ a {
|
|||||||
|
|
||||||
.comment {
|
.comment {
|
||||||
color: lightgreen;
|
color: lightgreen;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.blink {
|
||||||
|
animation: blink-animation 1s steps(5, start) infinite;
|
||||||
|
-webkit-animation: blink-animation 1s steps(5, start) infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cursor {
|
||||||
|
border-left: 1px solid white;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes blink-animation {
|
||||||
|
to {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes blink-animation {
|
||||||
|
to {
|
||||||
|
visibility: hidden;
|
||||||
|
}
|
||||||
|
}
|
||||||
+2
-1
@@ -3,7 +3,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<title>fxl codes</title>
|
<title>fxl codes</title>
|
||||||
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:300,600" rel="stylesheet" type="text/css">
|
<link href="https://fonts.googleapis.com/css?family=Source+Code+Pro:300,600" rel="stylesheet" type="text/css">
|
||||||
<link href="main.css" rel="stylesheet" type="text/css">
|
<link href="css/main.css" rel="stylesheet" type="text/css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
@@ -20,6 +20,7 @@
|
|||||||
<dt class="comment">// Practice makes perfect...?</dt>
|
<dt class="comment">// Practice makes perfect...?</dt>
|
||||||
<dd>experience.Code = new CodeCollection();</dd>
|
<dd>experience.Code = new CodeCollection();</dd>
|
||||||
<dd>experience.Code.<a href="https://github.com/feminaexlux">Explore()</a>;</dd>
|
<dd>experience.Code.<a href="https://github.com/feminaexlux">Explore()</a>;</dd>
|
||||||
|
<dd class="blink cursor"> </dd>
|
||||||
</dl>
|
</dl>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user