-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (54 loc) · 776 Bytes
/
style.css
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
ul#checklist{
list-style: none;
padding: 0;
margin: 0;
}
ul#checklist > li.list-item {
padding: 5px;
}
form > .form-group {
padding : 5px;
margin-top : 2.5px;
margin-bottom : 2.5px;
}
form > .form-group > label{
display: block;
padding-top: 5px;
padding-bottom: 5px;
font-size : 14px;
}
a.icon{
cursor: pointer;
}
.icon {
display: block;
padding: 5px;
}
.icon-delete {
font-weight: bold;
}
.pull-right {
float: right;
}
button.btn{
border : 0;
}
button.btn.btn-md{
padding : 10px;
}
button.btn.btn-black{
color : white;
background-color: black;
}
button.btn.btn-block {
width: 100%;
}
input[type=text].form-control{
padding: 5px;
}
.truncate {
width: 250px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}