blob: 8f6af56dc6e5fc227935b78fe608368c8ece0200 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
body {
/* Background colour is matched to the image for cleaner loading */
background-color: #9097a3;
background-image: url("images/pkz50037.jpg");
color: pink;
margin: 60px;
font-family: monospace;
}
h1 {
text-decoration: underline;
}
h2 {
padding: 10px;
font-family: tintin;
}
h3 {
padding: 20px;
}
hr {
border: none;
border-top: dashed rgb(179, 242, 116);
}
img {
/* Ensured images don't go oversize */
max-width: 80%;
}
a {
color: orange;
}
p {
color: white;
font-size: large;
padding-left: 20px;
}
#wrapper {
/* This bit styles the content area and gives it a blur */
background-color: #206cb8;
box-shadow: 0px 0px 40px 40px #206cb8;
padding: 10px;
/* This bit makes it centred on big screens */
max-width: 900px;
margin: auto;
}
.example {
background-color: rgb(46, 72, 51);
border: 2px double rgb(232, 219, 39);
border-radius: 25px;
padding: 10px;
margin: 5px;
}
.toc {
background-color: rgb(49, 65, 90);
border: 2px double rgb(39, 232, 181);
border-radius: 25px;
padding: 10px;
margin: 5px;
width: fit-content;
margin-left: 40px
}
.toc li {
margin-top: 5px;
margin-bottom: 5px;
}
@font-face {
font-family: tintin;
src: url(fonts/tintin_talking.ttf);
}
|