Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
calvincruz_reading
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
0
Merge Requests
0
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
Calvin Josh Cruz
calvincruz_reading
Commits
4c40610a
Commit
4c40610a
authored
Mar 29, 2023
by
karin-kurusu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added CSS styling to project
parent
b8eefd3c
Pipeline
#3139
canceled with stages
Changes
9
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
63 additions
and
6 deletions
+63
-6
author_details.html
...reading/bookshelf/templates/bookshelf/author_details.html
+1
-1
authors.html
...incruz_reading/bookshelf/templates/bookshelf/authors.html
+1
-1
book_detais.html
...uz_reading/bookshelf/templates/bookshelf/book_detais.html
+1
-1
books.html
calvincruz_reading/bookshelf/templates/bookshelf/books.html
+1
-1
home.html
calvincruz_reading/bookshelf/templates/home.html
+1
-1
settings.cpython-310.pyc
...g/calvincruz_reading/__pycache__/settings.cpython-310.pyc
+0
-0
settings.py
calvincruz_reading/calvincruz_reading/settings.py
+1
-0
style.css
calvincruz_reading/static/style.css
+55
-0
base.html
calvincruz_reading/templates/base.html
+2
-1
No files found.
calvincruz_reading/bookshelf/templates/bookshelf/author_details.html
View file @
4c40610a
...
@@ -26,6 +26,6 @@
...
@@ -26,6 +26,6 @@
<ul
class=
"navbarList"
>
<ul
class=
"navbarList"
>
<li
class=
"navbarItem"
><a
href=
"/home"
>
Home
</a></li>
<li
class=
"navbarItem"
><a
href=
"/home"
>
Home
</a></li>
<li
class=
"navbarItem"
><a
href=
"/books"
>
Books
</a></li>
<li
class=
"navbarItem"
><a
href=
"/books"
>
Books
</a></li>
<li
class=
"nav
B
arItem"
><a
href=
"/authors"
>
Authors
</a></li>
<li
class=
"nav
b
arItem"
><a
href=
"/authors"
>
Authors
</a></li>
</ul>
</ul>
{% endblock %}
{% endblock %}
\ No newline at end of file
calvincruz_reading/bookshelf/templates/bookshelf/authors.html
View file @
4c40610a
...
@@ -16,6 +16,6 @@
...
@@ -16,6 +16,6 @@
{% block navbar %}
{% block navbar %}
<ul
class=
"navbarList"
>
<ul
class=
"navbarList"
>
<li
class=
"navbarItem"
><a
href=
"/home"
>
Home
</a></li>
<li
class=
"navbarItem"
><a
href=
"/home"
>
Home
</a></li>
<li
class=
"nav
B
arItem"
><a
href=
"/books"
>
Books
</a></li>
<li
class=
"nav
b
arItem"
><a
href=
"/books"
>
Books
</a></li>
</ul>
</ul>
{% endblock %}
{% endblock %}
\ No newline at end of file
calvincruz_reading/bookshelf/templates/bookshelf/book_detais.html
View file @
4c40610a
...
@@ -19,6 +19,6 @@
...
@@ -19,6 +19,6 @@
<ul
class=
"navbarList"
>
<ul
class=
"navbarList"
>
<li
class=
"navbarItem"
><a
href=
"/home"
>
Home
</a></li>
<li
class=
"navbarItem"
><a
href=
"/home"
>
Home
</a></li>
<li
class=
"navbarItem"
><a
href=
"/books"
>
Books
</a></li>
<li
class=
"navbarItem"
><a
href=
"/books"
>
Books
</a></li>
<li
class=
"nav
B
arItem"
><a
href=
"/authors"
>
Authors
</a></li>
<li
class=
"nav
b
arItem"
><a
href=
"/authors"
>
Authors
</a></li>
</ul>
</ul>
{% endblock %}
{% endblock %}
\ No newline at end of file
calvincruz_reading/bookshelf/templates/bookshelf/books.html
View file @
4c40610a
...
@@ -16,6 +16,6 @@
...
@@ -16,6 +16,6 @@
{% block navbar %}
{% block navbar %}
<ul
class=
"navbarList"
>
<ul
class=
"navbarList"
>
<li
class=
"navbarItem"
><a
href=
"/home"
>
Home
</a></li>
<li
class=
"navbarItem"
><a
href=
"/home"
>
Home
</a></li>
<li
class=
"nav
B
arItem"
><a
href=
"/authors"
>
Authors
</a></li>
<li
class=
"nav
b
arItem"
><a
href=
"/authors"
>
Authors
</a></li>
</ul>
</ul>
{% endblock %}
{% endblock %}
\ No newline at end of file
calvincruz_reading/bookshelf/templates/home.html
View file @
4c40610a
...
@@ -20,6 +20,6 @@
...
@@ -20,6 +20,6 @@
{% block navbar %}
{% block navbar %}
<ul
class=
"navbarList"
>
<ul
class=
"navbarList"
>
<li
class=
"navbarItem"
><a
href=
"/books"
>
Books
</a></li>
<li
class=
"navbarItem"
><a
href=
"/books"
>
Books
</a></li>
<li
class=
"nav
B
arItem"
><a
href=
"/authors"
>
Authors
</a></li>
<li
class=
"nav
b
arItem"
><a
href=
"/authors"
>
Authors
</a></li>
</ul>
</ul>
{% endblock %}
{% endblock %}
\ No newline at end of file
calvincruz_reading/calvincruz_reading/__pycache__/settings.cpython-310.pyc
View file @
4c40610a
No preview for this file type
calvincruz_reading/calvincruz_reading/settings.py
View file @
4c40610a
...
@@ -121,6 +121,7 @@ USE_TZ = True
...
@@ -121,6 +121,7 @@ USE_TZ = True
# https://docs.djangoproject.com/en/4.1/howto/static-files/
# https://docs.djangoproject.com/en/4.1/howto/static-files/
STATIC_URL
=
'static/'
STATIC_URL
=
'static/'
STATICFILES_DIRS
=
[
os
.
path
.
join
(
BASE_DIR
,
'static'
)]
# Default primary key field type
# Default primary key field type
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
...
...
calvincruz_reading/static/style.css
0 → 100644
View file @
4c40610a
h2
{
font-family
:
"Arial"
;
}
p
{
font-family
:
"Arial"
;
}
ul
{
font-family
:
"Arial"
;
}
body
{
color
:
white
;
background-color
:
#121924
;
}
a
:link
{
color
:
#065fbf
;
text-decoration
:
none
;
}
a
:visited
{
color
:
#065fbf
;
text-decoration
:
none
;
}
a
:hover
{
color
:
#063070
;
text-decoration
:
none
;
}
.navbarList
{
list-style-type
:
none
;
margin
:
0
;
padding
:
0
;
overflow
:
hidden
;
background-color
:
#0e141c
;
}
.navbarItem
{
font-family
:
"Arial"
;
float
:
left
;
}
.navbarItem
a
{
display
:
block
;
color
:
white
;
text-align
:
center
;
padding
:
10px
10px
;
text-decoration
:
none
;
}
.navbarItem
a
:hover
{
background-color
:
#065fbf
;
}
\ No newline at end of file
calvincruz_reading/templates/base.html
View file @
4c40610a
<!DOCTYPE html>
<!DOCTYPE html>
<html
lang=
"en"
>
<html
lang=
"en"
>
<head>
<head>
<link
rel=
"stylesheet"
href=
"style.css"
>
{% load static %}
<link
rel=
"stylesheet"
href=
"{% static '/style.css' %}"
>
<title>
{% block title %}My Favorite Books
&
Authors{% endblock %}
</title>
<title>
{% block title %}My Favorite Books
&
Authors{% endblock %}
</title>
{% block styles %}{% endblock %}
{% block styles %}{% endblock %}
</head>
</head>
...
...
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