Split sudoku css from general css
This commit is contained in:
parent
c34d31effe
commit
be11a2ee83
|
@ -0,0 +1,9 @@
|
|||
body {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: auto;
|
||||
}
|
||||
|
|
@ -1,12 +1,3 @@
|
|||
body {
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
.container {
|
||||
max-width: 800px;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.box {
|
||||
border: 2px solid black;
|
||||
width: 210px;
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>Sudoku</title>
|
||||
<link rel="stylesheet" href="css/styles.css">
|
||||
<link rel="stylesheet" href="css/sudoku.css">
|
||||
<script src="scripts/sudoku.js"></script>
|
||||
</head>
|
||||
|
|
Loading…
Reference in New Issue