Commit 6e65f707 authored by Jenica's avatar Jenica

Updated base.html and create_event.html for styling purposes

parent e8f7c9b3
......@@ -2,7 +2,7 @@
{% load static %}
{% block title %}Widget's Forum{% endblock %}
{% 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="col-12">
<div class="main content" style="font-family:'Inter';">
......
......@@ -17,7 +17,7 @@ body {
background-size: 80%;
}
.nav-link {
#event-catalog {
color: var(--theme-orange);
font-size: 1.5vw;
}
......
......@@ -9,8 +9,8 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<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="stylesheet" type="text/css" href="{% static 'css/custom.css' %}">
<link rel="icon" type="image/x-icon" href="{% static 'images/Logo.png' %}">
<title>{% block title %}Red Brick Board{% endblock %}</title>
{% block head %}
{% endblock %}
......@@ -20,20 +20,20 @@
<nav class="navbar navbar-expand-md navbar-light bg-light">
<div class="container-fluid">
<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>
<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>
</button>
<div class="collapse navbar-collapse justify-content-end align-center" id="navbarNavAltMarkup">
<div class="navbar-nav">
<a class="nav-link" href="#">Event Catalog</a>
</div>
<form class="container-fluid justify-content-start">
<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>
</div>
</nav>
{% block content %}
{% endblock %}
......
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