50 lines
745 B
CSS
50 lines
745 B
CSS
* {
|
|
all: unset;
|
|
font-family: Agave Nerd Font Mono, Arial, sans-serif;
|
|
border-radius: 60px;
|
|
font-size: 10pt;
|
|
}
|
|
|
|
window {
|
|
color: #E40046;
|
|
border: solid;
|
|
border-width: 4px;
|
|
background-color: #1a1a1a;
|
|
margin-bottom: 10px;
|
|
padding: 5px
|
|
}
|
|
|
|
#box {
|
|
/* Define attributes of the box surrounding icons here */
|
|
padding: 25px;
|
|
}
|
|
|
|
#active {
|
|
background-color: #5018dd;
|
|
color: #f50505;
|
|
}
|
|
|
|
button, image {
|
|
background: none;
|
|
border-style: none;
|
|
box-shadow: none;
|
|
color: #d6abab;
|
|
}
|
|
|
|
button {
|
|
padding: 4px;
|
|
margin-left: 4px;
|
|
margin-right: 4px;
|
|
color: #d6abab;
|
|
font-size: 12px;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #5018dd;
|
|
}
|
|
|
|
button:focus {
|
|
background-color: #E40046;
|
|
color: #5018dd;
|
|
}
|