-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomize.css
More file actions
63 lines (47 loc) · 1.15 KB
/
Copy pathcustomize.css
File metadata and controls
63 lines (47 loc) · 1.15 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* Change the colors in this stylesheet to customize the game. */
/* Player Styles */
/* .player-color {
background-color: #2a79d0;
} */
/* .player-area {
background-color: #000;
background-image: url(images/chip.svg);
box-shadow: inset -200px 0px 1000px #B51BAB;
} */
/* .player-area {
box-shadow: inset 10px 0px 100px 100px #B31BA8;
} */
/* .player-card .power {
background-image: url(images/shield.svg);
} */
/* Hacker Styles */
/* .hacker-color {
background-color: #ce3d20;
} */
/* .hacker-area {
background-color: #000;
background-image: url(images/chip.svg);
box-shadow: inset 200px 0px 1000px #B51BAB;
} */
/* .hacker-card .power {
background-image: url(images/skull.svg);
} */
.player-color {
background-color: #2a79d0;
}
.player-area {
background: linear-gradient(0deg, #2a79d0, #000);
}
.player-card .power {
background-image: url(images/shield.svg);
}
/* Hacker Styles */
.hacker-color {
background-color: #ce3d20;
}
.hacker-area {
background: linear-gradient(0deg, #ce3d20, #000);
}
.hacker-card .power {
background-image: url(images/skull.svg);
}