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{ 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
...@@ -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 %}
......
{% 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 %}
{% 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 %}
......
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