-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbongocat.css
77 lines (65 loc) · 1.1 KB
/
bongocat.css
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
:root {
--bg: #1a1e2d;
--green: #a5ea9b;
--pink: #ff61d8;
--blue: #569cfa;
--orange: #ffcc81;
--cyan: #7ed1e2;
}
body {
height: 100vh;
width: 100vw;
background: var(--bg);
display: flex;
place-content: center;
align-items: flex-end;
overflow: hidden;
}
.container {
width: 80vw;
height: 80vh;
svg {
height: 100%;
width: 100%;
overflow: visible;
}
}
#bongo-cat {
fill: var(--bg);
stroke-linecap: round;
stroke-linejoin: round;
stroke-width: 4;
.laptop-cover,
.headphone .band {
fill: none;
}
.paw, .head {
stroke: var(--orange);
}
.laptop-keyboard {
stroke-width: 2;
}
.terminal-code {
stroke-width: 5;
}
.music .note,
.laptop-base,
.laptop-cover,
.paw .pads {
stroke: var(--pink);
}
.table line,
.headphone .band,
.headphone .speaker path:nth-child(3) {
stroke: var(--green);
}
.terminal-frame,
.laptop-keyboard,
.headphone .speaker path:nth-child(2) {
stroke: var(--blue);
}
.terminal-code,
.headphone .speaker path:first-child {
stroke: var(--cyan);
}
}