forked from bestony/logoly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.vue
More file actions
164 lines (162 loc) · 3.25 KB
/
App.vue
File metadata and controls
164 lines (162 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<template>
<div id="app">
<Ribbon></Ribbon>
<div class="logo">
<logo></logo>
</div>
<div class="description">
<Description></Description>
</div>
<div id="nav">
<div class="menu">
<router-link to="/about">About</router-link>
<router-link to="/" class="pb">
<span class="prefix">Porn</span>
<span class="postfix">hub</span>
</router-link>
<router-link to="/vertical-ph" class="vph">
<p class="prefix">Porn</p>
<p class="postfix">hub</p>
</router-link>
<span class="disable">
<span class="prefix">You</span>
<span class="postfix">Tube</span>
</span>
<span class="disable">More coming soon...</span>
</div>
</div>
<router-view class="container"/>
<Slogan class="container"></Slogan>
<Faq class="container"></Faq>
<Author class="container"></Author>
<Copyright class="container"></Copyright>
</div>
</template>
<script>
import Logo from "./components/Logo";
import Description from "./components/Description";
import Slogan from "./components/Slogan";
import Faq from "./components/Faq";
import Author from "./components/Author";
import Ribbon from "./components/Ribbon";
import Copyright from "./components/Copyright";
export default {
components: {
logo: Logo,
Description,
Slogan,
Faq,
Author,
Ribbon,
Copyright
}
};
</script>
<style>
html,
body,
#app {
height: 100%;
margin: 0;
background-color: #000;
color: #f90;
font-family: Arial,Helvetica,sans-serif;
}
a {
color: #f90;
text-decoration: none;
}
.logo,
.description {
display: flex;
flex-direction: row;
justify-content: center;
}
#nav {
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
padding: 20px 0px;
}
.menu {
width: 60%;
display: flex;
justify-content: space-around;
align-items: center;
font-weight: 700;
}
.pb .prefix {
color: #fff;
padding: 2px;
}
.pb .postfix {
color: #000;
background-color: #f90;
padding: 2px;
border-radius: 3px;
}
.yb .prefix{
color: #fff;
padding: 2px;
}
.yb .postfix{
color: #fff;
background-color: #ff0000;
padding: 2px;
border-radius: 3px;
letter-spacing: -1px;
}
.vph{
text-align: center;
}
.vph .prefix{
margin: 0px;
color:#fff;
}
.vph .postfix{
margin: 0px;
color: #000;
background-color: #f90;
padding: 2px;
border-radius: 3px;
}
span.disable{
color:#777 !important;
font-weight: 500;
}
.container{
width: 60%;
padding: 20px 20%;
}
.button{
display: inline-block;
zoom: 1;
line-height: normal;
white-space: nowrap;
vertical-align: middle;
text-align: center;
cursor: pointer;
-webkit-user-drag: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
box-sizing: border-box;
font-family: inherit;
font-size: 100%;
padding: 0.5em 1em;
color: #000;
border: 1px solid #999; /*IE 6/7/8*/
border: none rgba(0, 0, 0, 0); /*IE9 + everything else*/
background-color: #f90;
text-decoration: none;
border-radius: 2px;
}
.tooltip-inner {
background: #666;
color: white;
border-radius: 16px;
padding: 5px 10px 4px;
}
</style>