Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_casanatics
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
John Aidan Vincent M. Ng
midterm_casanatics
Commits
f421774d
Commit
f421774d
authored
May 12, 2023
by
justin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: fixed css implementation and basic styling done
parent
67a092b6
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
30 additions
and
4 deletions
+30
-4
db.sqlite3
widget_casanatics/db.sqlite3
+0
-0
style.css
widget_casanatics/static/css/style.css
+25
-0
style.css
widget_casanatics/static/style.css
+0
-0
base.html
widget_casanatics/templates/base.html
+3
-2
settings.cpython-310.pyc
...cs/widget_casanatics/__pycache__/settings.cpython-310.pyc
+0
-0
settings.py
widget_casanatics/widget_casanatics/settings.py
+2
-2
No files found.
widget_casanatics/db.sqlite3
View file @
f421774d
No preview for this file type
widget_casanatics/static/css/style.css
0 → 100644
View file @
f421774d
@import
url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap')
;
:root
{
--fg
:
#b7bdf8
;
--bg
:
#24273a
;
--desert
:
#b9baa3
;
}
body
{
background-color
:
var
(
--bg
);
color
:
var
(
--fg
);
}
a
:visited
{
color
:
var
(
--fg
);
}
a
:link
{
color
:
var
(
--fg
);
}
ul
{
list-style-type
:
none
;
}
h1
{
font-family
:
'Poppins'
,
sans-serif
;
}
widget_casanatics/static/style.css
deleted
100644 → 0
View file @
67a092b6
widget_casanatics/templates/base.html
View file @
f421774d
{% load static %}
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<link
rel=
"stylesheet"
href=
"/static/style.css"
>
<link
rel=
"stylesheet"
href=
"{% static 'css/style.css' %}"
/
>
<title>
{% block title %}My amazing site{% endblock %}
</title>
{% block styles %}{% endblock %}
</head>
...
...
widget_casanatics/widget_casanatics/__pycache__/settings.cpython-310.pyc
View file @
f421774d
No preview for this file type
widget_casanatics/widget_casanatics/settings.py
View file @
f421774d
...
...
@@ -123,8 +123,8 @@ USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/3.2/howto/static-files/
STATIC_URL
=
'
/
static/'
STATICFILES_DIRS
=
[
os
.
path
.
join
(
BASE_DIR
,
'static'
)]
STATIC_URL
=
'static/'
STATICFILES_DIRS
=
BASE_DIR
,
"static"
# Default primary key field type
# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
...
...
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