forked from VLambret/SogiTree
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree.css
More file actions
42 lines (40 loc) · 889 Bytes
/
tree.css
File metadata and controls
42 lines (40 loc) · 889 Bytes
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
38
39
40
41
42
body {
margin: 0;
background-color: #00bfb9;
background-image: url("https://www.transparenttextures.com/patterns/diagmonds-light.png");
}
.world {
position: fixed;
width: 100vw;
height: 100vh;
display: grid;
}
.pixel {
display: block;
}
.leaf {
background-color: #4e8500;
background-image: url("https://www.transparenttextures.com/patterns/gray-floral.png");
}
.foliage {
background-color: #417000;
background-image: url("https://www.transparenttextures.com/patterns/wild-flowers.png");
}
.trunk, .branch {
background-image: url("https://www.transparenttextures.com/patterns/shley-tree-2.png");
}
.trunk {
background-color: #543700;
}
.branch {
background-color: #7a4f00;
}
.rock {
background-image: url("https://www.transparenttextures.com/patterns/gravel.png");
}
.rock.light {
background-color: #cce1ed;
}
.rock.dark {
background-color: #5a7585;
}