JSFiddle - React, Tailwind, and code Playground

by Walter Rumsby

HTML

<input type="text"/>
<video width="640"  height="360" src="http://www.youtube.com/demo/google_main.mp4"  controls autobuffer></video>
<input type="text"/>    
<select>
    <option>One</option>
    <option>Two</option>
    <option>Three</option>
</select>

SCSS

body {
    font-family: serif;
    color: red;
}

input, video {
    outline: none;
    color: inherit;
    
    &:focus {
        border: 10px solid pink;
    }
}

video input {
    border: 3px orange solid;
}