-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwiki.css
More file actions
91 lines (76 loc) · 1.68 KB
/
wiki.css
File metadata and controls
91 lines (76 loc) · 1.68 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap');
body {
background-color: #212e63;
font-family: 'Raleway', sans-serif;
font-size: 18px;
}
/* Language selector styles */
.language-selector {
position: absolute;
top: 20px;
right: 20px;
z-index: 1000;
}
.language-selector select {
background-color: rgba(255, 255, 255, 0.1);
color: white;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 4px;
padding: 5px 10px;
font-family: 'Raleway';
font-size: 14px;
}
.language-selector select option {
background-color: #212e63;
color: white;
}
#wiki-container {
padding: 10px;
color: white;
background-color: #212e63;
margin: 0 auto;
/* Center the container */
margin-top: 60px;
/* Add space for language selector */
}
/* Media query for screens wider than 768px */
@media (min-width: 1500px) {
#wiki-container {
width: 50%;
/* Set the width to 50% for normal screens */
}
}
#wiki-container a {
color: white;
}
#wiki-container a:hover {
color: #ba4fab;
}
#wiki-container h1 {
color: white;
}
#wiki-container h2,
#wiki-container h3,
#wiki-container h4,
#wiki-container h5,
#wiki-container h6 {
color: #66d18f;
}
#wiki-container table {
border-collapse: collapse;
width: 100%;
}
#wiki-container th, #wiki-container td {
border: 1px solid white;
padding: 8px;
text-align: left;
}
#wiki-container th:first-child, #wiki-container td:first-child {
width: 40%;
}
#wiki-container th:nth-child(2), #wiki-container td:nth-child(2) {
width: 60%;
}
#wiki-container th {
background-color: rgba(255, 255, 255, 0.1);
}