finished Project <3

This commit is contained in:
2025-02-11 19:11:12 +01:00
parent 25b968612c
commit 38cbe19d01
4 changed files with 86 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
@font-face {
font-family: 'Cookiemonster'; /*a name to be used later*/
src: url('/assets/Cookiemonster-gv11.ttf'); /*URL to font*/
}
body {
background-color:black;
font-family: Cookiemonster;
color: white;
text-align: center;
}
.yes {
color: white;
background-color: green;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
.no {
color: white;
background-color: red;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
.yes:hover {
background-color: darkgreen;
}
.no:hover {
background-color: darkred;
}
.text {
font-size: 30px;
margin-top: 100px;
}