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
f9ba1a62
Commit
f9ba1a62
authored
May 12, 2023
by
justin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: added better css styling
parent
f421774d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
2 deletions
+46
-2
calendar.html
...anatics/calendar_app/templates/calendar_app/calendar.html
+1
-1
db.sqlite3
widget_casanatics/db.sqlite3
+0
-0
style.css
widget_casanatics/static/css/style.css
+45
-1
No files found.
widget_casanatics/calendar_app/templates/calendar_app/calendar.html
View file @
f9ba1a62
...
...
@@ -6,7 +6,7 @@
<h1>
Widget's Calendar of Activities
</h1>
<ul>
{% for object in object_list %}
<li
style=
"list-style-type: circle;"
><a
href=
"{{ object.get_absolute_url }}"
>
{{ object.activity }}
</a></li>
<li><a
href=
"{{ object.get_absolute_url }}"
>
{{ object.activity }}
</a></li>
{% endfor %}
</ul>
...
...
widget_casanatics/db.sqlite3
View file @
f9ba1a62
No preview for this file type
widget_casanatics/static/css/style.css
View file @
f9ba1a62
@import
url('https://fonts.googleapis.com/css2?family=Poppins:wght@
5
00&display=swap')
;
@import
url('https://fonts.googleapis.com/css2?family=Poppins:wght@
200;500&family=Roboto:wght@7
00&display=swap')
;
:root
{
--fg
:
#b7bdf8
;
...
...
@@ -8,18 +8,62 @@
body
{
background-color
:
var
(
--bg
);
color
:
var
(
--fg
);
padding
:
2rem
;
text-align
:
center
;
}
a
:visited
{
color
:
var
(
--fg
);
}
a
:link
{
color
:
var
(
--fg
);
}
a
:hover
{
color
:
var
(
--desert
);
font-size
:
1.1rem
;
}
a
{
transition
:
color
0.25s
ease
;
transition
:
font-size
0.1s
ease
;
font-family
:
'Roboto'
;
text-decoration
:
none
;
}
ul
{
list-style-type
:
none
;
padding
:
0
;
}
li
{
padding
:
0.15rem
;
}
h1
{
font-family
:
'Poppins'
,
sans-serif
;
}
h2
{
font-family
:
'Poppins'
,
sans-serif
;
font-weight
:
200
;
}
button
{
border-radius
:
0.15rem
;
padding
:
0.5rem
;
border
:
none
;
background-color
:
var
(
--desert
);
color
:
var
(
--bg
);
font-family
:
'Poppins'
,
sans-serif
;
font-weight
:
500
;
text-transform
:
capitalize
;
box-shadow
:
6px
5px
14px
1px
rgba
(
19
,
8
,
54
,
0.64
);
-webkit-box-shadow
:
6px
5px
14px
1px
rgba
(
19
,
8
,
54
,
0.64
);
-moz-box-shadow
:
6px
5px
14px
1px
rgba
(
19
,
8
,
54
,
0.64
);
}
.nav-bar
{
padding
:
0.5rem
;
}
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