-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinstructions.html
More file actions
98 lines (98 loc) · 2.81 KB
/
Copy pathinstructions.html
File metadata and controls
98 lines (98 loc) · 2.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Instructions | GitHubUpgrade.com</title>
<style>
:root {
--bg-color: #000000;
--box-bg: #111111;
--border-color: #ffffff;
--text-color: #00ff41;
--font-main: "Courier New", Courier, monospace;
}
body {
margin: 0;
background-color: var(--bg-color);
color: var(--text-color);
font-family: var(--font-main);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
overflow: hidden;
}
.pixel-box {
background-color: var(--box-bg);
border: 4px solid var(--border-color);
padding: 2rem;
max-width: 600px;
width: 90%;
box-shadow: 8px 8px 0px rgba(255, 255, 255, 0.2);
position: relative;
}
.pixel-box::before {
content: "";
position: absolute;
top: -4px;
left: -4px;
right: -4px;
bottom: -4px;
border: 2px dashed rgba(0, 255, 65, 0.5);
pointer-events: none;
}
h1 {
margin-top: 0;
text-transform: uppercase;
font-size: 1.5rem;
border-bottom: 2px solid var(--text-color);
padding-bottom: 0.5rem;
}
ol {
line-height: 1.8;
font-size: 1.1rem;
padding-left: 1.5rem;
}
li {
margin-bottom: 1rem;
}
.btn {
display: inline-block;
margin-top: 1.5rem;
background-color: var(--text-color);
color: var(--bg-color);
font-family: var(--font-main);
font-weight: bold;
font-size: 1.2rem;
padding: 0.75rem 1.5rem;
text-decoration: none;
text-transform: uppercase;
border: 2px solid var(--text-color);
cursor: pointer;
transition: all 0.2s ease;
}
.btn:hover {
background-color: var(--bg-color);
color: var(--text-color);
}
.btn:active {
transform: translate(2px, 2px);
}
</style>
</head>
<body>
<div class="pixel-box">
<h1>[ SYSTEM INSTRUCTIONS ]</h1>
<ol>
<li>
<strong>Create a new repository</strong> on your GitHub account.
Make sure to check the box that says <em>"Add a README file"</em> so the repository is initialized.
</li>
<li>
<strong>Enable Private Contributions:</strong>
Go to your GitHub Profile → Settings. Scroll down to <em>Contribution & Activity</em>.
Check the option that says <strong>"Include private contributions on my profile"</strong> and click Update Preferences.
</li>
</ol>
<div style="text-align: right;">