Skip to content

Commit 1f0b325

Browse files
committed
container
1 parent ba5c568 commit 1f0b325

File tree

1 file changed

+37
-30
lines changed

1 file changed

+37
-30
lines changed
Lines changed: 37 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,37 @@
1-
<div.container>
2-
<header>
3-
<img.logo src="./logo.svg" alt="Marko"/>
4-
</header>
5-
<main>
6-
<p>Edit <code>./src/routes/_index/+page.marko</code> and save to reload.</p>
7-
<a href="https://markojs.com/docs/getting-started">
8-
Learn Marko
9-
</a>
10-
</main>
11-
</div>
12-
<mouse-mask/>
13-
14-
style {
15-
.container {
16-
display:flex;
17-
flex-direction: column;
18-
justify-content: center;
19-
align-items: center;
20-
font-size: clamp(1em, 2vw, 2em);
21-
padding: 1em;
22-
box-sizing: border-box;
23-
height:100%;
24-
width:100%;
25-
}
26-
img.logo {
27-
width:12em;
28-
}
29-
}
30-
1+
<div class="container">
2+
<div class="jumbotron">
3+
<div class="row">
4+
<div class="col-md-6">
5+
<h1>Marko</h1>
6+
</div>
7+
<div class="col-md-6">
8+
<div class="row">
9+
<div class="col-sm-6 smallpad">
10+
<button type='button' class='btn btn-primary btn-block' on-click('run') id='run'>Create 1,000 rows</button>
11+
</div>
12+
<div class="col-sm-6 smallpad">
13+
<button type='button' class='btn btn-primary btn-block' on-click('runLots') id='runlots'>Create 10,000 rows</button>
14+
</div>
15+
<div class="col-sm-6 smallpad">
16+
<button type='button' class='btn btn-primary btn-block' on-click('add') id='add'>Append 1,000 rows</button>
17+
</div>
18+
<div class="col-sm-6 smallpad">
19+
<button type='button' class='btn btn-primary btn-block' on-click('update') id='update'>Update every 10th row</button>
20+
</div>
21+
<div class="col-sm-6 smallpad">
22+
<button type='button' class='btn btn-primary btn-block' on-click('clear') id='clear'>Clear</button>
23+
</div>
24+
<div class="col-sm-6 smallpad">
25+
<button type='button' class='btn btn-primary btn-block' on-click('swapRows') id='swaprows'>Swap Rows</button>
26+
</div>
27+
</div>
28+
</div>
29+
</div>
30+
</div>
31+
<table class="table table-hover table-striped test-data">
32+
<tbody>
33+
34+
</tbody>
35+
</table>
36+
<span class="preloadicon glyphicon glyphicon-remove" aria-hidden="true"></span>
37+
</div>

0 commit comments

Comments
 (0)