Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(Update): Fix Footer with oversized text and ignore files which s… #1

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# Auto detect text files and perform LF normalization
* text=auto

4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Code that should not be on the damn repository

MihoyoDotSystems/__pycache__/
db.sqlite3
Binary file modified MihoyoDotSystems/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file modified MihoyoDotSystems/__pycache__/settings.cpython-312.pyc
Binary file not shown.
Binary file modified MihoyoDotSystems/__pycache__/urls.cpython-312.pyc
Binary file not shown.
Binary file modified MihoyoDotSystems/__pycache__/wsgi.cpython-312.pyc
Binary file not shown.
Binary file modified db.sqlite3
Binary file not shown.
Binary file added mainpage/__pycache__/APIGetter.cpython-312.pyc
Binary file not shown.
Binary file modified mainpage/__pycache__/__init__.cpython-312.pyc
Binary file not shown.
Binary file modified mainpage/__pycache__/admin.cpython-312.pyc
Binary file not shown.
Binary file modified mainpage/__pycache__/apps.cpython-312.pyc
Binary file not shown.
Binary file modified mainpage/__pycache__/models.cpython-312.pyc
Binary file not shown.
Binary file modified mainpage/__pycache__/uidFORM.cpython-312.pyc
Binary file not shown.
Binary file modified mainpage/__pycache__/urls.cpython-312.pyc
Binary file not shown.
Binary file modified mainpage/__pycache__/views.cpython-312.pyc
Binary file not shown.
16 changes: 3 additions & 13 deletions mainpage/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,9 @@ <h2><a href="#">UID INPUT:</a></h2>



<footer>
<head>
<style>
h1 {
color: white;
}
</style>
</head>
<body>
<h1>Developed by <a href="https://github.com/totallynotnochi">Nochi.</a></h1>
</body>
</footer>

<footer>
<h1>Developed by <a href="https://github.com/totallynotnochi">Nochi</a></h1>
</footer>

<!-- Scripts -->
<script src="{% static 'Massively/assets/js/jquery.min.js' %}"></script>
Expand Down
21 changes: 21 additions & 0 deletions templates/Massively/assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,27 @@ ol, ul {
list-style: none;
}

footer {
background-color: #333;
padding: 20px;
text-align: center;
}

footer h1 {
color: white;
font-size: 16px;
margin: 0;
}

footer a {
color: #1e90ff;
text-decoration: none;
}

footer a:hover {
text-decoration: underline;
}

blockquote, q {
quotes: none;
}
Expand Down