Skip to content

Commit

Permalink
maqueta estatica
Browse files Browse the repository at this point in the history
  • Loading branch information
merunga committed Apr 24, 2019
1 parent b95052a commit b76f5ec
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
22 changes: 21 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,27 @@
<title>TodoMVC</title>
</head>
<body>
<div id="root"></div>
<div id="root">
<section class="todoapp">
<header class="header">
<h1>todos</h1>
<input class="new-todo" placeholder="What needs to be done?" autofocus="">
</header>
<section class="main" style="display: block;">
<ul class="todo-list">
<li data-id="" class="">
<div class="view">
<label>un todo</label>
<button class="destroy"></button>
</div>
</li>
</ul>
</section>
<footer class="footer" style="display: block;">
<span class="todo-count"><strong>1</strong> item left</span>
</footer>
</section>
</div>
<script src="main.js" type="module"></script>
</body>
</html>
1 change: 0 additions & 1 deletion src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,6 @@ body {
}

.todo-list li .destroy {
display: none;
position: absolute;
top: 0;
right: 10px;
Expand Down

0 comments on commit b76f5ec

Please sign in to comment.