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

CSS Starting #19

Merged
merged 6 commits into from
Mar 19, 2024
Merged
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
2 changes: 1 addition & 1 deletion .idea/portfolio-site-IMD2900.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added Media/siteImages/portfolioLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Media/siteImages/portfolioNameLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified home/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file modified home/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file modified home/__pycache__/admin.cpython-310.pyc
Binary file not shown.
Binary file modified home/__pycache__/admin.cpython-39.pyc
Binary file not shown.
Binary file modified home/__pycache__/apps.cpython-310.pyc
Binary file not shown.
Binary file modified home/__pycache__/apps.cpython-39.pyc
Binary file not shown.
Binary file modified home/__pycache__/forms.cpython-310.pyc
Binary file not shown.
Binary file modified home/__pycache__/forms.cpython-39.pyc
Binary file not shown.
Binary file modified home/__pycache__/models.cpython-310.pyc
Binary file not shown.
Binary file modified home/__pycache__/models.cpython-39.pyc
Binary file not shown.
Binary file modified home/__pycache__/urls.cpython-310.pyc
Binary file not shown.
Binary file modified home/__pycache__/urls.cpython-39.pyc
Binary file not shown.
Binary file modified home/__pycache__/views.cpython-310.pyc
Binary file not shown.
Binary file modified home/__pycache__/views.cpython-39.pyc
Binary file not shown.
Binary file modified home/migrations/__pycache__/0001_initial.cpython-310.pyc
Binary file not shown.
Binary file modified home/migrations/__pycache__/0001_initial.cpython-39.pyc
Binary file not shown.
Binary file modified home/migrations/__pycache__/0002_userupload_tags.cpython-310.pyc
Binary file not shown.
Binary file modified home/migrations/__pycache__/0002_userupload_tags.cpython-39.pyc
Binary file not shown.
Binary file modified home/migrations/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file modified home/migrations/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Empty file.
37 changes: 37 additions & 0 deletions home/static/style/homeStyle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
body {
background-color: #efffc8;


}

.categories {

}

.categoryDisplay {
margin: 5%;
display: grid;
grid-template-columns: auto auto auto;
grid-template-rows: auto auto auto;

justify-content: space-between;
}

.categoryimg {
width: 90%;
padding: 20px;
height: auto;
}

.homeWelcome {
background-color: #1c1c1c;
padding: 50px;
color: #efffc8;
/*Still in progress*/
.roboto-slab-<homeWelcome> {
font-family: "Roboto Slab", serif;
font-optical-sizing: auto;
font-weight: 100;
font-style: normal;
}
}
Binary file modified portfolio_site_IMD2900/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file modified portfolio_site_IMD2900/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file modified portfolio_site_IMD2900/__pycache__/settings.cpython-310.pyc
Binary file not shown.
Binary file modified portfolio_site_IMD2900/__pycache__/settings.cpython-39.pyc
Binary file not shown.
Binary file modified portfolio_site_IMD2900/__pycache__/urls.cpython-310.pyc
Binary file not shown.
Binary file modified portfolio_site_IMD2900/__pycache__/urls.cpython-39.pyc
Binary file not shown.
Binary file modified portfolio_site_IMD2900/__pycache__/wsgi.cpython-310.pyc
Binary file not shown.
Binary file modified portfolio_site_IMD2900/__pycache__/wsgi.cpython-39.pyc
Binary file not shown.
Binary file modified register/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file modified register/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
Binary file modified register/__pycache__/admin.cpython-310.pyc
Binary file not shown.
Binary file modified register/__pycache__/admin.cpython-39.pyc
Binary file not shown.
Binary file modified register/__pycache__/apps.cpython-310.pyc
Binary file not shown.
Binary file modified register/__pycache__/apps.cpython-39.pyc
Binary file not shown.
Binary file modified register/__pycache__/forms.cpython-310.pyc
Binary file not shown.
Binary file modified register/__pycache__/forms.cpython-39.pyc
Binary file not shown.
Binary file modified register/__pycache__/models.cpython-310.pyc
Binary file not shown.
Binary file modified register/__pycache__/models.cpython-39.pyc
Binary file not shown.
Binary file modified register/__pycache__/views.cpython-310.pyc
Binary file not shown.
Binary file modified register/__pycache__/views.cpython-39.pyc
Binary file not shown.
Binary file modified register/migrations/__pycache__/__init__.cpython-310.pyc
Binary file not shown.
Binary file modified register/migrations/__pycache__/__init__.cpython-39.pyc
Binary file not shown.
2 changes: 2 additions & 0 deletions register/templates/register/register.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{% extends "nav-bar.html" %}
{% load static %}

<!-- Used tutorial https://www.youtube.com/watch?v=Ev5xgwndmfc&ab_channel=TechWithTim, minus bootstrapping part -->
{% block title %}Create an Account - Portfol.io{% endblock %}

Expand Down
2 changes: 2 additions & 0 deletions templates/about.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{% extends "nav-bar.html" %}
{% load static %}
{% block title %}
<!-- Title here! -->
About Us - Portfol.io
{% endblock %}

