mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-19 00:22:15 +00:00
added prettier
This commit is contained in:
@@ -1,14 +1,8 @@
|
||||
<template>
|
||||
<div class="page-wrapper large get-started" v-if="index.section_get_started === '1'">
|
||||
<PageTitle class="page-title" type="center" :title="index.get_started_title" :description="index.get_started_description"></PageTitle>
|
||||
|
||||
<PageTitle
|
||||
class="page-title"
|
||||
type="center"
|
||||
:title="index.get_started_title"
|
||||
:description="index.get_started_description"
|
||||
></PageTitle>
|
||||
|
||||
<router-link tag="button" class="get-started-button bg-theme-800 hover-bg-theme shadow-theme" :to="{name: 'SignUp'}">
|
||||
<router-link tag="button" class="get-started-button bg-theme-800 hover-bg-theme shadow-theme" :to="{ name: 'SignUp' }">
|
||||
<span class="content">{{ $t('page_index.get_started_button') }}</span>
|
||||
<chevron-right-icon size="22"></chevron-right-icon>
|
||||
</router-link>
|
||||
@@ -41,296 +35,305 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import PageTitle from "./Components/PageTitle";
|
||||
import {
|
||||
ChevronRightIcon,
|
||||
import PageTitle from './Components/PageTitle'
|
||||
import {
|
||||
ChevronRightIcon,
|
||||
UploadCloudIcon,
|
||||
FolderPlusIcon,
|
||||
HardDriveIcon,
|
||||
SettingsIcon,
|
||||
Trash2Icon,
|
||||
SearchIcon,
|
||||
ShareIcon,
|
||||
CloudIcon,
|
||||
ImageIcon,
|
||||
InfoIcon,
|
||||
GridIcon,
|
||||
LinkIcon,
|
||||
StarIcon,
|
||||
EyeIcon,
|
||||
} from 'vue-feather-icons'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
name: 'IndexGetStarted',
|
||||
components: {
|
||||
InfoIcon,
|
||||
UploadCloudIcon,
|
||||
ShareIcon,
|
||||
ChevronRightIcon,
|
||||
FolderPlusIcon,
|
||||
HardDriveIcon,
|
||||
SettingsIcon,
|
||||
Trash2Icon,
|
||||
SearchIcon,
|
||||
ShareIcon,
|
||||
CloudIcon,
|
||||
PageTitle,
|
||||
ImageIcon,
|
||||
InfoIcon,
|
||||
GridIcon,
|
||||
LinkIcon,
|
||||
StarIcon,
|
||||
EyeIcon,
|
||||
} from 'vue-feather-icons'
|
||||
import { mapGetters } from 'vuex'
|
||||
|
||||
export default {
|
||||
name: 'IndexGetStarted',
|
||||
components: {
|
||||
InfoIcon,
|
||||
UploadCloudIcon,
|
||||
ShareIcon,
|
||||
ChevronRightIcon,
|
||||
FolderPlusIcon,
|
||||
HardDriveIcon,
|
||||
SettingsIcon,
|
||||
Trash2Icon,
|
||||
SearchIcon,
|
||||
CloudIcon,
|
||||
PageTitle,
|
||||
ImageIcon,
|
||||
GridIcon,
|
||||
LinkIcon,
|
||||
StarIcon,
|
||||
EyeIcon,
|
||||
},
|
||||
computed: {
|
||||
...mapGetters(['index']),
|
||||
},
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
...mapGetters(['index']),
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import '../../../sass/vuefilemanager/landing-page';
|
||||
@import '../../../sass/vuefilemanager/variables';
|
||||
@import '../../../sass/vuefilemanager/mixins';
|
||||
@import '../../../sass/vuefilemanager/landing-page';
|
||||
@import '../../../sass/vuefilemanager/variables';
|
||||
@import '../../../sass/vuefilemanager/mixins';
|
||||
|
||||
.icons {
|
||||
|
||||
.icon {
|
||||
position: absolute;
|
||||
|
||||
&:nth-child(20) {
|
||||
bottom: -37%;
|
||||
left: 37%;
|
||||
transform: rotate(0deg);
|
||||
|
||||
circle, line {
|
||||
stroke: $yellow;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(19) {
|
||||
bottom: -21%;
|
||||
left: 23.5%;
|
||||
transform: rotate(-20deg);
|
||||
|
||||
path, line {
|
||||
stroke: $purple;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(18) {
|
||||
bottom: -4%;
|
||||
left: 26.5%;
|
||||
transform: rotate(0deg);
|
||||
|
||||
path {
|
||||
stroke: $theme;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(17) {
|
||||
bottom: -5%;
|
||||
left: 8.5%;
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
&:nth-child(16) {
|
||||
top: 86%;
|
||||
left: 17%;
|
||||
transform: rotate(18deg);
|
||||
}
|
||||
|
||||
&:nth-child(15) {
|
||||
top: 64%;
|
||||
left: 17%;
|
||||
transform: rotate(0deg);
|
||||
|
||||
polyline, line, path {
|
||||
stroke: $red;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(14) {
|
||||
top: 44%;
|
||||
left: 28%;
|
||||
transform: rotate(0deg);
|
||||
|
||||
polygon {
|
||||
stroke: $purple;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(13) {
|
||||
top: 33%;
|
||||
left: 16%;
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
&:nth-child(12) {
|
||||
top: 23%;
|
||||
left: 32%;
|
||||
transform: rotate(13deg);
|
||||
|
||||
line, path {
|
||||
stroke: $yellow;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(1) {
|
||||
top: 35%;
|
||||
right: 49%;
|
||||
transform: rotate(-11deg);
|
||||
|
||||
line, path {
|
||||
stroke: $theme;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(2) {
|
||||
top: 12%;
|
||||
right: 45%;
|
||||
transform: rotate(0);
|
||||
|
||||
circle, path {
|
||||
stroke: $red;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(3) {
|
||||
top: 30%;
|
||||
right: 30%;
|
||||
transform: rotate(20deg);
|
||||
}
|
||||
|
||||
&:nth-child(4) {
|
||||
top: 14%;
|
||||
right: 14.5%;
|
||||
transform: rotate(-1deg);
|
||||
}
|
||||
|
||||
&:nth-child(5) {
|
||||
top: 62%;
|
||||
right: 15.5%;
|
||||
transform: rotate(21deg);
|
||||
|
||||
polyline, path, line {
|
||||
stroke: $red;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(6) {
|
||||
top: 66%;
|
||||
right: 26.5%;
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
&:nth-child(7) {
|
||||
bottom: 3%;
|
||||
right: 21.5%;
|
||||
transform: rotate(16deg);
|
||||
}
|
||||
|
||||
&:nth-child(8) {
|
||||
bottom: -13%;
|
||||
right: 16.5%;
|
||||
transform: rotate(0deg);
|
||||
|
||||
polygon {
|
||||
stroke: $yellow;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(9) {
|
||||
bottom: -32%;
|
||||
right: 27%;
|
||||
transform: rotate(-20deg);
|
||||
}
|
||||
|
||||
&:nth-child(10) {
|
||||
bottom: -5%;
|
||||
right: 34%;
|
||||
transform: rotate(16deg);
|
||||
|
||||
rect {
|
||||
stroke: $purple;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(11) {
|
||||
bottom: -28%;
|
||||
right: 44%;
|
||||
transform: rotate(-12deg);
|
||||
|
||||
polyline, line, path {
|
||||
stroke: $red;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
.cloud-bg {
|
||||
z-index: 0;
|
||||
.icons {
|
||||
.icon {
|
||||
position: absolute;
|
||||
top: 70px;
|
||||
right: 60px;
|
||||
transform: scale(-1, 1) rotate(13deg);
|
||||
opacity: 0.1;
|
||||
|
||||
path {
|
||||
stroke: none;
|
||||
&:nth-child(20) {
|
||||
bottom: -37%;
|
||||
left: 37%;
|
||||
transform: rotate(0deg);
|
||||
|
||||
circle,
|
||||
line {
|
||||
stroke: $yellow;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(19) {
|
||||
bottom: -21%;
|
||||
left: 23.5%;
|
||||
transform: rotate(-20deg);
|
||||
|
||||
path,
|
||||
line {
|
||||
stroke: $purple;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(18) {
|
||||
bottom: -4%;
|
||||
left: 26.5%;
|
||||
transform: rotate(0deg);
|
||||
|
||||
path {
|
||||
stroke: $theme;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(17) {
|
||||
bottom: -5%;
|
||||
left: 8.5%;
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
&:nth-child(16) {
|
||||
top: 86%;
|
||||
left: 17%;
|
||||
transform: rotate(18deg);
|
||||
}
|
||||
|
||||
&:nth-child(15) {
|
||||
top: 64%;
|
||||
left: 17%;
|
||||
transform: rotate(0deg);
|
||||
|
||||
polyline,
|
||||
line,
|
||||
path {
|
||||
stroke: $red;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(14) {
|
||||
top: 44%;
|
||||
left: 28%;
|
||||
transform: rotate(0deg);
|
||||
|
||||
polygon {
|
||||
stroke: $purple;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(13) {
|
||||
top: 33%;
|
||||
left: 16%;
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
&:nth-child(12) {
|
||||
top: 23%;
|
||||
left: 32%;
|
||||
transform: rotate(13deg);
|
||||
|
||||
line,
|
||||
path {
|
||||
stroke: $yellow;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(1) {
|
||||
top: 35%;
|
||||
right: 49%;
|
||||
transform: rotate(-11deg);
|
||||
|
||||
line,
|
||||
path {
|
||||
stroke: $theme;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(2) {
|
||||
top: 12%;
|
||||
right: 45%;
|
||||
transform: rotate(0);
|
||||
|
||||
circle,
|
||||
path {
|
||||
stroke: $red;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(3) {
|
||||
top: 30%;
|
||||
right: 30%;
|
||||
transform: rotate(20deg);
|
||||
}
|
||||
|
||||
&:nth-child(4) {
|
||||
top: 14%;
|
||||
right: 14.5%;
|
||||
transform: rotate(-1deg);
|
||||
}
|
||||
|
||||
&:nth-child(5) {
|
||||
top: 62%;
|
||||
right: 15.5%;
|
||||
transform: rotate(21deg);
|
||||
|
||||
polyline,
|
||||
path,
|
||||
line {
|
||||
stroke: $red;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(6) {
|
||||
top: 66%;
|
||||
right: 26.5%;
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
&:nth-child(7) {
|
||||
bottom: 3%;
|
||||
right: 21.5%;
|
||||
transform: rotate(16deg);
|
||||
}
|
||||
|
||||
&:nth-child(8) {
|
||||
bottom: -13%;
|
||||
right: 16.5%;
|
||||
transform: rotate(0deg);
|
||||
|
||||
polygon {
|
||||
stroke: $yellow;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(9) {
|
||||
bottom: -32%;
|
||||
right: 27%;
|
||||
transform: rotate(-20deg);
|
||||
}
|
||||
|
||||
&:nth-child(10) {
|
||||
bottom: -5%;
|
||||
right: 34%;
|
||||
transform: rotate(16deg);
|
||||
|
||||
rect {
|
||||
stroke: $purple;
|
||||
}
|
||||
}
|
||||
|
||||
&:nth-child(11) {
|
||||
bottom: -28%;
|
||||
right: 44%;
|
||||
transform: rotate(-12deg);
|
||||
|
||||
polyline,
|
||||
line,
|
||||
path {
|
||||
stroke: $red;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.cloud-bg {
|
||||
z-index: 0;
|
||||
position: absolute;
|
||||
top: 70px;
|
||||
right: 60px;
|
||||
transform: scale(-1, 1) rotate(13deg);
|
||||
opacity: 0.1;
|
||||
|
||||
path {
|
||||
stroke: none;
|
||||
}
|
||||
}
|
||||
|
||||
.page-title {
|
||||
padding-top: 340px;
|
||||
}
|
||||
|
||||
.get-started-button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
outline: none;
|
||||
border: none;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
cursor: pointer;
|
||||
padding: 20px 36px;
|
||||
border-radius: 6px;
|
||||
//box-shadow: 0 5px 10px 2px rgba($theme, 0.34);
|
||||
margin-bottom: 395px;
|
||||
@include transition(150ms);
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
|
||||
.content {
|
||||
@include font-size(19);
|
||||
font-weight: 700;
|
||||
margin-right: 8px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
polyline {
|
||||
stroke: white;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1190px) {
|
||||
.get-started-button {
|
||||
margin-bottom: 280px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 960px) {
|
||||
.page-title {
|
||||
padding-top: 340px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.get-started-button {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
outline: none;
|
||||
border: none;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
cursor: pointer;
|
||||
padding: 20px 36px;
|
||||
border-radius: 6px;
|
||||
//box-shadow: 0 5px 10px 2px rgba($theme, 0.34);
|
||||
margin-bottom: 395px;
|
||||
@include transition(150ms);
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
|
||||
.content {
|
||||
@include font-size(19);
|
||||
font-weight: 700;
|
||||
margin-right: 8px;
|
||||
color: white;
|
||||
}
|
||||
|
||||
polyline {
|
||||
stroke: white;
|
||||
}
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 1190px) {
|
||||
.get-started-button {
|
||||
margin-bottom: 280px;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 960px) {
|
||||
.page-title {
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.get-started-button {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.cloud-bg,
|
||||
.icons {
|
||||
display: none;
|
||||
}
|
||||
.cloud-bg,
|
||||
.icons {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user