buttons on main page

This commit is contained in:
biglyderv 2024-11-25 14:14:20 -05:00
parent 77071c2e49
commit dc26c4281b
2 changed files with 17 additions and 5 deletions

View file

@ -32,7 +32,6 @@ p {
}
body {
user-select: none;
-webkit-user-select: none;
}
@ -56,6 +55,8 @@ body {
height: 768px;
/*image-rendering: pixelated;*/
background: rgb(63, 63, 71);
display: block;
}
section#main {
@ -67,4 +68,15 @@ section#main {
width: min(512px, 90vw);
height: min(512px, 90vw);
}
}
.button {
background: rgb(44, 41, 53);
border-radius: 15px;
color: rgb(255,255,255);
display: inline-block;
text-decoration: none;
font-weight: bold;
margin: 10px;
padding: 10px;
}