Skip to content

Commit e3ba0a2

Browse files
ZigZag 3D
1 parent 03dcdf5 commit e3ba0a2

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

ZigZag 3D/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>ZigZag 3D</title>
8+
<link rel="stylesheet" href="style.css" />
9+
</head>
10+
<body></body>
11+
</html>

ZigZag 3D/style.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
body {
2+
background-color: #e5e5f7;
3+
opacity: 0.8;
4+
background: linear-gradient(135deg, #444cf755 25%, transparent 25%) -10px 0/
5+
20px 20px,
6+
linear-gradient(225deg, #444cf7 25%, transparent 25%) -10px 0/ 20px 20px,
7+
linear-gradient(315deg, #444cf755 25%, transparent 25%) 0px 0/ 20px 20px,
8+
linear-gradient(45deg, #444cf7 25%, #e5e5f7 25%) 0px 0/ 20px 20px;
9+
}

0 commit comments

Comments
 (0)