Skip to content
This repository was archived by the owner on Dec 6, 2018. It is now read-only.

Commit

Permalink
Fix mixed tabs/spaces to spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
yvan-sraka committed Jul 12, 2017
1 parent 4e8e57e commit 8ac0ee3
Showing 1 changed file with 15 additions and 18 deletions.
33 changes: 15 additions & 18 deletions examples/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>VR View - examples</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<head>
<title>VR View - examples</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
Expand All @@ -14,45 +14,42 @@
flex-wrap: wrap;
justify-content: center;
}

.mdl-card {
display: inline-block;
margin: 20px;
height: auto;
}
.mdl-card div.mdl-card__title {
background-size: cover;
height: 150px;
color: #fff;
}
.mdl-card div.mdl-card__title {
background-size: cover;
height: 150px;
color: #fff;
}
</style>
</head>
<body>
</head>
<body>
<div class="mdl-layout">
<div class="mdl-layout__content">
<div class="mdl-card mdl-shadow--2dp">
<div class="mdl-card__title mdl-color--cyan">
<h2 class="mdl-card__title-text">Gallery</h2>
<h2 class="mdl-card__title-text">Gallery</h2>
</div>
<div class="mdl-card__supporting-text">Carousel of scenes, each one viewable by clicking/tapping a thumbnail.</div>
<div class="mdl-card__actions mdl-card--border">
<a class="mdl-button mdl-button--colored mdl-color-text--blue-600" href="gallery/index.html">Show example</a>
</div>
</div>

<div class="mdl-card mdl-shadow--2dp">
<div class="mdl-card__title mdl-color--cyan">
<h2 class="mdl-card__title-text">Hotspots</h2>
<h2 class="mdl-card__title-text">Hotspots</h2>
</div>
<div class="mdl-card__supporting-text">Interactive hotspot experience, using the API to setup and travel between scenes.</div>
<div class="mdl-card__actions mdl-card--border">
<a class="mdl-button mdl-button--colored mdl-color-text--blue-600" href="hotspots/index.html">Show example</a>
</div>
</div>

<div class="mdl-card mdl-shadow--2dp">
<div class="mdl-card__title mdl-color--cyan">
<h2 class="mdl-card__title-text">Video</h2>
<h2 class="mdl-card__title-text">Video</h2>
</div>
<div class="mdl-card__supporting-text">360° video with playback controls to play/pause and mute/unmute the video.</div>
<div class="mdl-card__actions mdl-card--border">
Expand All @@ -61,5 +58,5 @@ <h2 class="mdl-card__title-text">Video</h2>
</div>
</div>
</div>
</body>
</body>
</html>

0 comments on commit 8ac0ee3

Please sign in to comment.