-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
125 lines (123 loc) · 2.42 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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<title>Wave Tags</title>
</head>
<body>
<div class="content">
<!-- <img class='back_image_1' src='./image.png' /> -->
<!-- <img class='back_image_2' src='./image2.png' /> -->
<div class='top'>
<h1>leave your message</h1>
<p> Lassen sie seine Nachricht </p>
</div>
<form class="form" action="/message" id="form1">
<input maxlength="31" type="text" name="message">
</input>
</form>
<button type="submit" form="form1" value="Submit">
PROPAGATE
</button>
</div>
<div class="about">
<a class="link" href="/about">about</a>
</div>
</body>
<style>
* {
font-family: "Arial";
}
body {
background-color: #dbdbdb;
height: 100vh;
overflow-y: hidden;
}
.content {
background-color: #dbdbdb;
height: 100%;
overflow-y: hidden;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.back_image_1 {
pointer-events: none;
position: absolute;
transform: translateX(-200px) scale(0.3) translateY(50vh);
}
.back_image_2 {
pointer-events: none;
position: absolute;
transform: translateX(120px) scale(0.3) translateY(-140vh);
}
h1 {
color: black;
text-align: center;
font-weight: 500;
margin: 30px;
}
.top {
display: flex;
flex-direction: column;
}
p {
font-style: italic;
align-self: center;
}
.form {
height: 20px;
width: 80%;
margin: 0 auto;
margin-bottom: 50px;
display: flex
}
input {
height: 30px;
width: 100%;
max-width: 300px;
font-size: 16px;
margin: 0 auto;
border-top: 0px;
border-left: 0px;
border-right: 0px;
outline: 0;
background-color: #dbdbdb;
border-bottom: 1px solid black;
padding:2px 2px;
}
button {
height: 50px;
width: 80%;
max-width: 300px;
border: 0px solid black;
margin: 0 auto;
color: #dbdbdb;
font-weight: 1000;
cursor: pointer;
font-size: 16px;
background-color: black;
border-color: black;
margin-bottom: 20px;
}
button:hover {
background-color: black;
color: white
}
.about {
position: absolute;
bottom: 0;
height: 20px;
width: 100%;
color: black;
margin-bottom: 5px;
}
link {
color: black !important;
}
image {
position: static;
top: 0;
}
</style>
</html>