Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
CursedPrograms committed Jan 27, 2024
1 parent b1c4bec commit 0f4f0e6
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 59 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
psdenv/
instance/
__pycache__/
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Flask==2.2
Flask-SQLAlchemy==3.0.0
Flask-SocketIO==5.1.1
Werkzeug==2.0.2
eventlet==0.32.0
flask
flask-sqlalchemy
flask-socketio
werkzeug
eventlet
59 changes: 6 additions & 53 deletions static/styles/styles.css
Original file line number Diff line number Diff line change
@@ -1,44 +1,10 @@
@font-face {
font-family: 'Futura';
src: url('https://fonts.googleapis.com/css?family=Futura');
}

html {
scroll-behavior: smooth;
}

* {
font-family: Futura, sans-serif;
font-weight: lighter;
letter-spacing: 3px;
}

body {
font-family: 'Arial', sans-serif;
background-color: #007ab7;
color: #fff;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
}

footer {
background-color: #007ab7;
font-weight: lighter;
text-align: center;
padding-bottom: 2%;
}
@import url('https://cursedprograms.github.io/cursedentertainment/styles/main-style.css');

.container {
width: 80%;
}

h1 {
color: #fff;
text-align: center;
display: flex;
flex-direction: column;
align-items: center;
}

form {
Expand All @@ -62,26 +28,13 @@ form input {
box-sizing: border-box;
}

button {
background-color: #f088e9;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}

button:hover {
background-color: #168FCC;
}

ul {
list-style-type: none;
padding: 0;
}

ul li {
color: #f088e9;
color: var(--color-tertiary);
}

p {
Expand Down Expand Up @@ -116,5 +69,5 @@ p {
}

#messages div strong {
color: #f088e9;
color: var(--color-tertiary);
}
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ <h1>ComCE</h1>
<a href="{{ url_for('logout') }}">Logout</a>
</div>
<footer id="dynamicFooter"></footer>
<script src="https://raw.githubusercontent.com/CursedPrograms/cursedentertainment/4499e7c8831917bfbb01fe5e99e1289602ef9b34/scripts/footer.js"></script>
<script src="https://cursedprograms.github.io/cursedentertainment/scripts/footer.js"></script>
</body>
</html>

0 comments on commit 0f4f0e6

Please sign in to comment.