-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
130 lines (115 loc) · 3.32 KB
/
index.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
<!doctype html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Raleway:100' rel='stylesheet' type='text/css'>
<link rel="shortcut icon" href="images/favicon (4).ico" type="image/x-icon">
<link rel="icon" href="images/favicon (4).ico" type="image/x-icon">
<title>Feather</title>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Raleway', sans-serif;
background-image: url("images/background3.png");
background-repeat: no-repeat;
height: 100%;
width: 100%;
}
#menu-bar {
width: 100%;
height: 60px;
background-color: rgba(150, 220, 255, 0.95);
z-index: 100;
box-shadow: 0px 0px 5px #888888;
display:block;
position: fixed;
padding-top: 3px;
}
#menu-content-container {
width: 1050px;
height: 40px;
margin: 0 auto;
margin-top: 10px;
}
a:link{
text-decoration: none;
color: white;
}
a:visited{
text-decoration: none;
color: white;
}
#display {
width: 100%;
}
#display-container {
width: 1100px;
height: 630px;
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
#display-info {
height: 500px;
width: 700px;
float: left;
position: absolute;
bottom: 0;
}
.title {
margin-top: 10px;
margin-left: 15px;
background-color: rgba(150, 220, 255, 0.3);
}
.title-words {
text-align: center;
font-size: 35px;
padding: 15px;
margin:0;
color: white;
}
#button {
position: absolute;
width: 150px;
height: 60px;
color: white;
border: solid white 1px;
margin-top: 25px;
margin-left: 15px;
-webkit-transition: .2s all;
-moz-transition: .2s all;
-o-transition: .2s all;
transition: .2s all;
}
#button:hover{
background-color: rgba(150, 220, 255, 0.3);
}
</style>
</head>
<body>
<div id = "menu-bar">
<div id = "menu-content-container">
<img src = "images/logo.png" style = "height:30px; float:left; margin-top:5px;"/>
<p style= "margin:0; padding:0; float:left; color:white; font-size:25px; margin-top:5px; margin-left:5px;">Feather</p>
</div>
</div>
<div id = "display">
<div id = "display-container">
<div id = "display-info">
<div class = "title" style = "width:380px;">
<p class = "title-words">No more heavy lifting</p>
</div>
<div class = "title" style = "width:610px;">
<p class = "title-words">organize snapshots of your textbook</p>
</div>
<p class = "title-words" style = "font-size:16px; text-align:left; margin-top:20px;">
Mobile e-textbook reader made by you. Your textbook's not provided in e-book form? No problem. The general idea is being able to take pictures of a hardcopy textbook and view the pages you snapshotted. Feather helps you organize different textbooks and the pages in each of them.
</p>
<div id = "button" style = ""><p style = "padding-top: 18px; margin:0; font-size:20px; text-align:center;"><a href = "">Get Feather</a></p></div>
</div>
<img src = "images/FeatherApp.png" style = "height:580px; position:absolute; bottom:0; right:0;"/>
<p style = "margin:0; padding: 0; color:white; position:absolute; bottom:0; margin-left:15px; margin-bottom:10px;">Created by: Alex Yeh © Feather</p>
</div>
</div>
</body>
</html>