51 lines
736 B
CSS
51 lines
736 B
CSS
* {
|
|
font-family: Agave Nerd Font Mono, Arial, sans-serif;
|
|
border-radius: 15px;
|
|
font-size: 10pt;
|
|
|
|
|
|
|
|
}
|
|
|
|
window {
|
|
color: #E40046;
|
|
border: solid;
|
|
border-width: 4px;
|
|
border-radius: 35px;
|
|
background-color: #1a1a1a;
|
|
margin-bottom: 10px;
|
|
padding: 5px
|
|
}
|
|
|
|
#box {
|
|
/* Define attributes of the box surrounding icons here */
|
|
padding: 5px;
|
|
}
|
|
|
|
#active {
|
|
}
|
|
|
|
button, image {
|
|
background: none;
|
|
border-style: none;
|
|
box-shadow: none;
|
|
color: #999
|
|
}
|
|
|
|
button {
|
|
padding: 4px;
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
color: #eee;
|
|
font-size: 12px
|
|
}
|
|
|
|
button:hover {
|
|
background-color: rgba(255, 255, 255, 0.15);
|
|
border-radius: 2px;
|
|
}
|
|
|
|
button:focus {
|
|
box-shadow: none
|
|
}
|