-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Install vuetify * Color theming vuetify * Fonts and preliminary icons
- Loading branch information
Showing
19 changed files
with
123 additions
and
94 deletions.
There are no files selected for viewing
12 changes: 7 additions & 5 deletions
12
src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
42 changes: 41 additions & 1 deletion
42
src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/package-lock.json
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file added
BIN
+4.78 KB
...ients.RegistryPortal/ecer.clients.registryportal.client/public/bcid-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+11.1 KB
...ients.RegistryPortal/ecer.clients.registryportal.client/public/bcid-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.92 KB
...istryPortal/ecer.clients.registryportal.client/public/bcid-apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified
BIN
+13.8 KB
(430%)
src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/public/favicon.ico
Binary file not shown.
Binary file added
BIN
+389 KB
....Clients.RegistryPortal/ecer.clients.registryportal.client/public/styles/BCSans-Bold.woff
Binary file not shown.
Binary file added
BIN
+369 KB
...ts.RegistryPortal/ecer.clients.registryportal.client/public/styles/BCSans-BoldItalic.woff
Binary file not shown.
Binary file added
BIN
+364 KB
...lients.RegistryPortal/ecer.clients.registryportal.client/public/styles/BCSans-Italic.woff
Binary file not shown.
Binary file added
BIN
+346 KB
...ients.RegistryPortal/ecer.clients.registryportal.client/public/styles/BCSans-Regular.woff
Binary file not shown.
36 changes: 36 additions & 0 deletions
36
src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/public/styles/fonts.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
@font-face { | ||
font-family: "BCSans"; | ||
font-style: normal; | ||
src: | ||
url("BCSans-Regular.woff") format("woff"), | ||
url("BCSans-Regular.woff2") format("woff2"); | ||
} | ||
@font-face { | ||
font-family: "BCSans"; | ||
font-style: italic; | ||
src: | ||
url("BCSans-Italic.woff") format("woff"), | ||
url("BCSans-Italic.woff2") format("woff2"); | ||
} | ||
@font-face { | ||
font-family: "BCSans"; | ||
font-weight: 700; | ||
src: | ||
url("BCSans-Bold.woff") format("woff"), | ||
url("BCSans-Bold.woff2") format("woff2"); | ||
} | ||
@font-face { | ||
font-family: "BCSans"; | ||
font-style: italic; | ||
font-weight: 700; | ||
src: | ||
url("BCSans-BoldItalic.woff") format("woff"), | ||
url("BCSans-BoldItalic.woff2") format("woff2"); | ||
} | ||
|
||
.v-application { | ||
font-family: "BCSans", Verdana, Arial, sans-serif !important; | ||
} | ||
html { | ||
font-family: "BCSans", Verdana, Arial, sans-serif !important; | ||
} |
86 changes: 0 additions & 86 deletions
86
src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/assets/base.css
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...ts.RegistryPortal/ecer.clients.registryportal.client/src/assets/bc-gov-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+198 KB
...ts.RegistryPortal/ecer.clients.registryportal.client/src/assets/bc_gov_logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion
1
...R.Clients.RegistryPortal/ecer.clients.registryportal.client/src/assets/logo.svg
This file was deleted.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
src/ECER.Clients.RegistryPortal/ecer.clients.registryportal.client/src/styles/ecer-theme.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import type { ThemeDefinition } from "vuetify"; | ||
|
||
const ecerTheme: ThemeDefinition = { | ||
dark: false, | ||
colors: { | ||
background: "#FFFFFF", | ||
surface: "#38598A", | ||
primary: "#003366", | ||
secondary: "#FCBA19", | ||
links: "#1A5A96", | ||
error: "#D8292F", | ||
success: "#2E8540", | ||
warning: "#FCBA19", | ||
}, | ||
}; | ||
|
||
export default ecerTheme; |