-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
67 lines (55 loc) · 1.22 KB
/
index.css
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
@charset "utf-8";
@import url('https://cursedprograms.github.io/cursedentertainment/iframes/header/styles/horizontal-menu-style.css');
@import url('https://cursedprograms.github.io/cursedentertainment/styles/content-style.css');
@import url('https://cursedprograms.github.io/cursedentertainment/styles/error-style.css');
@import url('https://cursedprograms.github.io/cursedentertainment/styles/main-style.css');
@import url('/styles/colour-scheme.css');
body,
h1,
h2,
p,
ul {
margin: 0;
padding: 0;
}
/* Set a base font size and family */
body {
font-family: 'Arial', sans-serif;
font-size: 16px;
}
/* Style the header */
header {
background-color: #333;
color: #fff;
padding: 1em;
text-align: center;
}
header h1 {
margin: 0;
}
nav ul {
list-style: none;
}
nav ul li {
display: inline;
margin-right: 15px;
}
nav a {
color: #fff;
text-decoration: none;
}
/* Style the main content area */
main {
padding: 20px;
}
section {
margin-bottom: 20px;
}
/* Style the footer */
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
/* Add additional styling as needed */