Commit 6e65f707 authored by Jenica's avatar Jenica

Updated base.html and create_event.html for styling purposes

parent e8f7c9b3
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
{% load static %} {% load static %}
{% block title %}Widget's Forum{% endblock %} {% block title %}Widget's Forum{% endblock %}
{% block content %} {% block content %}
<div class="container justify-content-md-center align-items-center vh-80" id="trial"> <div class="container justify-content-md-center align-items-center" id="trial">
<div class="row"> <div class="row">
<div class="col-12"> <div class="col-12">
<div class="main content" style="font-family:'Inter';"> <div class="main content" style="font-family:'Inter';">
......
...@@ -17,7 +17,7 @@ body { ...@@ -17,7 +17,7 @@ body {
background-size: 80%; background-size: 80%;
} }
.nav-link { #event-catalog {
color: var(--theme-orange); color: var(--theme-orange);
font-size: 1.5vw; font-size: 1.5vw;
} }
......
...@@ -9,8 +9,8 @@ ...@@ -9,8 +9,8 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8"> <meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="{% static '/css/custom.css' %}"> <link rel="stylesheet" type="text/css" href="{% static 'css/custom.css' %}">
<link rel="icon" type="image/x-icon" href="static/images/Logo.png"> <link rel="icon" type="image/x-icon" href="{% static 'images/Logo.png' %}">
<title>{% block title %}Red Brick Board{% endblock %}</title> <title>{% block title %}Red Brick Board{% endblock %}</title>
{% block head %} {% block head %}
{% endblock %} {% endblock %}
...@@ -20,18 +20,18 @@ ...@@ -20,18 +20,18 @@
<nav class="navbar navbar-expand-md navbar-light bg-light"> <nav class="navbar navbar-expand-md navbar-light bg-light">
<div class="container-fluid"> <div class="container-fluid">
<a class="navbar-brand" href="#"> <a class="navbar-brand" href="#">
<img src="{% static '/images/Logo with Name.png' %}" alt="Red Brick Board" style="width:30%; height:auto; padding-left:10%;"> <img src="{% static 'images/Logo with Name.png' %}" alt="Red Brick Board" style="width:30%; height:auto; padding-left:10%;">
</a> </a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation"> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavAltMarkup" aria-controls="navbarNavAltMarkup" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span> <span class="navbar-toggler-icon"></span>
</button> </button>
<div class="collapse navbar-collapse justify-content-end align-center" id="navbarNavAltMarkup"> <div class="collapse navbar-collapse justify-content-end align-center" id="navbarNavAltMarkup">
<div class="navbar-nav"> <div class="navbar-nav">
<a class="nav-link" href="#">Event Catalog</a> <a class="nav-link" id="event-catalog" href="#">Event Catalog</a>
<form class="container-fluid">
<button class="btn" type="button">Log Out</button>
</form>
</div> </div>
<form class="container-fluid justify-content-start">
<button class="btn" type="button">Log Out</button>
</form>
</div> </div>
</div> </div>
</nav> </nav>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment