Skip to content
This repository was archived by the owner on Mar 17, 2025. It is now read-only.

Commit fc21020

Browse files
1
1 parent 0a2541c commit fc21020

File tree

4 files changed

+93
-28
lines changed

4 files changed

+93
-28
lines changed

Credits.css

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
body {
2+
margin: 0;
3+
font-family: Arial, sans-serif;
4+
display: flex;
5+
justify-content: center;
6+
align-items: center;
7+
height: 100vh;
8+
background-color: #f0f0f0;
9+
}
10+
11+
.credits-container {
12+
text-align: center;
13+
background: white;
14+
padding: 50px;
15+
border-radius: 10px;
16+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
17+
}
18+
19+
h1 {
20+
font-size: 50px;
21+
margin-bottom: 20px;
22+
color: #333;
23+
}
24+
25+
.credits-list {
26+
margin-bottom: 20px;
27+
}
28+
29+
.credit-item {
30+
margin-bottom: 15px;
31+
}
32+
33+
.credit-item h2 {
34+
font-size: 24px;
35+
margin: 0; color: #ff6f61;
36+
}
37+
38+
.credit-item p {
39+
font-size: 18px;
40+
margin: 5px 0 0;
41+
color: #555;
42+
}
43+
44+
button {
45+
padding: 10px 20px;
46+
font-size: 16px;
47+
color: white;
48+
background-color: #ff6f61;
49+
border: none;
50+
border-radius: 5px;
51+
cursor: pointer;
52+
}
53+
54+
button:hover {
55+
background-color: #ff4a3d;
56+
}

Credits.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
function goBack() { window.history.back(); }

0 commit comments

Comments
 (0)