add footer with disclaimer about correctness
This commit is contained in:
parent
74cafbb6f0
commit
72c70b74f9
2 changed files with 15 additions and 0 deletions
|
@ -43,6 +43,10 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<footer>
|
||||||
|
<p>Die richtigkeit der berechneten Note kann nicht garantiert werden</p>
|
||||||
|
</footer>
|
||||||
|
|
||||||
<script src="rechner.js"></script>
|
<script src="rechner.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -34,6 +34,12 @@ html * {
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
text-align: center;
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px 0;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 24pt;
|
font-size: 24pt;
|
||||||
font-weight: bolder;
|
font-weight: bolder;
|
||||||
|
@ -77,6 +83,11 @@ input:focus {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#disclaimer {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
input[type=submit] {
|
input[type=submit] {
|
||||||
width: 82px;
|
width: 82px;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
Loading…
Add table
Reference in a new issue