mirror of
https://github.com/safing/web
synced 2025-09-01 18:49:06 +00:00
Fix indentation and formatting
This commit is contained in:
parent
a0a1f80608
commit
9a893bb33c
6 changed files with 16 additions and 53 deletions
|
@ -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> -->
|
||||
|
|
|
@ -11,5 +11,4 @@
|
|||
<div class="ui stackable mobile only grid">
|
||||
{% include pitch/image.html %}
|
||||
{% include pitch/text.html %}
|
||||
|
||||
</div>
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
<div class=" twelve wide column">
|
||||
<div class=" twelve wide column">
|
||||
{{ pitch.text | markdownify | replace: '<p>','<p class="lead">' }}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue