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

Styled the new pages

parent 86f3754b
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<table> <table>
{{ form.as_table }} {{ form.as_table }}
</table> </table>
<input type="submit" value="Submit" /> <input type="submit" value="Save Changes" />
</form> </form>
</div> </div>
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
<table> <table>
{{ form.as_table }} {{ form.as_table }}
</table> </table>
<input type="submit" value="Submit" /> <input type="submit" value="Save Changes" />
</form> </form>
</div> </div>
......
...@@ -8,17 +8,54 @@ h1 { ...@@ -8,17 +8,54 @@ h1 {
text-align: center; text-align: center;
} }
ul {
list-style-type: none;
}
li {
padding: 5px;
}
a { a {
text-decoration: none; text-decoration: none;
padding: 7px;
border-radius: 5px;
} }
a:link, a:visited { a:link, a:visited {
color:steelblue; color:steelblue;
} }
a:hover { a:hover {
transition: 0.5s; transition: 0.5s;
color:darkblue; 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 { .homepage {
text-align: center; 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