mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
Prototype branding. Added resource images.
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"title": "DSpace Universal",
|
"title": "DSpace",
|
||||||
|
|
||||||
"nav": {
|
"nav": {
|
||||||
"home": "Home"
|
"home": "Home"
|
||||||
|
BIN
resources/images/dspace_logo.png
Normal file
BIN
resources/images/dspace_logo.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
@@ -1,18 +1,24 @@
|
|||||||
// Colors
|
// Colors
|
||||||
|
|
||||||
$gray-dark: #373a3c !default;
|
$gray-base: #000 !default;
|
||||||
$gray: #55595c !default;
|
$gray-darker: lighten($gray-base, 13.5%) !default; // #222
|
||||||
$gray-light: #818a91 !default;
|
$gray-dark: lighten($gray-base, 26.6%) !default; // #444
|
||||||
$gray-lighter: #eceeef !default;
|
$gray: lighten($gray-base, 46.6%) !default; // #777
|
||||||
$gray-lightest: #f7f7f9 !default;
|
$gray-light: lighten($gray-base, 73.3%) !default; // #bbb
|
||||||
|
$gray-lighter: lighten($gray-base, 93.5%) !default; // #eee
|
||||||
|
|
||||||
$brand-primary: #0275d8 !default;
|
$brand-primary: #2B4E72 !default;
|
||||||
$brand-success: #5cb85c !default;
|
$brand-success: #94BA65 !default;
|
||||||
$brand-info: #5bc0de !default;
|
$brand-info: #2790B0 !default;
|
||||||
$brand-warning: #f0ad4e !default;
|
$brand-warning: #EBBB54 !default;
|
||||||
$brand-danger: #d9534f !default;
|
$brand-danger: #CF4444 !default;
|
||||||
$brand-inverse: $gray-dark !default;
|
|
||||||
|
$brand-inverse: $brand-primary !default;
|
||||||
|
|
||||||
|
$link-color: $brand-info !default;
|
||||||
|
|
||||||
// Fonts
|
// Fonts
|
||||||
|
|
||||||
$fa-font-path: "../assets/fonts";
|
$fa-font-path: "../assets/fonts";
|
||||||
|
|
||||||
|
$image-path: "../assets/images";
|
||||||
|
@@ -19,6 +19,10 @@ export var commonPlugins = [
|
|||||||
{
|
{
|
||||||
from: path.join(__dirname, 'node_modules', 'font-awesome', 'fonts'),
|
from: path.join(__dirname, 'node_modules', 'font-awesome', 'fonts'),
|
||||||
to: path.join('assets', 'fonts')
|
to: path.join('assets', 'fonts')
|
||||||
|
},
|
||||||
|
{
|
||||||
|
from: path.join(__dirname, 'resources', 'images'),
|
||||||
|
to: path.join('assets', 'images')
|
||||||
}, {
|
}, {
|
||||||
from: path.join(__dirname, 'resources', 'i18n'),
|
from: path.join(__dirname, 'resources', 'i18n'),
|
||||||
to: path.join('assets', 'i18n')
|
to: path.join('assets', 'i18n')
|
||||||
|
Reference in New Issue
Block a user