Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,20 @@
});
</script>
</head>

<body>
<h1>What does Berlin look like for people in a wheelchair?</h1>
<p>This is a visualization of the Berlin Public Transport System's degree of accessibility. The idea for this comes from the Hamburg initiative <a href="http://mappable.info">Mappable</a>.<br>
You can find an elaborate How-to <a href="https://github.com/arduina/access_map/blob/master/README.md">here.</a> </p>
<div class="wrapper">
<h1>What does Berlin look like for people in a wheelchair?</h1>
<h2>Pull the slider across the image and watch all of the inaccessible subway stations disappear.</h2>
<p>This is a visualization of the Berlin Public Transport System's degree of accessibility. The idea for this comes from the Hamburg initiative <a href="http://mappable.info">Mappable</a>.<br>
You can find an elaborate How-to <a href="https://github.com/arduina/access_map/blob/master/README.md">here.</a> </p>
<div class="main">
<div id="container">
<img src="map.jpg">
<img src="map_erased.jpg">
</div>
</div>

<div id="container">
<img src="map.jpg">
<img src="map_erased.jpg">
</div>
</body>

Expand Down
22 changes: 19 additions & 3 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,23 @@
img{
width:1000px;
/* this is where you can update the colors and styles for this project */

#container img {
width:100%; /* width of the whole main container */
}

body {
font-family:helvetica;
margin: 20px; /* margin for the entire page */
font-family:helvetica; /* font for the whole page */
background: #111; /* background of entire page */
color:#111 ; /* body text color */
}
h1,h2,p {
background: #87CEEB; /* color of highlighting */
padding:10px; /* padding for highlighting */
}
p {
padding:10px 10px 20px 10px; /* padding for a paragraph */
}
#container {
width:100%; /* size of the map block */
margin: 0px auto; /* this line centers the container block */
}