" Pure CSS Connect 4 "
Bootstrap 3.0.0 Snippet by harunpehlivan

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.0.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<h1>Pure CSS Connect 4</h1>
<form>
<div class="board">
<div class="field">
<div class="grid column">
<input type="radio" name="slot11" tabindex="-1" required>
<input type="radio" name="slot11" tabindex="-1" required>
<div class="disc"></div>
<input type="radio" name="slot12" tabindex="-1" required>
<input type="radio" name="slot12" tabindex="-1" required>
<div class="disc"></div>
<input type="radio" name="slot13" tabindex="-1" required>
<input type="radio" name="slot13" tabindex="-1" required>
<div class="disc"></div>
<input type="radio" name="slot14" tabindex="-1" required>
<input type="radio" name="slot14" tabindex="-1" required>
<div class="disc"></div>
<input type="radio" name="slot15" tabindex="-1" required>
<input type="radio" name="slot15" tabindex="-1" required>
<div class="disc"></div>
<input type="radio" name="slot16" tabindex="-1" required>
<input type="radio" name="slot16" tabindex="-1" required>
<div class="disc"></div>
<!--Column 1 after-->
<div class="column">
<input type="radio" name="slot21" tabindex="-1" required>
<input type="radio" name="slot21" tabindex="-1" required>
<div class="disc"></div>
<input type="radio" name="slot22" tabindex="-1" required>
<input type="radio" name="slot22" tabindex="-1" required>
<div class="disc"></div>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
body {
margin: 0;
font-family: "Helvetica", "Verdana", "Roboto", sans-serif;
}
h1 {
margin: 0 0 15px;
padding: 15px;
color: #fff;
font-size: 40px;
font-weight: normal;
text-align: center;
background-color: #1f90ff;
}
form {
display: flex;
flex-flow: column nowrap;
align-items: center;
}
.board {
position: relative;
width: 450px;
height: 450px;
}
.field {
position: absolute;
top: 0;
left: 15px;
padding: 75px 0 0 0;
box-sizing: border-box;
width: 420px;
height: 435px;
overflow: hidden;
cursor: not-allowed;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: