diff --git a/package.json b/package.json index f0caa1a..c79e84c 100755 --- a/package.json +++ b/package.json @@ -13,7 +13,9 @@ "lint:scss": "stylelint ./src/**/*.scss --syntax scss", "lint": "npm run lint:js && npm run lint:scss" }, - "devDependencies": {}, + "devDependencies": { + "html-loader": "^0.5.5" + }, "dependencies": { "babel-core": "^6.26.0", "babel-eslint": "^8.0.1", @@ -34,7 +36,6 @@ "extract-text-webpack-plugin": "^3.0.1", "html-webpack-plugin": "^2.30.1", "html-includes": "^4.0.0", - "html-loader": "^0.5.5", "imagemin-webpack-plugin": "^1.5.2", "node-sass": "^4.5.3", "postcss-cssnext": "^3.0.2", diff --git a/src/ad-details.html b/src/ad-details.html new file mode 100644 index 0000000..660f314 --- /dev/null +++ b/src/ad-details.html @@ -0,0 +1,141 @@ + + + + + + + + + + + About the Job + + + + + + + + + + + + + +
+
+
+ + + + + +
+ + ${require('html-loader!./_sidebar.html')} + + +
+ + ${require('html-loader!./_topbar.html')} + + +
+
+

About the Job

+
+ +
+
+
+
+
+ company +
+
+

Graphic Design Internship

+
Great Southern Press
+
+
+
+
+
+
About the business:
+

Great Southern Press is a leading B2B publishing and events company built on partnerships with industry. We deliver quality business information to our industries and great marketing results to our clients. + + We build long-lasting partnerships with our industry partners in the energy and infrastructure sectors, aligning the success of our business with the continued growth and expansion of the industries we publish for. +

+
About the role:
+

This part-time role will suit a university graduate or someone looking for an entry-level design position. The successful candidate will be involved in all areas of design including:

+ + • Publication layout (annual directories, books etc).
+ • Creation of artwork for print and online advertisements.
+ • Wallcharts, flyers, brochures and other print design as required.
+ • Event collateral including branding, signage, handbooks etc.
+ • Designs for website, email communications and social media.

+ + Reporting to the Head of Design, you will have an opportunity to work with and be mentored by someone with more than 10 years’ industry experience. +

+
+
+
+
+
+
+
Reviews
+

With supporting text below as a natural lead-in to additional content.

+

Last updated 3 mins ago

+
+
+
+ + +
+ +
+
+
+
+
+ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/assets/static/images/user-testing.jpg b/src/assets/static/images/user-testing.jpg new file mode 100644 index 0000000..230af27 Binary files /dev/null and b/src/assets/static/images/user-testing.jpg differ diff --git a/src/assets/styles/spec/settings/baseColors.scss b/src/assets/styles/spec/settings/baseColors.scss index 067c95a..a42fd4f 100755 --- a/src/assets/styles/spec/settings/baseColors.scss +++ b/src/assets/styles/spec/settings/baseColors.scss @@ -107,8 +107,9 @@ $theme-success : desaturate($default-success, 5%); // @Nomit WISP Color System // --------------------------------------------------------- -$nomit-purple : #501DB9; +$nomit-purple : #8B00B1; $nomit-pink : #EE38A4; +$nomit-dark-purple : #501DB9; $nomit-gradient : linear-gradient(-45deg, #501DB9, #EE38A4); $grey-dark : #454545; $grey-light : #888888; diff --git a/src/assets/styles/spec/settings/fonts.scss b/src/assets/styles/spec/settings/fonts.scss index 687b23f..4e79816 100755 --- a/src/assets/styles/spec/settings/fonts.scss +++ b/src/assets/styles/spec/settings/fonts.scss @@ -2,3 +2,8 @@ $font-primary: Roboto, -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif; $font-secondary: $font-primary; $font-size-base: 0.875rem; + +h2{ + font-family: 'Fredoka One', cursive; + color: #501D89; +} \ No newline at end of file diff --git a/src/assets/styles/style.css b/src/assets/styles/style.css new file mode 100644 index 0000000..cb88085 --- /dev/null +++ b/src/assets/styles/style.css @@ -0,0 +1,97 @@ +/* FONT SETTINGS */ +body{ + background-color: #F4F4F4; + } + +*{ + font-family: 'Source Sans Pro', sans-serif; + color: #454545; + font-size: 14px; +} + +h1{ + font-family: 'Fredoka One', cursive; + color: #501D89; + font-size: 28px; +} + +h2{ + font-family: 'Fredoka One', cursive; + color: #454545; + font-size: 24px; +} + +h3{ + font-family: 'Source Sans Pro', sans-serif; + color: #454545; + font-size: 20px; + font-weight: bold; +} + + +h5{ + font-family: 'Source Sans Pro', sans-serif; + color: #454545; + font-size: 16px; + font-weight: bold; +} + +h6{ + font-family: 'Source Sans Pro', sans-serif; + font-size: 16px; + color: #888888; +} + +/* BUTTONS */ +.btn span{ + color: #FFFFFF; + font-weight: bold; +} + +.btn-border span { + color: #501DB9; + font-weight: bold; + align-items: center; + background: #F4F4F4; + border-radius: 23px; + display: flex; + justify-content: center; + height: 100%; + transition: background .5s ease; + width: 100%; +} + +.btn-border:hover { + color: #FFFFFF; +} + +.btn-border:hover span { + background: transparent; + color: #FFFFFF; +} + +.btn, .btn-border { + background-image: linear-gradient(-45deg, #501DB9 0%, #EE38A4 100%); + border-radius: 23px; + box-sizing: border-box; + height: 40px; + margin: 0 auto; + padding: 4px; + position: relative; + text-decoration: none; + text-transform: uppercase; + letter-spacing: 0.05em; +} + +/* REPORTS PAGE */ +.table .thead-purple-border th{ + border-top: transparent; + border-bottom-color: #8B00B1; + border-width: 3px; +} + +.table { + background-color: #FFFFFF; + } + + diff --git a/src/reports.html b/src/reports.html new file mode 100644 index 0000000..85145a2 --- /dev/null +++ b/src/reports.html @@ -0,0 +1,135 @@ + + + + + + + + + + + Reports + + + + + + + + + + + + +
+
+
+ + + + + +
+ + ${require('html-loader!./_sidebar.html')} + + +
+ + ${require('html-loader!./_topbar.html')} + + +
+
+

Reports

+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
#First NameLast NameUsernameStateLanguageFieldsMember Since
1TonyStarktonystarkVICEnglishHospitalityFeb 2019
2DavidJamesdavidjamesVICEnglish, ItalianDesignFeb 2019
3MiroKirovmirokirovVICEnglish, JapaneseITFeb 2019
+
+
+
+
+ + + + + + + + + + + + + + + + + \ No newline at end of file