JSFiddle - React, Tailwind, and code Playground

by mrSearcher

HTML

<ul class='term'>
    <li>stay</li>
    <li>wait</li>
    <li>go</li>
</ul>

CSS

body {
    font: 16px Arial, sans-serif;
    background: #f0f0f9;
}

.term {
    margin: 1em auto;
    width: 50%;
    background: #f0f0f9;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: .5em .5em .2em;
    box-shadow: inset -1px -1px 0 #d3d3d3, -1px -1px 0 #d3d3d3;
    text-shadow: 1px 1px #fff;
}

.term li {
    margin: 0 0 .5em;
}

.term li:before {
    content: '- ';
}