sioux-segue
Version:
Push and modal segue for sioux
45 lines (36 loc) • 923 B
HTML
<html>
<head>
<title>sioux segue</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1">
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300,100' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="style.css">
<style>
* {
-webkit-user-select: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
font-family: Roboto, sans-serif;
color: #0d0d05;
font-weight: 200;
}
.modal {
background: pink;
}
.foo {
background: lightgrey;
}
.bar {
background: grey;
}
</style>
<script src="bundle.js"></script>
</head>
<body>
<div class="screen">
<div class="container"></div>
</div>
</body>
</html>