Skip to content

Commit b191200

Browse files
first commit
0 parents  commit b191200

3 files changed

Lines changed: 96 additions & 0 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# linuxaddict124.github.io

index.css

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
/* Reset and base styles */
2+
body {
3+
margin: 0;
4+
padding: 0;
5+
background-color: #0f1117;
6+
color: #e0e0e0;
7+
font-family: 'Courier New', Courier, monospace;
8+
line-height: 1.6;
9+
}
10+
11+
a {
12+
color: #00ffcc;
13+
text-decoration: none;
14+
}
15+
16+
a:hover {
17+
text-decoration: underline;
18+
}
19+
20+
header {
21+
background-color: #1a1c23;
22+
padding: 20px;
23+
text-align: center;
24+
border-bottom: 2px solid #00ffcc;
25+
}
26+
27+
header h1 {
28+
margin: 0;
29+
font-size: 2.5em;
30+
color: #00ffcc;
31+
}
32+
33+
nav {
34+
margin-top: 10px;
35+
}
36+
37+
nav a {
38+
margin: 0 15px;
39+
font-weight: bold;
40+
}
41+
42+
main {
43+
padding: 40px 20px;
44+
max-width: 800px;
45+
margin: auto;
46+
}
47+
48+
section {
49+
margin-bottom: 40px;
50+
}
51+
52+
section h2 {
53+
color: #00ffcc;
54+
border-bottom: 1px solid #00ffcc;
55+
padding-bottom: 5px;
56+
}
57+
58+
footer {
59+
background-color: #1a1c23;
60+
text-align: center;
61+
padding: 20px;
62+
border-top: 2px solid #00ffcc;
63+
font-size: 0.9em;
64+
color: #888;
65+
}
66+
67+
/* Terminal-style code block */
68+
pre {
69+
background-color: #1e1e1e;
70+
color: #00ffcc;
71+
padding: 15px;
72+
border-radius: 5px;
73+
overflow-x: auto;
74+
box-shadow: 0 0 10px #00ffcc33;
75+
}
76+
77+
/* Button

index.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<link rel="icon" href="favicon.ico" type="image/x-icon" />
7+
<title>LinuxAddict124 Website</title>
8+
<link rel="stylesheet" href="index.css" />
9+
</head>
10+
<body>
11+
<header>
12+
<h1>LinuxAddict124</h1>
13+
</header>
14+
<main>
15+
<h2>Welcome to my website</h2>
16+
<p>I am just a linux user that uses Arch (btw). My Twitter Account is @LinuxAddict124. I have a project called PyFetch which is for some reason taken by 2 other people with one of them being the same point as my project and it makes it look like I copied it.<p>
17+
</main>
18+
</body>

0 commit comments

Comments
 (0)