lets do this

This commit is contained in:
Phil Skentelbery
2022-05-12 13:24:46 -05:00
parent f3e8b0224f
commit f6f76a1ef7
15 changed files with 106 additions and 0 deletions

30
home.css Normal file
View File

@ -0,0 +1,30 @@
@charset "utf-8";
/* CSS Document */
body{
background-image:url(circuitbg.png);
font-family:Comic Sans MS, Comic Sans;
color:#FFFF00;
text-align:center;
}
marquee{
color:#006600;
}
a:link, a:visited{
color:#FFFFFF;
}
a:hover{
font-weight:bold;
}
.blink_me {
animation: blinker 1s linear infinite;
}
@keyframes blinker {
50% {
opacity: 0;
}
}