Initial commit using lightly customised bootstap resume template.

This commit is contained in:
Josh Creek
2019-10-06 18:14:03 +01:00
commit ede10ecbd5
80 changed files with 72639 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
.bg-primary {
background-color: $primary !important;
}
.text-primary {
color: $primary !important;
}
a {
color: $primary;
&:hover,
&:focus,
&:active {
color: darken($primary, 15%);
}
}
+80
View File
@@ -0,0 +1,80 @@
// Global styling for this template
body {
@include body-font;
padding-top: 54px;
color: $gray-600;
}
@media (min-width: 992px) {
body {
padding-top: 0;
padding-left: $sidebar-base-width;
}
}
h1,
h2,
h3,
h4,
h5,
h6 {
@include heading-font;
font-weight: 700;
text-transform: uppercase;
color: $gray-800;
}
h1 {
font-size: 6rem;
line-height: 5.5rem;
}
h2 {
font-size: 3.5rem;
}
h3 {
font-size: 2rem;
}
p.lead {
font-size: 1.15rem;
font-weight: 400;
}
.subheading {
text-transform: uppercase;
font-weight: 500;
@include heading-font;
font-size: 1.5rem;
}
.social-icons {
a {
display: inline-block;
height: 3.5rem;
width: 3.5rem;
background-color: $gray-700;
color: $white !important;
border-radius: 100%;
text-align: center;
font-size: 1.5rem;
line-height: 3.5rem;
margin-right: 1rem;
&:last-child {
margin-right: 0;
}
&:hover {
background-color: $primary;
}
}
}
.dev-icons {
font-size: 3rem;
.list-inline-item i {
&:hover {
color: $primary;
}
}
}
+8
View File
@@ -0,0 +1,8 @@
// Mixins
@mixin body-font {
font-family: 'Muli', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
@mixin heading-font {
font-family: 'Saira Extra Condensed', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
}
+58
View File
@@ -0,0 +1,58 @@
#sideNav {
.navbar-nav .nav-item .nav-link {
font-weight: 800;
letter-spacing: 0.05rem;
text-transform: uppercase;
}
.navbar-toggler {
&:focus {
outline-color: lighten($primary, 15%);
}
}
}
@media (min-width: 992px) {
#sideNav {
text-align: center;
position: fixed;
top: 0;
left: 0;
display: flex;
flex-direction: column;
width: $sidebar-base-width;
height: 100vh;
.navbar-brand {
display: flex;
margin: auto auto 0;
padding: 0.5rem;
.img-profile {
max-width: 10rem;
max-height: 10rem;
border: 0.5rem solid $dark;
background: white;
}
}
.navbar-collapse {
display: flex;
align-items: flex-start;
flex-grow: 0;
width: 100%;
margin-bottom: auto;
.navbar-nav {
flex-direction: column;
width: 100%;
.nav-item {
display: block;
.nav-link {
display: block;
}
}
}
}
}
}
+27
View File
@@ -0,0 +1,27 @@
section.resume-section {
padding-top: 5rem !important;
padding-bottom: 5rem !important;
max-width: 75rem;
.resume-item {
.resume-content {}
.resume-date {
min-width: none;
}
}
}
@media (min-width: 768px) {
section.resume-section {
min-height: 100vh;
.resume-item {
.resume-date {
min-width: 18rem;
}
}
}
}
@media (min-width: 992px) {
section.resume-section {
padding-top: 3rem !important;
padding-bottom: 3rem !important;
}
}
+46
View File
@@ -0,0 +1,46 @@
// Variables
// Restate Bootstrap Variables
$white: #fff !default;
$gray-100: #f8f9fa !default;
$gray-200: #e9ecef !default;
$gray-300: #dee2e6 !default;
$gray-400: #ced4da !default;
$gray-500: #adb5bd !default;
$gray-600: #868e96 !default;
$gray-700: #495057 !default;
$gray-800: #343a40 !default;
$gray-900: #212529 !default;
$black: #000 !default;
$blue: #007bff !default;
$indigo: #6610f2 !default;
$purple: #6f42c1 !default;
$pink: #e83e8c !default;
$red: #dc3545 !default;
$orange: #BD5D38 !default;
$yellow: #ffc107 !default;
$green: #28a745 !default;
$teal: #20c997 !default;
$cyan: #17a2b8 !default;
$purple-royal: #7851a9 !default;
$google-blue: #4285F4 !default;
$google-red: #DB4437 !default;
$google-yellow: #F4B400 !default;
$google-green: #0F9D58 !default;
$primary: $google-yellow !default;
$secondary: $google-red !default;
$success: $green !default;
$info: $cyan !default;
$warning: $yellow !default;
$danger: $red !default;
$light: $gray-100 !default;
$dark: $gray-800 !default;
// Page Variables
$sidebar-base-width: 17rem;
+6
View File
@@ -0,0 +1,6 @@
@import "variables.scss";
@import "mixins.scss";
@import "global.scss";
@import "nav.scss";
@import "resume-item.scss";
@import "bootstrap-overrides.scss";