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 {
|
.box {
|
||||||
border: 2px solid black;
|
border: 2px solid black;
|
||||||
width: 210px;
|
width: 210px;
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue