my-app
  display: block
  .widget
    border-radius: 5px
    &.blue
      color: blue
    @media (max-width: 768px)
      float: left
  &.expanded .widget
    color: red
  
my-app
  display: block
  .widget
    border-radius: 5px
    &.blue
      color: blue
    +in('<.expanded')
      color: red
    @media (max-width: 768px)
      float: left
    
table
  table-layout: fixed
  thead
    font-weight: normal
    tr
      height: 50px
  tr
    height: 30px
  td
    background-color: #fafafa
    
table
  table-layout: fixed
  thead
    font-weight: normal
  tr
    height: 30px
    +in('^thead')
      height: 50px
  td
    background-color: #fafafa
    
ul, ol
  list-style: none
  li
    display: inline-block
    a
      text-decoration: underline
  .cool a
    background: pink
.special-list li a
  color: orange
  
ul, ol
  list-style: none
  li
    display: inline-block
    a
      text-decoration: underline
      +in('@.cool')
        background: pink
      +in('@@.special-list')
        color: orange