/*
Provides basic styling to show commands and examples 

 - commandarea can be used to put scripts, configuration or commands within

 - samplecmd can be used to break apart a command when a user hovers over it 
             to explain the different sections of the command. Be sure to add
             these two options in the tag for it to work properly.
             
             data-bs-toggle="tooltip" title="Hello World"

*/

#commandarea
{
	border:solid #c4c4c4 1px;
    border-radius:10px;
    padding:10px;
    cursor:default;
}

#samplecmd{display:inline;}
	
#samplecmd:hover {
    font-weight:bold;
    cursor:help;
}
