-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwelcome.php
162 lines (131 loc) · 3.78 KB
/
welcome.php
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
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="favicon.png"/>
<title>Succinct</title>
<link rel="stylesheet" href="css/bootstrap.css">
<script src="https://apis.google.com/js/api.js"></script>
</head>
<style>
body {
font-family: futuracustom;
/*background-color: #dddddd;*/
background-image: url("man.gif");
background-size: 500px;
background-position: right bottom;
background-repeat: no-repeat;
margin: 20px;
}
@font-face {
font-family: futuracustom;
src: url('fonts/futuracustom.ttf');
}
@keyframes fadeOut {
from {opacity: 1;}
to {opacity: 0;}
}
#main {
/*margin-top: 40px;*/
}
#title {
font-size: 70px;
padding-bottom: 40px;
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
position: relative;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #f1f1f1
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown:hover .dropbtn {
background-color: #3e8e41;
}
.createPresentation {
background-color:#7F7979;
opacity: 0.7;
-moz-border-radius:8px;
-webkit-border-radius:8px;
border-radius:8px;
display:inline-block;
cursor:pointer;
color: white;
font-family: futuracustom;
font-size:30px;
padding:13px 32px;
text-decoration: none;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-ms-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}
.createPresentation:hover {
-webkit-transform: scale(1.01);
-moz-transform: scale(1.01);
-ms-transform: scale(1.01);
-o-transform: scale(1.01);
transform: scale(1.01);
background-color: black;
color: white;
text-decoration: none;
}
footer {
position: absolute;
bottom: 10px;
}
#inputArea {
margin: 20px;
}
.form-control {
text-align: center;
font-size: 14px;
}
</style>
<body class="text-center">
<!-- Welcome page -->
<div class="dropdown">
<input type = "image" style = "float: left;" position:absolute; top: 20px; src="hamburger.png" width = 40px height = 40px>
<div class="dropdown-content">
<a href="#">About</a>
<a href="#">Forums</a>
<a href="#">Contact</a>
</div>
</div>
<img style = "float: center; padding-top: 40px; padding-bottom: 10px"; src="succinctlogo.png" width = 420px>
<div id="main" class="container">
<h1 id="title">Welcome to Succinct.</h1>
</div>
<div id="startbutton">
<button id="beginbutton" class="text-center createPresentation">Click to Get Started!</button>
</div>
<!-- Scripts -->
<script src="jquery-3.1.1.min.js"></script>
<script>
document.getElementById('beginbutton').addEventListener('click', function() {
document.body.style.animation = "fadeOut 1s";
setTimeout(function() {
window.location.href = "index.php";
}, 1000);
});
</script>
</body>
</html>