Split sudoku css from general css

This commit is contained in:
Drew Galbraith 2023-05-03 17:04:34 -07:00
parent c34d31effe
commit be11a2ee83
3 changed files with 10 additions and 9 deletions

9
public/css/styles.css Normal file
View File

@ -0,0 +1,9 @@
body {
font-family: sans-serif;
}
.container {
max-width: 800px;
margin: auto;
}

View File

@ -1,12 +1,3 @@
body {
font-family: sans-serif;
}
.container {
max-width: 800px;
margin: auto;
}
.box { .box {
border: 2px solid black; border: 2px solid black;
width: 210px; width: 210px;

View File

@ -2,6 +2,7 @@
<html> <html>
<head> <head>
<title>Sudoku</title> <title>Sudoku</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="css/sudoku.css"> <link rel="stylesheet" href="css/sudoku.css">
<script src="scripts/sudoku.js"></script> <script src="scripts/sudoku.js"></script>
</head> </head>