{% block content %}
<!-- Content here! -->
<link rel="stylesheet" type="text/css" href="static/style/homeStyle.css">
{% endblock %}
2 changes: 2 additions & 0 deletions templates/contact.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
{% extends "nav-bar.html" %}
{% load static %}
{% block title %}
<!-- Title here! -->
Contact Us - Portfol.io
{% endblock %}

{% block content %}
<!-- Content here! -->
<link rel="stylesheet" type="text/css" href="static/style/homeStyle.css">
{% endblock %}
32 changes: 15 additions & 17 deletions templates/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,37 +5,33 @@
{% endblock %}

{% block content %}
<div class="container">
{% if user.is_authenticated %}
Signed in!
{% else %}
<p><a href="/login">Please log in here.</a></p>
{% endif %}

</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js" ></script>
<h3 style="margin-left: 25px; font-size: 40px; text-align: center"> Categories </h3>

<div class="homeWelcome">
<h3 style="font-size: 45px; text-align: center"> WELCOME! </h3>
<h4 style="font-size: 20px; text-align: center"> Browse Categories! </h4>
</div>
<!-- Scroll line for categories -->
<div style="margin-left: 20px; display: flex; white-space: nowrap; overflow-x: auto; -ms-overflow-style: none;">
<div style="margin-right: 20px">
<div class="categories">
<div class="categoryDisplay">
<a href="#"> <!-- links to the page of art -->
<img src="{% static 'placeHolderImage.png' %}" alt="img" style="width: 300px; height: auto">
<img src="{% static 'placeHolderImage.png' %}" alt="img" class="categoryimg">
</a>
<a href="#"> <!-- links to the page of art -->
<img src="{% static 'placeHolderImage.png' %}" alt="img" style="width: 300px; height: auto">
<img src="{% static 'placeHolderImage.png' %}" alt="img" class="categoryimg">
</a>
<a href="#"> <!-- links to the page of art -->
<img src="{% static 'placeHolderImage.png' %}" alt="img" style="width: 300px; height: auto">
<img src="{% static 'placeHolderImage.png' %}" alt="img" class="categoryimg">
</a>
<a href="#"> <!-- links to the page of art -->
<img src="{% static 'placeHolderImage.png' %}" alt="img" style="width: 300px; height: auto">
<img src="{% static 'placeHolderImage.png' %}" alt="img" class="categoryimg">
</a>
<a href="#"> <!-- links to the page of art -->
<img src="{% static 'placeHolderImage.png' %}" alt="img" style="width: 300px; height: auto">
<img src="{% static 'placeHolderImage.png' %}" alt="img" class="categoryimg">
</a>
<a href="#"> <!-- links to the page of art -->
<img src="{% static 'placeHolderImage.png' %}" alt="img" style="width: 300px; height: auto">
<img src="{% static 'placeHolderImage.png' %}" alt="img" class="categoryimg">
</a>
</div>
</div>
Expand All @@ -54,6 +50,8 @@ <h4 style="font-size: 30px"> About Us </h4>
<button> About Us </button>
</a>
</div>
<link rel="stylesheet" type="text/css" href="static/style/homeStyle.css">

{% endblock %}


Expand Down
29 changes: 19 additions & 10 deletions templates/nav-bar.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<!DOCTYPE html>

{% load static %}

<html lang="en">
<head>
<!--Code to link the RobotoSlab font from Google Fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab:[email protected]&display=swap" rel="stylesheet">

<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
Expand All @@ -12,17 +16,16 @@
{% endblock %}
</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="static/style/headerStyle.css">
</head>
<body>
{% block navbar %}
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="/">
{% block siteName %}
Portfol.io
{% endblock %}
</a>
{% block navbar %}
<nav class="navbar navbar-expand-lg navbar-light" style="background-color: #2ca6a4;">
<a class="navbar-brand ml-1 mr-4" href="/">
<img src="Media/siteImages/portfolioNameLogo.png" alt="site logo" style="width:auto; height:75px;">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse" id="navbarNav">
<div class="collapse navbar-collapse d-flex justify-content-end" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="/">Home</a>
Expand All @@ -36,14 +39,20 @@
<li class="nav-item">
<a class="nav-link" href="/upload_view"> Add Image </a>
</li>
<li class="nav-item">
{% if user.is_authenticated %}
<a class="nav-link"> Signed in!</a>
{% else %}
<a class="nav-link" href="/login">Please log in here.</a>
{% endif %}
</li>
</ul>
</div>
</nav>
{% endblock %}

{% block content %}
{% endblock %}

</body>
</html>

Expand Down
2 changes: 2 additions & 0 deletions templates/upload.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{% extends "nav-bar.html" %}
{% load static %}

<!-- Used tutorial https://www.youtube.com/watch?v=Ev5xgwndmfc&ab_channel=TechWithTim, minus bootstrapping part -->
{% block title %} Upload Images - Portfol.io{% endblock %}

Expand Down
Loading