Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
masonstrap
Commits
962f8ec6
Verified
Commit
962f8ec6
authored
Sep 22, 2017
by
David Haynes
🙆
Browse files
Brand image, and refactoring of the initial sassing
parent
9cbacf4f
Pipeline
#1599
passed with stages
in 1 minute and 11 seconds
Changes
6
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/html/index.html
View file @
962f8ec6
...
...
@@ -13,7 +13,7 @@
<meta
property=
"og:url"
content=
"https://srct.gmu.io/masonstrap/"
>
<meta
property=
"og:type"
content=
"website"
>
<meta
property=
"og:title"
content=
"SRCT Masonstrap"
>
<!--
<meta property="og:image" content="http://srct.gmu.io/masonstrap/
assets/
img/masonstrap.png">
-->
<meta
property=
"og:image"
content=
"http
s
://srct.gmu.io/masonstrap/img/masonstrap.png"
>
<meta
property=
"og:description"
content=
"Easily provide any web project with Mason branding."
>
<meta
property=
"og:site_name"
content=
"SRCT Masonstrap"
>
<meta
property=
"og:locale"
content=
"en_US"
>
...
...
@@ -25,7 +25,7 @@
<meta
name=
"twitter:url"
content=
"https://srct.gmu.io/masonstrap/"
>
<meta
name=
"twitter:title"
content=
"SRCT Masonstrap"
>
<meta
name=
"twitter:description"
content=
"Easily provide any web project with Mason branding."
>
<!--
<meta name="twitter:image" content="http://srct.gmu.io/masonstrap/
assets/
img/masonstrap.png">
-->
<meta
name=
"twitter:image"
content=
"http
s
://srct.gmu.io/masonstrap/img/masonstrap.png"
>
<!-- Title -->
<title>
Masonstrap 4
•
Home
</title>
...
...
src/img/masonstrap.png
0 → 100644
View file @
962f8ec6
34.3 KB
src/scss/_functions.scss
View file @
962f8ec6
// Custom functions
// Get a key from the primary-palette map
@function
get-primary-palette
(
$key
)
{
@if
map-has-key
(
$primary-palette
,
$key
)
{
...
...
src/scss/_mixins.scss
View file @
962f8ec6
@mixin
button-outline-variant
(
$color
,
$color-hover
:
#fff
)
{
color
:
$color
;
background-color
:
transparent
;
background-image
:
none
;
border-color
:
$color
;
@include
hover
{
color
:
$color-hover
;
background-color
:
$color
;
border-color
:
$color
;
}
&
:focus
,
&
.focus
{
box-shadow
:
0
0
0
3px
rgba
(
$color
,
.5
);
}
&
.disabled
,
&
:disabled
{
color
:
$color
;
background-color
:
transparent
;
}
&
:active
,
&
.active
,
.show
>
&
.dropdown-toggle
{
color
:
$color-hover
;
background-color
:
$color
;
border-color
:
$color
;
}
}
\ No newline at end of file
// Custom Mixins
\ No newline at end of file
src/scss/_overwrites.scss
View file @
962f8ec6
// Things that originate from Bootstrap that we overwrite
@each
$color
,
$value
in
$theme-colors
{
.btn-outline-
#{
$color
}
{
@include
button-outline-variant
(
$value
,
$gray-900
);
}
}
src/scss/_styles.scss
View file @
962f8ec6
@each
$color
,
$value
in
$theme-colors
{
.btn-outline-
#{
$color
}
{
@include
button-outline-variant
(
$value
,
$gray-900
);
}
}
\ No newline at end of file
// Custom classes and styling
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment