Fix indentation and formatting

This commit is contained in:
davegson 2018-09-19 13:29:00 +02:00
parent a0a1f80608
commit 9a893bb33c
6 changed files with 16 additions and 53 deletions

View file

@ -25,7 +25,3 @@
window.onscroll = scrollFunction
</script>
<!-- <div class="ui icon button mobile-hidden" onclick="topFunction()" id="myBtn" title="Go to top" style="padding: 0px; font-size: 2rem;">
<i class='ui chevron up icon' style='color: #f39200; '></i>
</div> -->

View file

@ -11,5 +11,4 @@
<div class="ui stackable mobile only grid">
{% include pitch/image.html %}
{% include pitch/text.html %}
</div>

View file

@ -1,3 +1,3 @@
<div class=" twelve wide column">
<div class=" twelve wide column">
{{ pitch.text | markdownify | replace: '<p>','<p class="lead">' }}
</div>
</div>

View file

@ -1,55 +1,28 @@
.ui.button.safing-active {
color: $white;
background-color: $primary;
}
.ui.button.safing-active:hover {
background-color: $anchor_hover;
color: $white;
}
.ui.button.safing-secondary{
.ui.button.safing-secondary{
color: $secondary;
}
.ui.button.safing-secondary:hover{
.ui.button.safing-secondary:hover{
background-color: $fill_medium;
color: $white;
}
.ui.button.safing-full {
.ui.button.safing-full {
color: $fill_lighter;
background-color: $white;
}
.ui.button.safing-full:hover {
background-color: $fill_lighter;
color: $white;
}
//go to top button
#myBtn {
display: none; /* Hidden by default */
position: fixed; /* Fixed/sticky position */
bottom: 200px; /* Place the button at the bottom of the page */
right: 30px; /* Place the button 30px from the right */
z-index: 99; /* Make sure it does not overlap */
border: none; /* Remove borders */
outline: none; /* Remove outline */
background-color: $secondary; /* Set a background color */
color: $white; /* Text color */
cursor: pointer; /* Add a mouse pointer on hover */
padding: 15px; /* Some padding */
border-radius: 10px; /* Rounded corners */
font-size: 18px; /* Increase font size */
}
#myBtn:hover {
background-color: $secondary; /* Add a dark-grey background on hover */
//old color: #555
}

View file

@ -2,10 +2,10 @@ body, .ui.header, h1, h2, h3, h4, h5, h6, p {
font-family: 'Roboto', 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
a{
a {
color: $anchor;
}
a:hover{
a:hover {
color: $anchor_hover;
text-decoration: underline;
}
@ -13,6 +13,7 @@ a:hover{
.color-primary {
color: $primary;
}
.color-primary-important {
color: $primary !important;
}
@ -26,16 +27,10 @@ a:hover{
color: $white
}
.max-width-100 {
max-width: 100%;
}
.pusher {
background-color: $fill_light !important;
}
.content{
background-color: $background_main;
}