"todo app"
Bootstrap 4.1.1 Snippet by ya-pop

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!------ Include the above in your HEAD tag ---------->
<div class="row container d-flex justify-content-center">
<div class="card px-3 mt-5 w-100">
<div class="card-body">
<h4 class="card-title">Awesome Todo list</h4>
<div class="add-items d-flex">
<input
type="text"
class="form-control todo-list-input"
placeholder="What do you need to do today?"
#newTodo
/>
<button
class="add btn btn-primary font-weight-bold todo-list-add-btn"
>
Add
</button>
</div>
<div class="list-wrapper">
<ul class="d-flex flex-column-reverse todo-list">
<li class="completed">
<div class="form-check">
<label class="form-check-label">
<input class="checkbox" type="checkbox" checked="" />
my first app <i class="input-helper"></i
></label>
</div>
<i class="remove mdi mdi-close-circle-outline"></i>
</li>
<li class="">
<div class="form-check">
<label class="form-check-label">
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* You can add global styles to this file, and also import other style files */
body {
background-color: #f9f9fa;
}
.flex {
-webkit-box-flex: 1;
-ms-flex: 1 1 auto;
flex: 1 1 auto;
}
@media (max-width: 991.98px) {
.padding {
padding: 1.5rem;
}
}
@media (max-width: 767.98px) {
.padding {
padding: 1rem;
}
}
.padding {
padding: 5rem;
}
.card {
box-shadow: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
-ms-box-shadow: none;
}
.pl-3,
.px-3 {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Related: See More


Questions / Comments: