Modified css styling

parent 357385ce
...@@ -42,7 +42,12 @@ li a:hover { ...@@ -42,7 +42,12 @@ li a:hover {
</body> </body>
</html> </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 %} {% endblock %}
{% block content %} {% block content %}
......
...@@ -43,7 +43,9 @@ li a:hover { ...@@ -43,7 +43,9 @@ li a:hover {
</body> </body>
</html> </html>
<h1> Add a new Widget User: </h1> {% endblock %} <h2> Add a new Widget User: </h2>
{% endblock %}
{% block content %} {% block content %}
<form method="post"> <form method="post">
{% csrf_token %} {% csrf_token %}
......
...@@ -43,7 +43,10 @@ li a:hover { ...@@ -43,7 +43,10 @@ li a:hover {
</body> </body>
</html> </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 %} {% endblock %}
{% block content %} {% block content %}
......
...@@ -43,7 +43,9 @@ li a:hover { ...@@ -43,7 +43,9 @@ li a:hover {
</body> </body>
</html> </html>
<h1> Edit Widget User: </h1> {% endblock %} <h2> Edit Widget User: </h2>
{% endblock %}
{% block content %} {% block content %}
<form method="post"> <form method="post">
{% csrf_token %} {% csrf_token %}
......
...@@ -18,6 +18,9 @@ body { ...@@ -18,6 +18,9 @@ body {
background-size: cover; background-size: cover;
background-position: center; background-position: center;
background-attachment: fixed; background-attachment: fixed;
background-color: thistle;
font-size: 120%;
color: black;
} }
p{ p{
color: black; color: black;
...@@ -27,7 +30,7 @@ p{ ...@@ -27,7 +30,7 @@ p{
} }
/* announcements page style */ /* pages style */
header { header {
text-align: center; text-align: center;
width: 100%; width: 100%;
...@@ -97,9 +100,9 @@ ol { ...@@ -97,9 +100,9 @@ ol {
} }
/* announcement details heading */ /* page details heading */
section { section {
height: 100vh; height: 50vh;
background: lightblue; background: lightblue;
} }
section span { section span {
...@@ -112,17 +115,3 @@ section { ...@@ -112,17 +115,3 @@ section {
font-weight: 700; font-weight: 700;
font-family: 'Dancing Script', cursive; font-family: 'Dancing Script', cursive;
} }
\ No newline at end of file
/* 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