aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authoronefang2020-04-19 14:11:52 +1000
committeronefang2020-04-19 14:11:52 +1000
commit0e51dc0cf785753a21f66ac59aaffd8a6700a920 (patch)
tree3f81925309089a681ad889237b2f388086bfdeed
parentMove NOTES.txt, and write some more. (diff)
downloadopensim-SC_OLD-0e51dc0cf785753a21f66ac59aaffd8a6700a920.zip
opensim-SC_OLD-0e51dc0cf785753a21f66ac59aaffd8a6700a920.tar.gz
opensim-SC_OLD-0e51dc0cf785753a21f66ac59aaffd8a6700a920.tar.bz2
opensim-SC_OLD-0e51dc0cf785753a21f66ac59aaffd8a6700a920.tar.xz
Copy Taylors CSS into it's own file.
-rw-r--r--example/www/SledjChisl.css63
1 files changed, 63 insertions, 0 deletions
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 @@
1html, body
2{
3 margin: 0;
4 padding: 0;
5 color: white;
6}
7a {color: green;}
8a:link {color: green;}
9a:visited {color: purple;}
10a:hover {color: red;}
11a:active {color: blue;}
12
13.container
14{
15 position: relative;
16 text-align: left;
17}
18
19.top-left
20{
21 position: absolute;
22 top: 8px;
23 left: 16px;
24 height: 30%;
25 width: 30%;
26}
27
28.top-right
29{
30 position: absolute;
31 top: 8px;
32 right: 16px;
33 height: 30%;
34 width: 30%;
35}
36
37.centre
38{
39 position: absolute;
40 top: 50%;
41 left: 50%;
42 height: 30%;
43 width: 30%;
44 transform: translate(-50%, -50%);
45}
46
47.bottom-left
48{
49 position: absolute;
50 bottom: 8px;
51 left: 16px;
52 height: 30%;
53 width: 30%;
54}
55
56.bottom-right
57{
58 position: absolute;
59 bottom: 8px;
60 right: 16px;
61 height: 30%;
62 width: 30%;
63}