From 079e062f628bad0ae905a87e8243783cdaf5cc6a Mon Sep 17 00:00:00 2001 From: _iPhoenix_ <32944537+Legend-of-iPhoenix@users.noreply.github.com> Date: Thu, 25 Jan 2018 10:29:18 -0500 Subject: [PATCH] Update v1.css --- v1.css | 45 +++++++++++++++++++++++++++++++-------------- 1 file changed, 31 insertions(+), 14 deletions(-) diff --git a/v1.css b/v1.css index 99fea67..2feeeae 100644 --- a/v1.css +++ b/v1.css @@ -1,7 +1,7 @@ /* Base CSS Markup File v.1.0 LAX18 -___________________________ */ +_______________________ */ /* Text Coloring DONE */ .red {color: red;} @@ -10,18 +10,18 @@ ___________________________ */ .orange {color: orange;} .yellow {color: yellow;} .purple {color: purple;} - .black {color: black;} +.black {color: black;} .white {color: white;} /* Background Coloring DONE */ - .bkred {background-color:red;} - .bkblue {background-color: blue;} - .bkgreen {background-color: green;} - .bkorange {background-color: orange;} - .bkyellow {background-color: yellow;} - .bkpurple {background-color: purple;} - .bkblack {background-color: black;} - .bkwhite {background-color: white;} +.bkred {background-color:red;} +.bkblue {background-color: blue;} +.bkgreen {background-color: green;} +.bkorange {background-color: orange;} +.bkyellow {background-color: yellow;} +.bkpurple {background-color: purple;} +.bkblack {background-color: black;} +.bkwhite {background-color: white;} /* Text Decoration DONE */ .bold {font-weight: bold} @@ -44,12 +44,29 @@ ___________________________ */ .monospace {font-family: "monospace";} /* Text Alignment DONE */ - .txcenter {text-align: center;} - .txleft {text-align: left;} - .txright {text-align: right;} - .txjustify {text-align: justify;} +.txcenter {text-align: center;} +.txleft {text-align: left;} +.txright {text-align: right;} +.txjustify {text-align: justify;} /* Alignment */ .center {margin: auto;} .left {float: left;} .right {float: right;} + +/* The following were shamelessly ripped from UniChat. */ +/* Text Style */ +.bold {font-weight: bold;} +.italic {font-style: italic;} + + +/* animation */ +@keyframes _rgb { + 0% { color: #f00; } + 33% { color: #0f0; } + 66% { color: #00f; } + 100% { color: #f00; } +} + +.rgb {animation: _rgb 5000ms infinite;} +.rgb-faster {animation: _rgb 2500ms infinite;}