|
1 | | -* { |
2 | | - margin: 0; |
3 | | - padding: 0; |
4 | | - box-sizing: border-box; |
5 | | - font-family: 'Courier New', Courier, monospace; |
6 | | -} |
7 | | - |
| 1 | +/* General Styles */ |
8 | 2 | 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; |
11 | 8 | } |
12 | 9 |
|
13 | | -.container { |
14 | | - width: 80%; |
15 | | - margin: 0 auto; |
16 | | - padding: 20px; |
| 10 | +h1, h2 { |
| 11 | + color: #c99cf1; |
17 | 12 | } |
18 | 13 |
|
19 | 14 | 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; |
22 | 19 | } |
23 | 20 |
|
24 | 21 | 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; |
27 | 34 | } |
28 | 35 |
|
29 | 36 | 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; |
34 | 42 | } |
35 | 43 |
|
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; |
42 | 48 | } |
43 | 49 |
|
44 | | -nav ul li a:hover { |
45 | | - background-color: #33ff33; |
46 | | - color: #1a1a1a; |
| 50 | +nav a:hover { |
| 51 | + text-decoration: underline; |
47 | 52 | } |
48 | 53 |
|
49 | 54 | 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; |
54 | 60 | } |
55 | 61 |
|
56 | | -.intro, .features, .docs { |
57 | | - margin-bottom: 20px; |
| 62 | +section { |
| 63 | + margin-bottom: 40px; |
58 | 64 | } |
59 | 65 |
|
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; |
63 | 72 | } |
64 | 73 |
|
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; |
68 | 79 | } |
69 | 80 |
|
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); |
78 | 90 | } |
0 commit comments