diff options
Diffstat (limited to 'example/www')
-rw-r--r-- | example/www/SledjChisl.css | 63 |
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 @@ | |||
1 | html, body | ||
2 | { | ||
3 | margin: 0; | ||
4 | padding: 0; | ||
5 | color: white; | ||
6 | } | ||
7 | a {color: green;} | ||
8 | a:link {color: green;} | ||
9 | a:visited {color: purple;} | ||
10 | a:hover {color: red;} | ||
11 | a: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 | } | ||