blob: f93e73ab85dc612de159dbbed10e234ea698108e (
plain)
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
|
.bottom,
.diploma,
.lines,
.top {
stroke-width: 4;
}
.bottom,
.diploma,
.handle,
.lock,
.seal,
.top {
stroke: var(--color-primary-darker);
}
.bottom {
fill: var(--color-primary);
}
.diploma,
.lock {
fill: var(--color-bg);
}
.handle,
.seal,
.top {
fill: var(--color-primary-lighter);
}
.handle,
.lock {
stroke-width: 3;
}
.lines {
fill: var(--color-fg);
}
.seal {
stroke-width: 2;
}
|