Skip to content

Instantly share code, notes, and snippets.

@bruno2ms
Created April 8, 2015 14:00
Show Gist options
  • Save bruno2ms/503205638dcc2612bb81 to your computer and use it in GitHub Desktop.
Save bruno2ms/503205638dcc2612bb81 to your computer and use it in GitHub Desktop.
MYddwm
p oii
div
table
thead
tr
td(class="oi") ID
td(class="oi") a
td(class="oi") b
td(class="oi") c
tbody
- var n = 0
while n < 100
tr
td ID
td.money(contenteditable="true") 0,00
td.money(contenteditable="true") 0,00
td.money(contenteditable="true") 0,00
- n++
table{
border-spacing: 0;
border-collapse: collapse;
td{
border: 1px solid #CCC;
padding: 5px;
&.money{
padding-left: 30px;
}
&.money:before{
content: "R$ ";
margin-left: -25px;
font-size: 80%;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment