Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
red_brick_board
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ciella Francisco
red_brick_board
Commits
6e65f707
Commit
6e65f707
authored
Mar 12, 2024
by
Jenica
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated base.html and create_event.html for styling purposes
parent
e8f7c9b3
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
create_event.html
...t_management/templates/event_management/create_event.html
+1
-1
custom.css
redbrickboard/static/css/custom.css
+1
-1
base.html
redbrickboard/templates/base.html
+7
-7
No files found.
redbrickboard/event_management/templates/event_management/create_event.html
View file @
6e65f707
...
@@ -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';"
>
...
...
redbrickboard/static/css/custom.css
View file @
6e65f707
...
@@ -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
;
}
}
...
...
redbrickboard/templates/base.html
View file @
6e65f707
...
@@ -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,20 +20,20 @@
...
@@ -20,20 +20,20 @@
<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>
</div>
<form
class=
"container-fluid"
>
<form
class=
"container-fluid justify-content-start"
>
<button
class=
"btn"
type=
"button"
>
Log Out
</button>
<button
class=
"btn"
type=
"button"
>
Log Out
</button>
</form>
</form>
</div>
</div>
</div>
</div>
</div>
</nav>
</nav>
{% block content %}
{% block content %}
{% endblock %}
{% endblock %}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment