summary refs log tree commit diff stats
path: root/lovely/style.css
diff options
context:
space:
mode:
authorAndrew Yu <andrew@andrewyu.org>2022-01-14 21:05:25 +0800
committerAndrew Yu <andrew@andrewyu.org>2022-01-14 21:05:25 +0800
commita89d552f6994c4e0c810988059b7ddedcc6229c2 (patch)
tree6b961a89990b9dea68f5b7c778e9d165e833948e /lovely/style.css
parentf0db9828824a99c28a78a442e92b8d7edfbcc221 (diff)
downloadwww-a89d552f6994c4e0c810988059b7ddedcc6229c2.tar.gz
css note, delovely
Diffstat (limited to 'lovely/style.css')
-rw-r--r--lovely/style.css133
1 files changed, 0 insertions, 133 deletions
diff --git a/lovely/style.css b/lovely/style.css
deleted file mode 100644
index 6431b12..0000000
--- a/lovely/style.css
+++ /dev/null
@@ -1,133 +0,0 @@
-@font-face {
-  font-family: "yess";
-  src: url(https://github.com/Luking9/Creepy-fonts/raw/master/damagrafik_script/DamagrafikScript-Regular.ttf) format("truetype");
-}
-
-p:before, li:before {
-	content: "Happy April Fools!  I am so glad to meet you, dear peppa pig!  Hooray!  Please check out the libre society project when you're AVAIL for some serious stuff.  For now, enjoy some CSS.               ";
-}
-body {
-	background-color: black;
-	color: white;
-	font-family: "yess" cursive fantasy serif monospace sans-serif;
-	margin: 3%;
-	line-height: 1.4;
-}
-*, body, div, p, h1, h2, h3, h4, h5, h6, ul, ol{
-	padding: 2px;
-	animation-name: rotate;
-	animation-iteration-count: 1;
-	animation-duration: 5s;
-	border: 2px dotted gray;
-	transition: all 25s;
-}
-p:hover, h1:hover, h2:hover, h3:hover, h4:hover, h5:hover, h6:hover, li:hover {
-	perspective: 0px;
-	border: 2px dotted red;
-	font-size: 200%;
-	transition: all 5s;
-}
-p:active, h1:active, h2:active, h3:active, h4:active, h5:active, h6:active, li:active {
-	font-size: 600%;
-	perspective: 0px;
-	border: 2px solid lime;
-	transition: all 5s;
-}
-h1 {
-	text-align: center;
-}
-#main {
-	margin: auto;
-	columns: 6 50em;
-}
-#main div {
-	max-width: 100ex;
-	margin: auto;
-}
-#footer {
-	line-height: 1.2;
-	font-size: 80%;
-}
-a:link {
-	color: cyan;
-	text-decoration: none;
-	border: solid cyan 1px;
-	padding: 1px;
-}
-a:visited {
-	color: violet;
-	text-decoration: none;
-	border: solid violet 1px;
-	padding: 1px;
-}
-a:hover {
-	color: yellow;
-	text-decoration: none;
-	transition: all 0.5s;
-	font-size: 300%;
-	border: solid yellow 1px;
-	padding: 1px;
-}
-a:active {
-	color: lime;
-	text-decoration: none;
-	border: solid lime 1px;
-	padding: 1px;
-	transition: all 0.5s;
-	font-size: 5000%;
-}
-#nav ul {
-	list-style-type: none;
-	padding: 1em 0;
-	text-align: center;
-	/*************************************/
-	/* border-top: 2px solid black;		 */
-	/* border-bottom: 2px solid back;	 */
-	/*************************************/
-}
-#nav ul li {
-	display: inline;
-	padding: 0 1.5em;
-	border: none;
-}
-#nav ul li a {
-	font-weight: bold;
-}
-#majornote {
-	font-size: 200%;
-	color: lime;
-	display: block;
-	border: 3px dashed lime;
-	transition: all 0.5s;
-}
-#campaign {
-	font-size: 120%;
-	color: red;
-	display: block;
-	border: 3px dashed red;
-	transition: font-size 1s;
-	animation-name: shake;
-	animation-iteration-count: 1;
-	animation-duration: 3s;
-}
-.alarm {
-	color: red;
-}
-.alert {
-	color: orange;
-}
-.good {
-	color: lime;
-}
-@keyframes shake { 
-   0%, 100% {transform: rotate(0deg);} 
-   10%, 30%, 50%, 70%, 90% {transform: rotate(-3deg);} 
-   20%, 40%, 60%, 80% {transform: rotate(3deg);} 
-}
-@keyframes rotate {
-   from {transform: rotate(0deg);} 
-   to {transform: rotate(720deg);} 
-}
-@keyframes grow {
-    to { font-size: 1000%; }
-}