Using Semantic UI 2.4 from
https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.4.1/semantic.min.css
I find semantic ui easy to pick up but I haven't found a list of "devices" yet, I show mobile, tablet, and computer from some searching, but there must be something bigger than a "computer" because
<div class="ui padded grid">
<div class="mobile only row">
<div class="red column">mobile: Maecenas malesuada dui eu interdum </div>
</div>
<div class="tablet only row">
<div class="orange column">tablet: Maecenas malesuada dui eu interdum </div>
</div>
<div class="computer only row">
<div class="green column">computer: Maecenas malesuada dui eu interdum </div>
</div>
...
all three divs disappear if the viewport is wider than 1199px. Where can you find a list of device classes?
