-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed asset folders, added pages, hanged colors.
- Loading branch information
1 parent
d224861
commit 3bc15a3
Showing
30 changed files
with
208 additions
and
59 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,34 @@ | ||
<template> | ||
<div></div> | ||
<div class="screenshots"> | ||
<section class="hero is-light"> | ||
<div class="hero-body"> | ||
<div class="container"> | ||
<h2 class="title is-size-3 has-text-centered is-unselectable">Documentation</h2> | ||
<p class="subtitle has-text-centered has-text-grey-lighter is-unselectable">Learn how to use ScreenToGif</p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
|
||
</div> | ||
</template> | ||
|
||
<script> | ||
export default {}; | ||
import ImageLoader from "@/components/ImageLoader.vue"; | ||
export default { | ||
components: { | ||
ImageLoader | ||
}, | ||
}; | ||
</script> | ||
|
||
<style scoped></style> | ||
<style lang="scss"> | ||
@import "@/mixins/colors.scss"; | ||
//Background of the hero panel. | ||
// .hero.is-screenshots { | ||
// background-image: linear-gradient($screenshots, $screenshots-light); | ||
// } | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,34 @@ | ||
<template> | ||
<div></div> | ||
<div class="screenshots"> | ||
<section class="hero is-screenshots"> | ||
<div class="hero-body"> | ||
<div class="container"> | ||
<h2 class="title is-size-3 has-text-centered is-unselectable">Screenshots and examples</h2> | ||
<p class="subtitle has-text-centered has-text-grey-lighter is-unselectable">Checkout what you can do with ScreenToGif</p> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
|
||
</div> | ||
</template> | ||
|
||
<script> | ||
export default {}; | ||
import ImageLoader from "@/components/ImageLoader.vue"; | ||
export default { | ||
components: { | ||
ImageLoader | ||
}, | ||
}; | ||
</script> | ||
|
||
<style scoped></style> | ||
<style lang="scss"> | ||
@import "@/mixins/colors.scss"; | ||
//Background of the hero panel. | ||
.hero.is-screenshots { | ||
background-image: linear-gradient($screenshots, $screenshots-light); | ||
} | ||
</style> |
Oops, something went wrong.