42 lines
681 B
CSS
42 lines
681 B
CSS
@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;
|
|
} |