summaryrefslogtreecommitdiffstats
path: root/src/components/atoms/icons/career.module.scss
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-01 11:53:23 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-01 11:53:23 +0200
commit65da7e1ddaea17cb1391ce2bde5f4345acd7b4ad (patch)
tree1a05a2d83a5b726a58ebd49bb7317e94cce49c4d /src/components/atoms/icons/career.module.scss
parent3dba396791b37c4ae4dbdaf8e553ed636bc2ecc8 (diff)
chore: add a career icon component
Diffstat (limited to 'src/components/atoms/icons/career.module.scss')
-rw-r--r--src/components/atoms/icons/career.module.scss53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/components/atoms/icons/career.module.scss b/src/components/atoms/icons/career.module.scss
new file mode 100644
index 0000000..c5d65eb
--- /dev/null
+++ b/src/components/atoms/icons/career.module.scss
@@ -0,0 +1,53 @@
+@use "@styles/abstracts/functions" as fun;
+
+.icon {
+ display: block;
+ width: var(--icon-size, #{fun.convert-px(40)});
+}
+
+.lock {
+ fill: var(--color-bg);
+ stroke: var(--color-primary-darker);
+ stroke-width: 3;
+}
+
+.lines {
+ fill: var(--color-fg);
+ stroke-width: 4;
+}
+
+.seal-top {
+ fill: var(--color-primary-lighter);
+ stroke: var(--color-primary-darker);
+ stroke-width: 2;
+}
+
+.seal-bottom {
+ fill: var(--color-primary-lighter);
+ stroke: var(--color-primary-darker);
+ stroke-width: 2;
+}
+
+.diploma {
+ fill: var(--color-bg);
+ stroke: var(--color-primary-darker);
+ stroke-width: 4;
+}
+
+.top {
+ fill: var(--color-primary-lighter);
+ stroke: var(--color-primary-darker);
+ stroke-width: 4;
+}
+
+.handle {
+ fill: var(--color-primary-lighter);
+ stroke: var(--color-primary-darker);
+ stroke-width: 3;
+}
+
+.bottom {
+ fill: var(--color-primary);
+ stroke: var(--color-primary-darker);
+ stroke-width: 4;
+}