forked from KarlK90/flexible-squares
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.html
29 lines (24 loc) · 872 Bytes
/
example.html
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
<!DOCTYPE html>
<html>
<head>
<title>Example flexible squares</title>
<link rel="stylesheet" href="flexible-squares.css" />
<style type="text/css">
.fs-cell {
background: rgba(50,50,50,0.2);
}
.fs-cell .fs-content {
background: steelblue;
}
</style>
</head>
<body>
<div class="fs-cell fs-rows-7"><span class="fs-content"> </span></div>
<div class="fs-cell fs-rows-7"><span class="fs-content"> </span></div>
<div class="fs-cell fs-rows-7"><span class="fs-content"> </span></div>
<div class="fs-cell fs-rows-7"><span class="fs-content"> </span></div>
<div class="fs-cell fs-rows-7"><span class="fs-content"> </span></div>
<div class="fs-cell fs-rows-7"><span class="fs-content"> </span></div>
<div class="fs-cell fs-rows-7"><span class="fs-content"> </span></div>
</body>
</html>