Modified css styling

parent 357385ce
......@@ -42,7 +42,12 @@ li a:hover {
</body>
</html>
<h1> Welcome to Widget! </h1>
<header>
<link href='https://fonts.googleapis.com/css?family=Dancing Script' rel='stylesheet'>
<div class="overlay">
<h> Welcome to Widget! </h>
</div>
</header>
{% endblock %}
{% block content %}
......
......@@ -43,7 +43,9 @@ li a:hover {
</body>
</html>
<h1> Add a new Widget User: </h1> {% endblock %}
<h2> Add a new Widget User: </h2>
{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
......
......@@ -43,7 +43,10 @@ li a:hover {
</body>
</html>
<h1> {{ object.first_name }} {{ object.middle_name }} {{ object.last_name }} </h1>
<link href='https://fonts.googleapis.com/css?family=Dancing Script' rel='stylesheet'>
<section>
<span>{{ object.first_name }} {{ object.middle_name }} {{ object.last_name }}</span>
</section>
{% endblock %}
{% block content %}
......
......@@ -43,7 +43,9 @@ li a:hover {
</body>
</html>
<h1> Edit Widget User: </h1> {% endblock %}
<h2> Edit Widget User: </h2>
{% endblock %}
{% block content %}
<form method="post">
{% csrf_token %}
......
......@@ -18,6 +18,9 @@ body {
background-size: cover;
background-position: center;
background-attachment: fixed;
background-color: thistle;
font-size: 120%;
color: black;
}
p{
color: black;
......@@ -27,7 +30,7 @@ p{
}
/* announcements page style */
/* pages style */
header {
text-align: center;
width: 100%;
......@@ -97,9 +100,9 @@ ol {
}
/* announcement details heading */
/* page details heading */
section {
height: 100vh;
height: 50vh;
background: lightblue;
}
section span {
......@@ -111,18 +114,4 @@ section {
display: block;
font-weight: 700;
font-family: 'Dancing Script', cursive;
}
/* dashboard pages styling */
body {
background-color: thistle;
font-size: 120%;
color: black;
font-family: 'Sans Serif';
text-align: justify;
}
h1 {
font-family: 'Papyrus';
text-align: center;
}
\ No newline at end of file
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