This commit is contained in:
Aritra Banik 2024-05-25 15:48:05 +05:30
parent 7bdb473cc7
commit 1a13c7b099
2 changed files with 34 additions and 1 deletions

View file

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>School Management System</title> <title>School Management System</title>
<link rel="stylesheet" href="style.css"> @css '/templates/style.css'
</head> </head>
<body> <body>
<header> <header>

33
src/templates/style.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;
}