From 0e51dc0cf785753a21f66ac59aaffd8a6700a920 Mon Sep 17 00:00:00 2001 From: onefang Date: Sun, 19 Apr 2020 14:11:52 +1000 Subject: Copy Taylors CSS into it's own file. --- example/www/SledjChisl.css | 63 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 example/www/SledjChisl.css (limited to 'example') diff --git a/example/www/SledjChisl.css b/example/www/SledjChisl.css new file mode 100644 index 0000000..fb19f89 --- /dev/null +++ b/example/www/SledjChisl.css @@ -0,0 +1,63 @@ +html, body +{ + margin: 0; + padding: 0; + color: white; +} +a {color: green;} +a:link {color: green;} +a:visited {color: purple;} +a:hover {color: red;} +a:active {color: blue;} + +.container +{ + position: relative; + text-align: left; +} + +.top-left +{ + position: absolute; + top: 8px; + left: 16px; + height: 30%; + width: 30%; +} + +.top-right +{ + position: absolute; + top: 8px; + right: 16px; + height: 30%; + width: 30%; +} + +.centre +{ + position: absolute; + top: 50%; + left: 50%; + height: 30%; + width: 30%; + transform: translate(-50%, -50%); +} + +.bottom-left +{ + position: absolute; + bottom: 8px; + left: 16px; + height: 30%; + width: 30%; +} + +.bottom-right +{ + position: absolute; + bottom: 8px; + right: 16px; + height: 30%; + width: 30%; +} -- cgit v1.1