Commit 4575f592 authored by EJ Mejilla's avatar EJ Mejilla

Styled the new pages

parent 86f3754b
......@@ -9,7 +9,7 @@
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Submit" />
<input type="submit" value="Save Changes" />
</form>
</div>
......
......@@ -9,7 +9,7 @@
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Submit" />
<input type="submit" value="Save Changes" />
</form>
</div>
......
......@@ -8,17 +8,54 @@ h1 {
text-align: center;
}
ul {
list-style-type: none;
}
li {
padding: 5px;
}
a {
text-decoration: none;
padding: 7px;
border-radius: 5px;
}
a:link, a:visited {
color:steelblue;
}
a:hover {
transition: 0.5s;
color:darkblue;
background-color: #EEEEEE;
}
input[type="text"], input[type="number"], select, textarea {
width: 100%;
padding: 10px;
border: 1px solid lightgray;
border-radius: 3px;
box-sizing: border-box;
margin-bottom: 10px;
}
input[type="submit"]{
background-color: #4CAF50;
color: white;
background-color: steelblue;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
input[type="submit"]:hover{
transition: 0.5s;
background-color: darkblue;
}
.homepage {
text-align: center;
}
......
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