initial commit
This commit is contained in:
6
src/main/resources/static/scripts/test.js
Normal file
6
src/main/resources/static/scripts/test.js
Normal file
@@ -0,0 +1,6 @@
|
||||
function Quadrat() {
|
||||
var Eingabe = document.getElementsByName("name");
|
||||
var Ergebnis = Eingabe.value;
|
||||
alert("Das Quadrat von " + Eingabe.value + " = " + Ergebnis);
|
||||
Eingabe.value = "Aaron";
|
||||
}
|
||||
7
src/main/resources/static/styles/dashboard.css
Normal file
7
src/main/resources/static/styles/dashboard.css
Normal file
@@ -0,0 +1,7 @@
|
||||
td.voted {
|
||||
background-color: #f05048;
|
||||
}
|
||||
|
||||
td.notVoted {
|
||||
background-color: #76ed6b;
|
||||
}
|
||||
18
src/main/resources/static/styles/start.css
Normal file
18
src/main/resources/static/styles/start.css
Normal file
@@ -0,0 +1,18 @@
|
||||
body {
|
||||
background-color: rgb(44, 49, 54);
|
||||
font-family: Arial, Helvetica, sans-serif;
|
||||
}
|
||||
|
||||
h2 {
|
||||
color: whitesmoke;
|
||||
font-size: 2em;
|
||||
font-family: Georgia, 'Times New Roman', Times, serif;
|
||||
border-bottom: 5px dotted #e3e7ec;
|
||||
border-top: 5px dotted white;
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
form {
|
||||
color: #3cff00;
|
||||
font-weight: bold;
|
||||
}
|
||||
Reference in New Issue
Block a user