This commit is contained in:
2024-07-08 02:51:24 +05:30
parent bb939840dc
commit 32f9dadab3
7 changed files with 76 additions and 1 deletions

33
s1/static/stylee.css Normal file
View File

@@ -0,0 +1,33 @@
body {
font-family: sans-serif;
margin: 0;
padding: 20px;
}
header {
text-align: center;
}
main {
display: flex;
justify-content: center;
align-items: center;
min-height: calc(100vh - 120px); /* Subtract header and footer height */
}
.options {
text-align: center;
}
.options a {
display: block;
margin-bottom: 10px;
padding: 10px 20px;
border: 1px solid #ddd;
text-decoration: none;
color: #000;
}
.options a:hover {
background-color: #eee;
}