Adjust styles.

This commit is contained in:
mmacneil 2019-08-24 21:44:22 -03:00
parent 705b489e65
commit 4186e692e4
3 changed files with 9 additions and 7 deletions

File diff suppressed because one or more lines are too long

2
src/dist/index.html vendored
View File

@ -466,7 +466,7 @@
<footer class="footer"> <footer class="footer">
<div class="content has-text-centered"> <div class="content has-text-centered">
<p> <p>
<a href="https://github.com/mmacneil/devfolio" target="_blank" class="icon has-text-info"> <a href="https://github.com/mmacneil/devfolio" target="_blank" class="icon has-text-primary">
<i class="fab fa-github"></i> <strong>devfolio</strong></a> <i class="fab fa-github"></i> <strong>devfolio</strong></a>
</p> </p>
</div> </div>

View File

@ -9,12 +9,11 @@ $widescreen-enabled: false;
$fullhd-enabled: false; $fullhd-enabled: false;
// More theme colors could be added here... // More theme colors could be added here...
$primary: hsl(171, 100%, 41%); $primary: #454545;
// Update some of Bulma's component & color variables // Update some of Bulma's component & color variables
$footer-padding: 3rem 1.5rem; $footer-padding: 3rem 1.5rem;
$link: $primary; $link: hsl(171, 100%, 41%);
$info: #454545;
// Custom Styles // Custom Styles
.card-gap {margin-top:1.75rem} .card-gap {margin-top:1.75rem}
@ -22,10 +21,13 @@ $info: #454545;
a.icon > strong {margin-left:.25rem} a.icon > strong {margin-left:.25rem}
// import everything - alternatively import just what you need: https://bulma.io/documentation/overview/modular/ // import everything - alternatively import just what you need: https://bulma.io/documentation/overview/modular/
@import "~bulma/bulma"; @import "~bulma/bulma";
// override specific bulma styles // override specific bulma styles
.section {padding: 2.15rem 1.5rem} .section {padding: 2.15rem 1.5rem}
@function theme-color($key: "primary") {
@return map-get($theme-colors, $key);
}