8f0d90a209c59b4ebadb4e634eda90f9529f9efd
Benjamin Renard Create a separeted CSS file

Benjamin Renard authored 7 years ago

1) body{
2)   margin-top: 4em;
3) }
4) 
5) div.panel-heading, li.list-group-item, a {
6)   cursor: pointer;
7) }
8) 
9) .collapsing {
10)     -webkit-transition: none;
11)     transition: none;
12)     display: none;
13) }
14) 
15) .count-tag {
16)   display: inline-block;
17)   width: 6em;
18)   text-align: center;
19) }
20) 
Benjamin Renard Improve checked mark

Benjamin Renard authored 7 years ago

21) .checkable:before {
22)   content: '\2713';
23)   margin-right: 0.2em;
24)   font-style: italic;
25)   color: #999;
26)   visibility: hidden;
27) }
28) 
29) .checked {
30)   font-style: italic;
31)   color: #999;
32) }
33) 
34) .checked:before {
35)   visibility: visible;