Skip to content

Commit 543b3e9

Browse files
authored
Create style.css
1 parent 3f08c0e commit 543b3e9

File tree

1 file changed

+78
-0
lines changed

1 file changed

+78
-0
lines changed

style.css

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
box-sizing: border-box;
5+
font-family: 'Courier New', Courier, monospace;
6+
}
7+
8+
body {
9+
background-color: #1a1a1a;
10+
color: #33ff33;
11+
}
12+
13+
.container {
14+
width: 80%;
15+
margin: 0 auto;
16+
padding: 20px;
17+
}
18+
19+
header {
20+
text-align: center;
21+
margin-bottom: 40px;
22+
}
23+
24+
header h1 {
25+
font-size: 2.5em;
26+
color: #ffcc00;
27+
}
28+
29+
nav ul {
30+
list-style: none;
31+
display: flex;
32+
justify-content: center;
33+
gap: 15px;
34+
}
35+
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;
42+
}
43+
44+
nav ul li a:hover {
45+
background-color: #33ff33;
46+
color: #1a1a1a;
47+
}
48+
49+
main {
50+
background-color: #262626;
51+
padding: 20px;
52+
border-radius: 10px;
53+
border: 2px solid #33ff33;
54+
}
55+
56+
.intro, .features, .docs {
57+
margin-bottom: 20px;
58+
}
59+
60+
h2 {
61+
color: #ffcc00;
62+
margin-bottom: 10px;
63+
}
64+
65+
ul {
66+
list-style-type: '★ ';
67+
padding-left: 20px;
68+
}
69+
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;
78+
}

0 commit comments

Comments
 (0)