-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclassic.css
77 lines (65 loc) · 1.11 KB
/
classic.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
68
69
70
71
72
73
74
75
76
77
body {
margin: 0;
font-family: 'Philosopher', sans-serif;
background-image: url("images/BG_starry.png");
background-position: center;
background-attachment: fixed;
background-size: cover;
}
h1 {
color: #d2bc8e;
}
nav ul {
list-style: none;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin: 0;
padding: 0;
}
nav li {
font-size: 24px;
margin-top: 20px;
}
nav a {
text-decoration: none;
color: #fff;
font-weight: bold;
}
nav a:hover {
color: #D2BC8E;
}
.content {
height: fit-content;
width: 75%;
margin: auto;
padding: 30px;
}
.character_archive {
width: 45px;
height: 45px;
display: flex;
align-items: center;
justify-content: center;
}
.centered-text {
display: flex;
align-items: center;
justify-content: center;
}
.traits-table {
margin-top: 20px;
border-collapse: collapse;
}
.traits-table th, .traits-table td {
border: 1px solid #ddd;
padding: 8px;
}
/* Add classes for green and red backgrounds */
.green-background {
background-color: lightgreen;
}
.red-background {
background-color: lightcoral;
}