Commit c4320554 authored by Vaughn Fajardo's avatar Vaughn Fajardo

style: cleaned up code syntax and spacing

parent e7c316f1
This diff is collapsed.
h1 {
color: black;
font-weight: bold;
}
p{
color: black;
color: white;
font-weight: bold;
font-family: Helvetica;
font-size:25px;
}
h1 {
position: sticky;
text-align: left;
color: white;
font-size: 55px;
font-family: Helvetica;
}
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{
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
......@@ -7,8 +7,9 @@
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="{% static 'homepage/style.css' %}">
<title>Homepage</title>
<link rel="stylesheet" type="text/css"
href="{% static 'homepage/style.css' %}">
<title>Website</title>
</head>
<body>
{% block content %}
......
{% extends "homepage/base.html" %}
{% block content %}
<div class="Details Information">
<div>
<ul>
<p>{{details.last_name}}, {{details.first_name}} {{details.middle_name}}</p>
<p>{{ details.id_num }}</p>
<p>{{ details.email }}</p>
<p>{{ details.department.dept_name }}</p>
<p>{{ details.department.home_unit }}</p>
<img src = "/static/{{ details.file }} ">
<p style="font-size:50px; position: relative; top:70px;">
{{details.last_name}}, {{details.first_name}} {{details.middle_name}}
</p>
<p style="position: absolute; top:150px">
ID Number: {{ details.id_num }}
</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>
</div>
{% endblock %}
{% extends "homepage/base.html" %}
{% block content %}
<div class="Homepage Display">
<h1>Welcome to Widget!</h1>
<div style = "position: relative; left:80px; top:30px;">
<h1>WELCOME TO WIDGET!</h1>
</div>
<div style = "position:relative; left:80px; top:35px;">
<p>Widget Users:
<ol>
{% for user in widget_user %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment