How to remove outline from input tag

{ // deep_execution_view
const authorName = "Ankit Agrawal";
//
const publishDate = "July 2, 2015";
<style>
input
{
    width:120px;
    height:60px;
    margin-left:35px;
    display:block;
    background-color:gray;
    color:white;
    border: none;
    outline:none;
}
</style>
}