mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
Added basic docs
This commit is contained in:
4
dist/ionic.css
vendored
4
dist/ionic.css
vendored
@@ -1074,6 +1074,10 @@ a.list-item {
|
||||
-moz-transition: -moz-transform 200ms ease;
|
||||
transition: transform 200ms ease; }
|
||||
|
||||
.panel {
|
||||
margin: 10px;
|
||||
background-color: #fff; }
|
||||
|
||||
.ptr-capable {
|
||||
-webkit-user-drag: element; }
|
||||
|
||||
|
||||
6805
docs/bootstrap3.css
vendored
Normal file
6805
docs/bootstrap3.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
45
docs/index.html
Normal file
45
docs/index.html
Normal file
@@ -0,0 +1,45 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<title>Ionic - The Most powerful cross-platform mobile app framework.</title>
|
||||
<link href="bootstrap3.css" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<!-- Static navbar -->
|
||||
<div class="navbar navbar-default">
|
||||
<div class="navbar-header">
|
||||
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
<span class="icon-bar"></span>
|
||||
</button>
|
||||
<a class="navbar-brand" href="#">Ionic Framework</a>
|
||||
</div>
|
||||
<div class="navbar-collapse collapse">
|
||||
<ul class="nav navbar-nav navbar-right">
|
||||
<li><a href="#">About</a></li>
|
||||
<li><a href="#">Start</a></li>
|
||||
<li><a href="#">Docs</a></li>
|
||||
<li class="dropdown">
|
||||
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Formulas <b class="caret"></b></a>
|
||||
<ul class="dropdown-menu">
|
||||
<li><a href="#">Multi-page navigation</a></li>
|
||||
<li><a href="#">Left/Right Menu</a></li>
|
||||
<li><a href="#">Tab Bar</a></li>
|
||||
<li><a href="#">Pull-to-refresh</a></li>
|
||||
<li><a href="#">Slide up menu</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="jumbotron">
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
@@ -19,6 +19,7 @@
|
||||
"ionic/structure/img",
|
||||
"ionic/structure/listview",
|
||||
"ionic/structure/menu",
|
||||
"ionic/structure/panel",
|
||||
"ionic/structure/pull-to-refresh",
|
||||
"ionic/structure/table",
|
||||
"ionic/structure/tabs";
|
||||
|
||||
4
scss/ionic/structure/_panel.scss
Normal file
4
scss/ionic/structure/_panel.scss
Normal file
@@ -0,0 +1,4 @@
|
||||
.panel {
|
||||
margin: $contentPadding;
|
||||
background-color: #fff;
|
||||
}
|
||||
Reference in New Issue
Block a user