-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (98 loc) · 1.96 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
<style>
@import url(https://fonts.googleapis.com/css?family=Raleway:400,500);
html,
body {
/*background-color:#5DBCD2;*/
/*background-color:rgb(93,205,260);*/
background-color: rgb(250,250,250);
text-align: center;
font-family: 'Raleway', Helvetica, sans-serif;
min-width: 320px;
}
.thick-green-border {
border-color: white;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
.smaller-image {
width: 300px;
}
header {
font-size: 2em;
font-weight: bold;
margin: 20px;
}
#form-outer {
background-color: rgb(250, 250, 250);
margin: 0 auto;
border-radius: 4px;
width: 75%;
max-width: 900px;
padding: 10px;
padding-top: 20px;
}
.labels {
display: inline-block;
text-align: right;
width: 40%;
padding: 5px;
vertical-align: top;
margin-top: 10px;
}
.rightTab {
display: inline-block;
text-align: left;
width: 48%;
vertical-align: middle;
}
.input-field {
height: 20px;
width: 280px;
padding: 5px;
margin: 10px;
border: 1px solid #c0c0c0;
border-radius: 2px;
}
#submit {
background-color: #59ace0;
border-radius: 4px;
color: white;
font-size: 1em;
height: 40px;
width: 96px;
margin: 10px;
border: 0px solid;
}
@media screen and (max-width: 833px) {
.input-field {
width: 80%;
}
select {
width: 90%;
}
}
@media screen and (max-width: 520px) {
.labels {
width: 100%;
text-align: left;
}
.rightTab {
width: 80%;
float: left;
}
.input-field {
width: 100%;
}
select {
width: 100%;
}
}
</style>
<br>
<h1 id="title"><img src="icons/Hlogo.png" height="60px" width="150px"></h1>
<img class="thick-green-border smaller-image"src="icons/index.gif">
<h2>W E L C O M E</h2>
<p>Are you ready to blink?</p>
<button id="submit" onclick = "location.href='features.html'">Proceed :)</button>
</div>