Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
alvaalvarez_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
Angelo Alvarez
alvaalvarez_reading
Commits
7948fb6a
Commit
7948fb6a
authored
Mar 27, 2023
by
Angelo Alvarez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added CSS Styling
parent
c57d3ce5
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
45 additions
and
5 deletions
+45
-5
settings.cpython-310.pyc
.../alvaalvarez_reading/__pycache__/settings.cpython-310.pyc
+0
-0
settings.py
alvaalvarez_reading/alvaalvarez_reading/settings.py
+2
-1
author_list.html
...ez_reading/bookshelf/templates/bookshelf/author_list.html
+2
-2
books_list.html
...rez_reading/bookshelf/templates/bookshelf/books_list.html
+1
-1
style.css
alvaalvarez_reading/static/style.css
+39
-0
base.html
alvaalvarez_reading/templates/base.html
+1
-1
No files found.
alvaalvarez_reading/alvaalvarez_reading/__pycache__/settings.cpython-310.pyc
View file @
7948fb6a
No preview for this file type
alvaalvarez_reading/alvaalvarez_reading/settings.py
View file @
7948fb6a
...
...
@@ -119,7 +119,8 @@ USE_TZ = True
# Static files (CSS, JavaScript, Images)
# 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
# https://docs.djangoproject.com/en/4.1/ref/settings/#default-auto-field
...
...
alvaalvarez_reading/bookshelf/templates/bookshelf/author_list.html
View file @
7948fb6a
...
...
@@ -6,7 +6,7 @@
<h1>
Alva's Favorite Authors
</h1>
<ul>
{% for object in object_list %}
<li><a
href=
"{{ object.get_absolute_url }}"
>
{{ object.first_name }} {{ object.last_name }}
</a></li>
<li
style=
"list-style-type: circle;"
><a
href=
"{{ object.get_absolute_url }}"
>
{{ object.first_name }} {{ object.last_name }}
</a></li>
{% endfor %}
</ul>
...
...
@@ -15,7 +15,7 @@
<div
id=
"links"
style=
"margin: auto; text-align: center; width: 100%"
>
<a
href=
"/bookshelf/home/"
>
Home
</a>
<a
href=
"/bookshelf/
authors/"
>
Author
s
</a>
<a
href=
"/bookshelf/
books/"
>
Book
s
</a>
</div>
{% endblock %}
alvaalvarez_reading/bookshelf/templates/bookshelf/books_list.html
View file @
7948fb6a
...
...
@@ -6,7 +6,7 @@
<h1>
Alva's Favorite Books
</h1>
<ul>
{% for object in object_list %}
<li><a
href=
"{{ object.get_absolute_url }}"
>
{{ object.title }}
</a></li>
<li
style=
"list-style-type: circle;"
><a
href=
"{{ object.get_absolute_url }}"
>
{{ object.title }}
</a></li>
{% endfor %}
</ul>
...
...
alvaalvarez_reading/static/style.css
0 → 100644
View file @
7948fb6a
*
{
font-family
:
Helvetica
;
line-height
:
1.5em
;
}
body
{
margin-right
:
50px
;
margin-left
:
50px
;
}
hr
{
border-top
:
1px
dotted
gray
;
}
a
{
color
:
#206BA4
;
text-decoration
:
none
;
}
a
:hover
{
color
:
#BBD9EE
;
font-weight
:
bold
;
text-decoration
:
none
;
}
a
:visited
{
color
:
#51146b
;
font-weight
:
bold
;
text-decoration
:
underline
;
}
h1
{
text-align
:
center
;
}
ul
li
{
background
:
#ddecfc
;
margin
:
10px
;
}
\ No newline at end of file
alvaalvarez_reading/templates/base.html
View file @
7948fb6a
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<link
rel=
"stylesheet"
href=
"style.css"
>
<link
rel=
"stylesheet"
href=
"
/static/
style.css"
>
<title>
{% block title %}My amazing site{% endblock %}
</title>
{% block styles %}{% endblock %}
</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