finished Project <3
This commit is contained in:
42
style.css
42
style.css
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user