-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpapermenuTest.html
146 lines (127 loc) · 5.48 KB
/
papermenuTest.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>paper menu test</title>
<meta name="description" content="portfolio for yiou">
<meta name="author" content="yiou chen">
<meta name="theme-color" content="#FFFFFF">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css" data-noprefix>
<script src="bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/redesign.css">
<link rel="stylesheet" href="build/css/normalize.css">
<link rel="stylesheet" href="build/css/skeleton.css">
<link rel="stylesheet" href="build/css/index.css">
<style is="custom-style">
paper-toolbar {
--paper-toolbar-background: rgba(255, 255, 255, 0.85);
height: 40px;
box-shadow: 10px 10px 36px -9px rgba(0, 0, 0, 0.28);
}
</style>
<link rel="import" href="elements.html">
<!--to be changed to js/aja.min.js-->
<script src="js/aja.min.js"></script>
<script src="js/preload.js"></script>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body unresolved>
<!-- <template is="dom-bind" id="app">-->
<header class="fullpage"
data-top="background-position:0% 0%"
data-top-bottom="background-position:50% 50%">
<div class="container vertical center stretch">
<div class="row "
data-start="opacity:1;transform:translate(0px, 0px);"
data-_vh-start="opacity:0;transform:translateY(0px, 200px);"
>
<div class="six columns">
<h1>Hello there</h1>
<h3>I am a New York based Designer/Developers</h3>
<round-button color="#FF9966">Blog</round-button>
<round-button color="#FF9966" cutout>About</round-button>
</div>
<div class="six columns main_img">
Image here
</div>
</div>
</div>
<div class="arrow"></div>
</header>
<section class="portfolio">
<div class="container">
<div class="row">
<card-view background="img/bcg_slide-2.jpg">
<h1 class="caption">Hello world</h1>
<h2 class="description">this is just an example</h2>
</card-view>
</div>
<div class="row">
<card-view background="img/bcg_slide-2.jpg">
<h1 class="caption">Hello world</h1>
<h2 class="description">this is just an example</h2>
</card-view>
</div>
<div class="row">
<card-view background="img/bcg_slide-2.jpg">
<h1 class="caption">Hello world</h1>
<h2 class="description">this is just an example</h2>
</card-view>
</div>
<div class="row">
<card-view background="img/bcg_slide-2.jpg">
<h1 class="caption">Hello world</h1>
<h2 class="description">this is just an example</h2>
</card-view>
</div>
</div>
</section>
<footer class="fullpage">
<div class="container" >
<div class="row" >
<div class="three columns">
<div class="profile"></div>
<p>chen.yiou@gmail.com</p>
</div>
<div class="nine columns">
<p>Yiou is an enthusiastic student at Stony Brook,
Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor
in reprehenderit in voluptate velit esse cillum dolore eu fugiat
nulla pariatur. Excepteur</P>
</div>
</div>
</div>
</footer>
<section class="container_fixed" style="top:0;">
<div class="logo">
<h1>E</h1>
</div>
</section>
<!-- </template>-->
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/skrollr.min.js"></script>
<script type="text/javascript">
var s=skrollr.init(
{
constants:{
vh:window.innerHeight
}
}
);
</script>
</body>
</html>