Skip to content
Snippets Groups Projects
Commit bc3e7023 authored by James2Tulloch's avatar James2Tulloch
Browse files

Improved CSS for base.html

parent 48aa9999
No related branches found
No related tags found
No related merge requests found
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>{% block title %}My Project{% endblock %}</title> <title>{% block title %}My Project{% endblock %}</title>
<style> <style>
...@@ -23,9 +24,10 @@ ...@@ -23,9 +24,10 @@
text-align: center; text-align: center;
padding: 14px 20px; padding: 14px 20px;
text-decoration: none; text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
} }
nav li a:hover { nav li a:hover {
background-color: #111; background-color: #74dcff;
} }
nav form { nav form {
float: right; float: right;
...@@ -40,6 +42,11 @@ ...@@ -40,6 +42,11 @@
<!-- Menu Bar --> <!-- Menu Bar -->
<nav> <nav>
<ul> <ul>
<li>
<svg width="200" height="60" viewBox="0 0 200 60" xmlns="http://www.w3.org/2000/svg" fill="White">
<text x="10" y="45" font-family="Arial, sans-serif" font-size="20" font-weight="bold">UniHub</text>
</svg>
</li>
<li><a href="{% url 'feed' %}">Home</a></li> <li><a href="{% url 'feed' %}">Home</a></li>
<li><a href="{% url 'create_post' %}">Post</a></li> <li><a href="{% url 'create_post' %}">Post</a></li>
<li><a href="{% url 'account' %}">Account</a></li> <li><a href="{% url 'account' %}">Account</a></li>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment