Skip to content

Commit d8eee17

Browse files
authored
Update style.css
1 parent a0dc973 commit d8eee17

File tree

1 file changed

+62
-50
lines changed

1 file changed

+62
-50
lines changed

style.css

Lines changed: 62 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,78 +1,90 @@
1-
* {
2-
margin: 0;
3-
padding: 0;
4-
box-sizing: border-box;
5-
font-family: 'Courier New', Courier, monospace;
6-
}
7-
1+
/* General Styles */
82
body {
9-
background-color: #1a1a1a;
10-
color: #33ff33;
3+
font-family: Arial, sans-serif;
4+
background-color: #1c1c1c;
5+
color: #e0e0e0;
6+
margin: 0;
7+
padding: 0;
118
}
129

13-
.container {
14-
width: 80%;
15-
margin: 0 auto;
16-
padding: 20px;
10+
h1, h2 {
11+
color: #c99cf1;
1712
}
1813

1914
header {
20-
text-align: center;
21-
margin-bottom: 40px;
15+
text-align: center;
16+
padding: 20px;
17+
background-color: #2a2a2a;
18+
border-bottom: 2px solid #c99cf1;
2219
}
2320

2421
header h1 {
25-
font-size: 2.5em;
26-
color: #ffcc00;
22+
font-size: 2.5em;
23+
}
24+
25+
header span {
26+
color: #c99cf1;
27+
}
28+
29+
nav {
30+
display: flex;
31+
justify-content: center;
32+
padding: 10px 0;
33+
background-color: #2a2a2a;
2734
}
2835

2936
nav ul {
30-
list-style: none;
31-
display: flex;
32-
justify-content: center;
33-
gap: 15px;
37+
list-style-type: none;
38+
padding: 0;
39+
margin: 0;
40+
display: flex;
41+
gap: 20px;
3442
}
3543

36-
nav ul li a {
37-
color: #33ff33;
38-
text-decoration: none;
39-
padding: 5px 10px;
40-
border: 2px solid #33ff33;
41-
border-radius: 5px;
44+
nav a {
45+
color: #c99cf1;
46+
text-decoration: none;
47+
font-weight: bold;
4248
}
4349

44-
nav ul li a:hover {
45-
background-color: #33ff33;
46-
color: #1a1a1a;
50+
nav a:hover {
51+
text-decoration: underline;
4752
}
4853

4954
main {
50-
background-color: #262626;
51-
padding: 20px;
52-
border-radius: 10px;
53-
border: 2px solid #33ff33;
55+
max-width: 800px;
56+
margin: 20px auto;
57+
padding: 20px;
58+
background-color: #292929;
59+
border-radius: 8px;
5460
}
5561

56-
.intro, .features, .docs {
57-
margin-bottom: 20px;
62+
section {
63+
margin-bottom: 40px;
5864
}
5965

60-
h2 {
61-
color: #ffcc00;
62-
margin-bottom: 10px;
66+
.code-block {
67+
background-color: #1e1e1e;
68+
padding: 10px;
69+
border-radius: 5px;
70+
font-family: "Courier New", Courier, monospace;
71+
color: #f0f0f0;
6372
}
6473

65-
ul {
66-
list-style-type: '★ ';
67-
padding-left: 20px;
74+
footer {
75+
text-align: center;
76+
padding: 15px;
77+
background-color: #2a2a2a;
78+
color: #c99cf1;
6879
}
6980

70-
.code-block {
71-
background-color: #000;
72-
color: #33ff33;
73-
padding: 10px;
74-
border-radius: 5px;
75-
border: 2px solid #33ff33;
76-
margin: 10px 0;
77-
overflow-x: auto;
81+
/* Retro Elements */
82+
body::before {
83+
content: "";
84+
position: absolute;
85+
top: 0;
86+
left: 0;
87+
right: 0;
88+
height: 5px;
89+
background: linear-gradient(to right, #c99cf1, #72388f, #c99cf1);
7890
}

0 commit comments

Comments
 (0)