Move styles to a separate file
This commit is contained in:
parent
6df728d36e
commit
0b5cffb9d9
|
@ -3,43 +3,6 @@
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>Vier gewinnt</title>
|
<title>Vier gewinnt</title>
|
||||||
<style>
|
|
||||||
div {
|
|
||||||
box-sizing: border-box;
|
|
||||||
}
|
|
||||||
|
|
||||||
.board {
|
|
||||||
width: 84vw;
|
|
||||||
margin: auto;
|
|
||||||
outline: 1px solid black;
|
|
||||||
}
|
|
||||||
|
|
||||||
.board .field {
|
|
||||||
border: 1px solid black;
|
|
||||||
width: 12vw;
|
|
||||||
height: 12vw;
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.board .field:first-child {
|
|
||||||
display: block;
|
|
||||||
}
|
|
||||||
|
|
||||||
.board .field .piece {
|
|
||||||
width: 10vw;
|
|
||||||
height: 10vw;
|
|
||||||
border-radius: 50%;
|
|
||||||
margin: 1vw;
|
|
||||||
}
|
|
||||||
|
|
||||||
.board .field .blue {
|
|
||||||
background-color: blue;
|
|
||||||
}
|
|
||||||
|
|
||||||
.board .field .red {
|
|
||||||
background-color: red;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<link rel="stylesheet" href="./styles/style.css" />
|
<link rel="stylesheet" href="./styles/style.css" />
|
||||||
<script type="module" src="./js/main.js"></script>
|
<script type="module" src="./js/main.js"></script>
|
||||||
</head>
|
</head>
|
||||||
|
|
|
@ -0,0 +1,35 @@
|
||||||
|
div {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
|
||||||
|
.board {
|
||||||
|
width: 84vw;
|
||||||
|
margin: auto;
|
||||||
|
outline: 1px solid black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.board .field {
|
||||||
|
border: 1px solid black;
|
||||||
|
width: 12vw;
|
||||||
|
height: 12vw;
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.board .field:first-child {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.board .field .piece {
|
||||||
|
width: 10vw;
|
||||||
|
height: 10vw;
|
||||||
|
border-radius: 50%;
|
||||||
|
margin: 1vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.board .field .blue {
|
||||||
|
background-color: blue;
|
||||||
|
}
|
||||||
|
|
||||||
|
.board .field .red {
|
||||||
|
background-color: red;
|
||||||
|
}
|
Loading…
Reference in a new issue