moved the style to its own file

This commit is contained in:
Karma Riuk
2025-05-07 13:21:22 +02:00
parent ce5cefbc05
commit c74b3ffd2b
2 changed files with 15 additions and 16 deletions

14
public/css/style.css Normal file
View File

@ -0,0 +1,14 @@
body {
font-family: sans-serif;
max-width: 600px;
margin: 2em auto;
}
fieldset {
margin-bottom: 1.5em;
padding: 1em;
}
button {
padding: 0.5em 1em;
}

View File

@ -5,22 +5,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>Dataset Downloader & Answer Uploader</title> <title>Dataset Downloader & Answer Uploader</title>
<style> <link rel="stylesheet" href="css/style.css">
body {
font-family: sans-serif;
max-width: 600px;
margin: 2em auto;
}
fieldset {
margin-bottom: 1.5em;
padding: 1em;
}
button {
padding: 0.5em 1em;
}
</style>
</head> </head>
<body> <body>