-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindexStyles.css
More file actions
131 lines (114 loc) · 2.05 KB
/
Copy pathindexStyles.css
File metadata and controls
131 lines (114 loc) · 2.05 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* Base Styles */
body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #2b2e4a, #904e95);
color: #f0f0f0;
line-height: 1.6;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
width: 90%;
max-width: 600px;
background-color: rgba(0, 0, 0, 0.6);
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
position: relative;
}
/* Navigation Buttons */
.nav-button {
text-align: right;
margin-bottom: 1rem;
}
.footer-button {
text-align: center;
margin-top: 2rem;
}
.btn {
background-color: #a8d0e6;
color: #000;
text-decoration: none;
padding: 0.5em 1em;
border-radius: 5px;
margin: 0 0.25em;
display: inline-block;
font-size: 0.9rem;
}
.btn:hover {
opacity: 0.8;
}
/* Header */
.header {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
margin-bottom: 1rem;
}
.title {
font-size: 2rem;
margin: 0;
}
.rating {
font-size: 1.2rem;
display: flex;
align-items: center;
}
.rating i {
color: gold;
margin-right: 0.25rem;
}
.score {
margin-left: 0.5rem;
font-size: 1rem;
color: #f0f0f0;
}
/* Meta Info */
.meta {
font-size: 0.9rem;
color: #cccccc;
margin-bottom: 1.5rem;
}
/* Section Headings */
.description h2,
.files h2,
.flag-format h2,
.content h2 {
margin-top: 0;
border-bottom: 2px solid #555;
padding-bottom: 0.5rem;
font-size: 1.5rem;
}
/* Content Paragraphs */
.description p,
.flag-format p,
.files ul,
.content p {
margin: 1rem 0;
}
/* Files List */
.files ul {
list-style: disc inside;
}
.files a {
color: #a8d0e6;
text-decoration: none;
}
.files a:hover {
text-decoration: underline;
}
.thoughts {
font-size: 0.8rem;
color: #bbbbbb;
text-align: center;
margin-top: 3rem;
opacity: 0.6;
font-style: italic;
max-width: 100%;
word-wrap: break-word;
}