added styling to notes page
This commit is contained in:
@@ -6,11 +6,38 @@
|
|||||||
<title>Notes</title>
|
<title>Notes</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
<style>
|
||||||
|
body{
|
||||||
|
background-image: url("static/background.jpg");
|
||||||
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||||
|
color: white;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
a{
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
div{
|
||||||
|
max-width: 50vw;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
form{
|
||||||
|
margin-top: 2vh;
|
||||||
|
}
|
||||||
|
.save{
|
||||||
|
width: 50vw;
|
||||||
|
}
|
||||||
|
textarea{
|
||||||
|
width: 50vw;
|
||||||
|
height: 80vh;
|
||||||
|
resize: none;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
<a href="http://localhost:5000/">Home (No save)</a>
|
<a href="http://localhost:5000/">Home (No save)</a>
|
||||||
<form action="http://localhost:5000/savenotes" method="post">
|
<form action="http://localhost:5000/savenotes" method="post">
|
||||||
<input for="path" name="path" type="hidden" value="{{ path }}" style="display: hidden;"></input>
|
<input for="path" name="path" type="hidden" value="{{ path }}" style="display: hidden;"></input>
|
||||||
<textarea for="notes" name="notes">{{ notes }}</textarea>
|
<textarea for="notes" name="notes", style="">{{ notes }}</textarea>
|
||||||
<input type="submit" value="save"></input>
|
</br>
|
||||||
|
<input class="save" type="submit" value="Save"></input>
|
||||||
</form>
|
</form>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@@ -1 +1 @@
|
|||||||
my notes 12345
|
My notes
|
||||||
Reference in New Issue
Block a user