Skip to content

Commit 71ae4b1

Browse files
Isometric
0 parents  commit 71ae4b1

File tree

2 files changed

+65
-0
lines changed

2 files changed

+65
-0
lines changed

Isometric/index.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Isometric</title>
8+
<link rel="stylesheet" href="style.css" />
9+
</head>
10+
<body></body>
11+
</html>

Isometric/style.css

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
body {
2+
background-color: #e5e5f7;
3+
opacity: 0.8;
4+
background-image: linear-gradient(
5+
30deg,
6+
#444cf7 12%,
7+
transparent 12.5%,
8+
transparent 87%,
9+
#444cf7 87.5%,
10+
#444cf7
11+
),
12+
linear-gradient(
13+
150deg,
14+
#444cf7 12%,
15+
transparent 12.5%,
16+
transparent 87%,
17+
#444cf7 87.5%,
18+
#444cf7
19+
),
20+
linear-gradient(
21+
30deg,
22+
#444cf7 12%,
23+
transparent 12.5%,
24+
transparent 87%,
25+
#444cf7 87.5%,
26+
#444cf7
27+
),
28+
linear-gradient(
29+
150deg,
30+
#444cf7 12%,
31+
transparent 12.5%,
32+
transparent 87%,
33+
#444cf7 87.5%,
34+
#444cf7
35+
),
36+
linear-gradient(
37+
60deg,
38+
#444cf777 25%,
39+
transparent 25.5%,
40+
transparent 75%,
41+
#444cf777 75%,
42+
#444cf777
43+
),
44+
linear-gradient(
45+
60deg,
46+
#444cf777 25%,
47+
transparent 25.5%,
48+
transparent 75%,
49+
#444cf777 75%,
50+
#444cf777
51+
);
52+
background-size: 20px 35px;
53+
background-position: 0 0, 0 0, 10px 18px, 10px 18px, 0 0, 10px 18px;
54+
}

0 commit comments

Comments
 (0)