From aa17ffb8d82490b1c05b34ac0dd2607622fafed2 Mon Sep 17 00:00:00 2001 From: akiyamn Date: Mon, 30 May 2022 16:13:42 +1000 Subject: Reorganised project structure --- progressbar.css | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 progressbar.css (limited to 'progressbar.css') diff --git a/progressbar.css b/progressbar.css deleted file mode 100644 index 0c1300d..0000000 --- a/progressbar.css +++ /dev/null @@ -1,29 +0,0 @@ -:root { - --progress-bar-height: 6px; - --progress-bar-width: 87%; - --progress-bar-radius: 3px; -} -.progress-bar { - display: flex; - align-items: center; - justify-content: space-between; -} -.progress-bar div.progress-bar__base { - background-color: #bbb; - width: 100%; - height: var(--progress-bar-height); - width: var(--progress-bar-width); - border-radius: var(--progress-bar-radius); - -} -.progress-bar div.progress-bar__progress { - background-color: var(--dark-grey); - width: 68%; /* this can be controlled with javascript to set percent loaded */ - height: var(--progress-bar-height); - border-radius: var(--progress-bar-radius); -} -.progress-bar div.progress-bar__percentage { - font-size: var(--font-size-14); - font-weight: bold; - color: var(--light-grey); -} \ No newline at end of file -- cgit v1.2.3