-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreadmore.html
119 lines (116 loc) · 2.5 KB
/
readmore.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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<head>
<title>Wave Tags</title>
</head>
<body>
<a class="back" href="javascript:history.back()">
<div>Back</div>
</a>
<div class="content">
<p>Wave Tags is a solar-powered machine that invites people to leave messages in the form of wifi networks. </p>
<p>Inspired by the interventions people leave on walls around the city, it aims to open a new dimension of public space for this kind of anonymous expression. It is digital, but also physical and site-specific. </p>
<p>It is made to be hidden on street furniture near cafes, parks or anywhere that people usually search for wifi. Anyone with a smartphone can connect to it and leave their ideas, that will be propagated around the area as a new wifi hotspot.</p>
</body>
<style>
* {
font-family: "Arial";
}
body {
background-color: #dbdbdb;
height: 100vh;
overflow-y: hidden;
}
.content {
background-color: #dbdbdb;
height: 100%;
overflow-y: hidden;
margin: 0 auto;
max-width: 80%;
display: flex;
flex-direction: column;
justify-content: center;
}
.back {
position: absolute;
top: 20px;
}
img {
width: 130px;
margin-bottom: 50px;
align-self: center;
top: 0;
}
p {
color: black;
text-align: center;
font-weight: 500;
font-size: 18px;
margin: 10px;
}
.form {
height: 20px;
width: 80%;
margin: 0 auto;
margin-bottom: 50px;
display: flex
}
input {
height: 20px;
width: 100%;
font-size: 15px;
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: 35px;
width: 200px;
border: 0px solid black;
margin: 0 auto;
color: #dbdbdb;
font-weight: 1000;
background-color: black;
border-color: black;
}
button:hover {
background-color: red;
color: white
}
.readmore {
position: absolute;
bottom: 0;
height: 20px;
width: 100%;
color: black;
margin-bottom: 5px;
}
link {
color: black !important;
}
image {
position: static;
top: 0;
}
@keyframes background-fade {
0% {
background-color:#dbdbdb;
color: black;
}
50% {
background-color:#000;
color: #dbdbdb;
}
100% {
background-color:#dbdbdb;
color: black;
}
}
</style>
</html>