updating initial layout
This commit is contained in:
19
andrew_portfolio/static/scss/agency.scss
Normal file
19
andrew_portfolio/static/scss/agency.scss
Normal file
@@ -0,0 +1,19 @@
|
||||
// Core variables and mixins
|
||||
@import "base/variables.scss";
|
||||
@import "base/mixins.scss";
|
||||
|
||||
// Global CSS
|
||||
@import "base/page.scss";
|
||||
|
||||
// Components
|
||||
@import "components/buttons.scss";
|
||||
@import "components/navbar.scss";
|
||||
|
||||
// Layout
|
||||
@import "layout/masthead.scss";
|
||||
@import "layout/services.scss";
|
||||
@import "layout/portfolio.scss";
|
||||
@import "layout/timeline.scss";
|
||||
@import "layout/team.scss";
|
||||
@import "layout/contact.scss";
|
||||
@import "layout/footer.scss";
|
||||
13
andrew_portfolio/static/scss/base/_mixins.scss
Normal file
13
andrew_portfolio/static/scss/base/_mixins.scss
Normal file
@@ -0,0 +1,13 @@
|
||||
// Font Mixins
|
||||
@mixin serif-font {
|
||||
font-family: 'Droid Serif', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
||||
}
|
||||
@mixin script-font {
|
||||
font-family: 'Kaushan Script', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
||||
}
|
||||
@mixin body-font {
|
||||
font-family: 'Roboto Slab', -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: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
|
||||
}
|
||||
71
andrew_portfolio/static/scss/base/_page.scss
Normal file
71
andrew_portfolio/static/scss/base/_page.scss
Normal file
@@ -0,0 +1,71 @@
|
||||
// Global styling for this template
|
||||
body {
|
||||
overflow-x: hidden;
|
||||
@include body-font;
|
||||
}
|
||||
|
||||
p {
|
||||
line-height: 1.75;
|
||||
}
|
||||
|
||||
a {
|
||||
color: $primary;
|
||||
&:hover {
|
||||
color: darken($primary, 10%);
|
||||
}
|
||||
}
|
||||
|
||||
.text-primary {
|
||||
color: $primary !important;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-weight: 700;
|
||||
@include heading-font;
|
||||
}
|
||||
|
||||
.page-section {
|
||||
padding: 100px 0;
|
||||
h2.section-heading {
|
||||
font-size: 40px;
|
||||
margin-top: 0;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
h3.section-subheading {
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
font-style: italic;
|
||||
margin-bottom: 75px;
|
||||
text-transform: none;
|
||||
@include serif-font;
|
||||
}
|
||||
}
|
||||
@media(min-width:768px) {
|
||||
section {
|
||||
padding: 150px 0;
|
||||
}
|
||||
}
|
||||
|
||||
// Highlight color customization
|
||||
::-moz-selection {
|
||||
background: $primary;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: $primary;
|
||||
text-shadow: none;
|
||||
}
|
||||
|
||||
img::selection {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
img::-moz-selection {
|
||||
background: transparent;
|
||||
}
|
||||
17
andrew_portfolio/static/scss/base/_variables.scss
Normal file
17
andrew_portfolio/static/scss/base/_variables.scss
Normal file
@@ -0,0 +1,17 @@
|
||||
// Variables
|
||||
|
||||
// Restated 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;
|
||||
|
||||
$primary: #fed136 !default;
|
||||
26
andrew_portfolio/static/scss/components/_buttons.scss
Normal file
26
andrew_portfolio/static/scss/components/_buttons.scss
Normal file
@@ -0,0 +1,26 @@
|
||||
// Button Styles
|
||||
.btn {
|
||||
@include heading-font;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.btn-xl {
|
||||
font-size: 18px;
|
||||
padding: 20px 40px;
|
||||
}
|
||||
|
||||
.btn-primary {
|
||||
background-color: $primary;
|
||||
border-color: $primary;
|
||||
&:active,
|
||||
&:focus,
|
||||
&:hover {
|
||||
background-color: darken($primary, 7.5%) !important;
|
||||
border-color: darken($primary, 7.5%) !important;
|
||||
color: white;
|
||||
}
|
||||
&:active,
|
||||
&:focus {
|
||||
box-shadow: 0 0 0 0.2rem rgba(254, 209, 55,.5) !important;
|
||||
}
|
||||
}
|
||||
73
andrew_portfolio/static/scss/components/_navbar.scss
Normal file
73
andrew_portfolio/static/scss/components/_navbar.scss
Normal file
@@ -0,0 +1,73 @@
|
||||
// Styling for the navbar
|
||||
#mainNav {
|
||||
background-color: $gray-900;
|
||||
.navbar-toggler {
|
||||
font-size: 12px;
|
||||
right: 0;
|
||||
padding: 13px;
|
||||
text-transform: uppercase;
|
||||
color: white;
|
||||
border: 0;
|
||||
background-color: $primary;
|
||||
@include heading-font;
|
||||
}
|
||||
.navbar-brand {
|
||||
color: $primary;
|
||||
@include script-font;
|
||||
&.active,
|
||||
&:active,
|
||||
&:focus,
|
||||
&:hover {
|
||||
color: darken($primary, 10%);
|
||||
}
|
||||
}
|
||||
.navbar-nav {
|
||||
.nav-item {
|
||||
.nav-link {
|
||||
font-size: 90%;
|
||||
font-weight: 400;
|
||||
padding: 0.75em 0;
|
||||
letter-spacing: 1px;
|
||||
color: white;
|
||||
@include heading-font;
|
||||
&.active,
|
||||
&:hover {
|
||||
color: $primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media(min-width:992px) {
|
||||
#mainNav {
|
||||
padding-top: 25px;
|
||||
padding-bottom: 25px;
|
||||
-webkit-transition: padding-top 0.3s, padding-bottom 0.3s;
|
||||
-moz-transition: padding-top 0.3s, padding-bottom 0.3s;
|
||||
transition: padding-top 0.3s, padding-bottom 0.3s;
|
||||
border: none;
|
||||
background-color: transparent;
|
||||
.navbar-brand {
|
||||
font-size: 1.75em;
|
||||
-webkit-transition: all 0.3s;
|
||||
-moz-transition: all 0.3s;
|
||||
transition: all 0.3s;
|
||||
}
|
||||
.navbar-nav {
|
||||
.nav-item {
|
||||
.nav-link {
|
||||
padding: 1.1em 1em !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
&.navbar-shrink {
|
||||
padding-top: 0;
|
||||
padding-bottom: 0;
|
||||
background-color: $gray-900;
|
||||
.navbar-brand {
|
||||
font-size: 1.25em;
|
||||
padding: 12px 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
47
andrew_portfolio/static/scss/layout/_contact.scss
Normal file
47
andrew_portfolio/static/scss/layout/_contact.scss
Normal file
@@ -0,0 +1,47 @@
|
||||
// Styling for the contact section
|
||||
section#contact {
|
||||
background-color: $gray-900;
|
||||
background-image: url('../img/map-image.png');
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
.section-heading {
|
||||
color: $white;
|
||||
}
|
||||
.form-group {
|
||||
margin-bottom: 25px;
|
||||
input,
|
||||
textarea {
|
||||
padding: 20px;
|
||||
}
|
||||
input.form-control {
|
||||
height: auto;
|
||||
}
|
||||
textarea.form-control {
|
||||
height: 248px;
|
||||
}
|
||||
}
|
||||
.form-control:focus {
|
||||
border-color: $primary;
|
||||
box-shadow: none;
|
||||
}
|
||||
::-webkit-input-placeholder {
|
||||
font-weight: 700;
|
||||
color: $gray-400;
|
||||
@include heading-font;
|
||||
}
|
||||
:-moz-placeholder {
|
||||
font-weight: 700;
|
||||
color: $gray-400;
|
||||
@include heading-font;
|
||||
}
|
||||
::-moz-placeholder {
|
||||
font-weight: 700;
|
||||
color: $gray-400;
|
||||
@include heading-font;
|
||||
}
|
||||
:-ms-input-placeholder {
|
||||
font-weight: 700;
|
||||
color: $gray-400;
|
||||
@include heading-font;
|
||||
}
|
||||
}
|
||||
43
andrew_portfolio/static/scss/layout/_footer.scss
Normal file
43
andrew_portfolio/static/scss/layout/_footer.scss
Normal file
@@ -0,0 +1,43 @@
|
||||
// Styling for the footer
|
||||
.footer {
|
||||
padding: 25px 0;
|
||||
text-align: center;
|
||||
span.copyright {
|
||||
font-size: 90%;
|
||||
line-height: 40px;
|
||||
text-transform: none;
|
||||
@include heading-font;
|
||||
}
|
||||
ul.quicklinks {
|
||||
font-size: 90%;
|
||||
line-height: 40px;
|
||||
margin-bottom: 0;
|
||||
text-transform: none;
|
||||
@include heading-font;
|
||||
}
|
||||
}
|
||||
|
||||
ul.social-buttons {
|
||||
margin-bottom: 0;
|
||||
li {
|
||||
a {
|
||||
font-size: 20px;
|
||||
line-height: 50px;
|
||||
display: block;
|
||||
width: 50px;
|
||||
height: 50px;
|
||||
-webkit-transition: all 0.3s;
|
||||
-moz-transition: all 0.3s;
|
||||
transition: all 0.3s;
|
||||
color: white;
|
||||
border-radius: 100%;
|
||||
outline: none;
|
||||
background-color: $gray-900;
|
||||
&:active,
|
||||
&:focus,
|
||||
&:hover {
|
||||
background-color: $primary;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
50
andrew_portfolio/static/scss/layout/_masthead.scss
Normal file
50
andrew_portfolio/static/scss/layout/_masthead.scss
Normal file
@@ -0,0 +1,50 @@
|
||||
// Styling for the masthead
|
||||
header.masthead {
|
||||
text-align: center;
|
||||
color: white;
|
||||
background-image: url('../img/header-bg.jpg');
|
||||
background-repeat: no-repeat;
|
||||
background-attachment: scroll;
|
||||
background-position: center center;
|
||||
background-size: cover;
|
||||
.intro-text {
|
||||
padding-top: 150px;
|
||||
padding-bottom: 100px;
|
||||
.intro-lead-in {
|
||||
font-size: 22px;
|
||||
font-style: italic;
|
||||
line-height: 22px;
|
||||
margin-bottom: 25px;
|
||||
@include serif-font;
|
||||
}
|
||||
.intro-heading {
|
||||
font-size: 50px;
|
||||
font-weight: 700;
|
||||
line-height: 50px;
|
||||
margin-bottom: 25px;
|
||||
@include heading-font;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media(min-width:768px) {
|
||||
header.masthead {
|
||||
.intro-text {
|
||||
padding-top: 300px;
|
||||
padding-bottom: 200px;
|
||||
.intro-lead-in {
|
||||
font-size: 40px;
|
||||
font-style: italic;
|
||||
line-height: 40px;
|
||||
margin-bottom: 25px;
|
||||
@include serif-font;
|
||||
}
|
||||
.intro-heading {
|
||||
font-size: 75px;
|
||||
font-weight: 700;
|
||||
line-height: 75px;
|
||||
margin-bottom: 50px;
|
||||
@include heading-font;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
140
andrew_portfolio/static/scss/layout/_portfolio.scss
Normal file
140
andrew_portfolio/static/scss/layout/_portfolio.scss
Normal file
@@ -0,0 +1,140 @@
|
||||
// Styling for the portfolio section
|
||||
#portfolio {
|
||||
.portfolio-item {
|
||||
right: 0;
|
||||
margin: 0 0 15px;
|
||||
.portfolio-link {
|
||||
position: relative;
|
||||
display: block;
|
||||
max-width: 400px;
|
||||
margin: 0 auto;
|
||||
cursor: pointer;
|
||||
.portfolio-hover {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
-webkit-transition: all ease 0.5s;
|
||||
-moz-transition: all ease 0.5s;
|
||||
transition: all ease 0.5s;
|
||||
opacity: 0;
|
||||
background: fade-out($primary, .1);
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
.portfolio-hover-content {
|
||||
font-size: 20px;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
margin-top: -12px;
|
||||
text-align: center;
|
||||
color: white;
|
||||
i {
|
||||
margin-top: -12px;
|
||||
}
|
||||
h3,
|
||||
h4 {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
.portfolio-caption {
|
||||
max-width: 400px;
|
||||
margin: 0 auto;
|
||||
padding: 25px;
|
||||
text-align: center;
|
||||
background-color: $white;
|
||||
h4 {
|
||||
margin: 0;
|
||||
text-transform: none;
|
||||
}
|
||||
p {
|
||||
font-size: 16px;
|
||||
font-style: italic;
|
||||
margin: 0;
|
||||
@include serif-font;
|
||||
}
|
||||
}
|
||||
}
|
||||
* {
|
||||
z-index: 2;
|
||||
}
|
||||
}
|
||||
@media(min-width:767px) {
|
||||
#portfolio {
|
||||
.portfolio-item {
|
||||
margin: 0 0 30px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.portfolio-modal {
|
||||
.modal-dialog {
|
||||
margin: 1rem;
|
||||
max-width: 100vw;
|
||||
}
|
||||
.modal-content {
|
||||
padding: 100px 0;
|
||||
text-align: center;
|
||||
h2 {
|
||||
font-size: 3em;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
p {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
p.item-intro {
|
||||
font-size: 16px;
|
||||
font-style: italic;
|
||||
margin: 20px 0 30px;
|
||||
@include serif-font;
|
||||
}
|
||||
ul.list-inline {
|
||||
margin-top: 0;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
img {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
button {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
.close-modal {
|
||||
position: absolute;
|
||||
top: 25px;
|
||||
right: 25px;
|
||||
width: 75px;
|
||||
height: 75px;
|
||||
cursor: pointer;
|
||||
background-color: transparent;
|
||||
&:hover {
|
||||
opacity: 0.3;
|
||||
}
|
||||
.lr {
|
||||
/* Safari and Chrome */
|
||||
z-index: 1051;
|
||||
width: 1px;
|
||||
height: 75px;
|
||||
margin-left: 35px;
|
||||
/* IE 9 */
|
||||
-webkit-transform: rotate(45deg);
|
||||
-ms-transform: rotate(45deg);
|
||||
transform: rotate(45deg);
|
||||
background-color: $gray-900;
|
||||
.rl {
|
||||
/* Safari and Chrome */
|
||||
z-index: 1052;
|
||||
width: 1px;
|
||||
height: 75px;
|
||||
/* IE 9 */
|
||||
-webkit-transform: rotate(90deg);
|
||||
-ms-transform: rotate(90deg);
|
||||
transform: rotate(90deg);
|
||||
background-color: $gray-900;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
5
andrew_portfolio/static/scss/layout/_services.scss
Normal file
5
andrew_portfolio/static/scss/layout/_services.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
// Styling for the services section
|
||||
.service-heading {
|
||||
margin: 15px 0;
|
||||
text-transform: none;
|
||||
}
|
||||
18
andrew_portfolio/static/scss/layout/_team.scss
Normal file
18
andrew_portfolio/static/scss/layout/_team.scss
Normal file
@@ -0,0 +1,18 @@
|
||||
// Styling for the team section
|
||||
.team-member {
|
||||
margin-bottom: 50px;
|
||||
text-align: center;
|
||||
img {
|
||||
width: 225px;
|
||||
height: 225px;
|
||||
border: 7px solid fade-out($black, 0.9);
|
||||
}
|
||||
h4 {
|
||||
margin-top: 25px;
|
||||
margin-bottom: 0;
|
||||
text-transform: none;
|
||||
}
|
||||
p {
|
||||
margin-top: 0;
|
||||
}
|
||||
}
|
||||
178
andrew_portfolio/static/scss/layout/_timeline.scss
Normal file
178
andrew_portfolio/static/scss/layout/_timeline.scss
Normal file
@@ -0,0 +1,178 @@
|
||||
// Styling for the timeline section
|
||||
.timeline {
|
||||
position: relative;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
&:before {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 40px;
|
||||
width: 2px;
|
||||
margin-left: -1.5px;
|
||||
content: '';
|
||||
background-color: $gray-200;
|
||||
}
|
||||
> li {
|
||||
position: relative;
|
||||
min-height: 50px;
|
||||
margin-bottom: 50px;
|
||||
&:after,
|
||||
&:before {
|
||||
display: table;
|
||||
content: ' ';
|
||||
}
|
||||
&:after {
|
||||
clear: both;
|
||||
}
|
||||
.timeline-panel {
|
||||
position: relative;
|
||||
float: right;
|
||||
width: 100%;
|
||||
padding: 0 20px 0 100px;
|
||||
text-align: left;
|
||||
&:before {
|
||||
right: auto;
|
||||
left: -15px;
|
||||
border-right-width: 15px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
&:after {
|
||||
right: auto;
|
||||
left: -14px;
|
||||
border-right-width: 14px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
}
|
||||
.timeline-image {
|
||||
position: absolute;
|
||||
z-index: 100;
|
||||
left: 0;
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
margin-left: 0;
|
||||
text-align: center;
|
||||
color: white;
|
||||
border: 7px solid $gray-200;
|
||||
border-radius: 100%;
|
||||
background-color: $primary;
|
||||
h4 {
|
||||
font-size: 10px;
|
||||
line-height: 14px;
|
||||
margin-top: 12px;
|
||||
}
|
||||
}
|
||||
&.timeline-inverted > .timeline-panel {
|
||||
float: right;
|
||||
padding: 0 20px 0 100px;
|
||||
text-align: left;
|
||||
&:before {
|
||||
right: auto;
|
||||
left: -15px;
|
||||
border-right-width: 15px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
&:after {
|
||||
right: auto;
|
||||
left: -14px;
|
||||
border-right-width: 14px;
|
||||
border-left-width: 0;
|
||||
}
|
||||
}
|
||||
&:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
.timeline-heading {
|
||||
h4 {
|
||||
margin-top: 0;
|
||||
color: inherit;
|
||||
&.subheading {
|
||||
text-transform: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
.timeline-body {
|
||||
> ul,
|
||||
> p {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
@media(min-width:768px) {
|
||||
.timeline {
|
||||
&:before {
|
||||
left: 50%;
|
||||
}
|
||||
> li {
|
||||
min-height: 100px;
|
||||
margin-bottom: 100px;
|
||||
.timeline-panel {
|
||||
float: left;
|
||||
width: 41%;
|
||||
padding: 0 20px 20px 30px;
|
||||
text-align: right;
|
||||
}
|
||||
.timeline-image {
|
||||
left: 50%;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
margin-left: -50px;
|
||||
h4 {
|
||||
font-size: 13px;
|
||||
line-height: 18px;
|
||||
margin-top: 16px;
|
||||
}
|
||||
}
|
||||
&.timeline-inverted > .timeline-panel {
|
||||
float: right;
|
||||
padding: 0 30px 20px 20px;
|
||||
text-align: left;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media(min-width:992px) {
|
||||
.timeline {
|
||||
> li {
|
||||
min-height: 150px;
|
||||
.timeline-panel {
|
||||
padding: 0 20px 20px;
|
||||
}
|
||||
.timeline-image {
|
||||
width: 150px;
|
||||
height: 150px;
|
||||
margin-left: -75px;
|
||||
h4 {
|
||||
font-size: 18px;
|
||||
line-height: 26px;
|
||||
margin-top: 30px;
|
||||
}
|
||||
}
|
||||
&.timeline-inverted > .timeline-panel {
|
||||
padding: 0 20px 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@media(min-width:1200px) {
|
||||
.timeline {
|
||||
> li {
|
||||
min-height: 170px;
|
||||
.timeline-panel {
|
||||
padding: 0 20px 20px 100px;
|
||||
}
|
||||
.timeline-image {
|
||||
width: 170px;
|
||||
height: 170px;
|
||||
margin-left: -85px;
|
||||
h4 {
|
||||
margin-top: 40px;
|
||||
}
|
||||
}
|
||||
&.timeline-inverted > .timeline-panel {
|
||||
padding: 0 100px 20px 20px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user