Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_group17
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
Vaughn Nephi Fajardo
widget_group17
Commits
c4320554
Commit
c4320554
authored
May 08, 2022
by
Vaughn Fajardo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
style: cleaned up code syntax and spacing
parent
e7c316f1
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
56 additions
and
18 deletions
+56
-18
.DS_Store
widget_group_17/.DS_Store
+0
-0
.DS_Store
widget_group_17/homepage/.DS_Store
+0
-0
bg.png
widget_group_17/homepage/static/bg.png
+0
-0
style.css
widget_group_17/homepage/static/homepage/style.css
+32
-7
base.html
widget_group_17/homepage/templates/homepage/base.html
+3
-2
details.html
widget_group_17/homepage/templates/homepage/details.html
+17
-7
index.html
widget_group_17/homepage/templates/homepage/index.html
+4
-2
No files found.
widget_group_17/.DS_Store
View file @
c4320554
No preview for this file type
widget_group_17/homepage/.DS_Store
View file @
c4320554
No preview for this file type
widget_group_17/homepage/static/bg.png
0 → 100644
View file @
c4320554
This diff is collapsed.
Click to expand it.
widget_group_17/homepage/static/homepage/style.css
View file @
c4320554
h1
{
color
:
black
;
font-weight
:
bold
;
}
p
{
p
{
color
:
black
;
color
:
white
;
font-weight
:
bold
;
font-weight
:
bold
;
font-family
:
Helvetica
;
font-size
:
25px
;
}
h1
{
position
:
sticky
;
text-align
:
left
;
color
:
white
;
font-size
:
55px
;
font-family
:
Helvetica
;
}
}
body
{
body
{
background-color
:
pink
;
background-image
:
url("/static/bg.png")
;
background-repeat
:
no-repeat
;
background-size
:
cover
;
background-position
:
center
;
background-attachment
:
fixed
;
font-family
:
Helvetica
;
}
}
a
{
a
{
color
:
black
;
color
:
white
;
font-family
:
Helvetica
;
font-weight
:
bold
;
}
ol
{
font-size
:
35px
;
font-family
:
Helvetica
;
color
:
white
;
font-weight
:
bold
;
}
a
:link
{
text-decoration
:
none
;
}
img
{
position
:
relative
;
top
:
150px
;
}
}
\ No newline at end of file
widget_group_17/homepage/templates/homepage/base.html
View file @
c4320554
...
@@ -7,8 +7,9 @@
...
@@ -7,8 +7,9 @@
<meta
charset=
"UTF-8"
>
<meta
charset=
"UTF-8"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
>
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1"
>
<meta
name=
"viewport"
content=
"width=device-width,initial-scale=1"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{% static 'homepage/style.css' %}"
>
<link
rel=
"stylesheet"
type=
"text/css"
<title>
Homepage
</title>
href=
"{% static 'homepage/style.css' %}"
>
<title>
Website
</title>
</head>
</head>
<body>
<body>
{% block content %}
{% block content %}
...
...
widget_group_17/homepage/templates/homepage/details.html
View file @
c4320554
{% extends "homepage/base.html" %}
{% extends "homepage/base.html" %}
{% block content %}
{% block content %}
<div
class=
"Details Information"
>
<div>
<ul>
<ul>
<p>
{{details.last_name}}, {{details.first_name}} {{details.middle_name}}
</p>
<p
style=
"font-size:50px; position: relative; top:70px;"
>
<p>
{{ details.id_num }}
</p>
{{details.last_name}}, {{details.first_name}} {{details.middle_name}}
<p>
{{ details.email }}
</p>
</p>
<p>
{{ details.department.dept_name }}
</p>
<p
style=
"position: absolute; top:150px"
>
<p>
{{ details.department.home_unit }}
</p>
ID Number: {{ details.id_num }}
<img
src =
"/static/{{ details.file }} "
>
</p>
<p
style=
"position: absolute; top:180px"
>
Email Address: {{ details.email }}
</p>
<p
style=
"position: absolute; top:210px"
>
Department: {{ details.department.dept_name }}
</p>
<p
style=
"position: absolute; top:240px"
>
Home Unit: {{ details.department.home_unit }}
</p>
<img
src =
"/static/{{ details.file }} "
width=
"250"
height=
"250"
>
</ul>
</ul>
</div>
</div>
{% endblock %}
{% endblock %}
widget_group_17/homepage/templates/homepage/index.html
View file @
c4320554
{% extends "homepage/base.html" %}
{% extends "homepage/base.html" %}
{% block content %}
{% block content %}
<div
class=
"Homepage Display"
>
<div
style =
"position: relative; left:80px; top:30px;"
>
<h1>
Welcome to Widget!
</h1>
<h1>
WELCOME TO WIDGET!
</h1>
</div>
<div
style =
"position:relative; left:80px; top:35px;"
>
<p>
Widget Users:
<p>
Widget Users:
<ol>
<ol>
{% for user in widget_user %}
{% for user in widget_user %}
...
...
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