59 lines
899 B
CSS
59 lines
899 B
CSS
* {
|
|
font-family: FontAwesome;
|
|
font-size: 13px;
|
|
color: #E0E6ED;
|
|
/* border-radius: 0; */
|
|
}
|
|
|
|
window {
|
|
margin: 10px;
|
|
border: 4px solid #1C1E1F;
|
|
background-color: #242425;
|
|
padding: 20px;
|
|
}
|
|
|
|
#input {
|
|
margin: 5px;
|
|
padding: 1px 5px;
|
|
/* border: 2px solid #E0E6ED; */
|
|
background-color: #242425;
|
|
color: #E0E6ED;
|
|
/* border-radius: 7px; */
|
|
}
|
|
|
|
#input:focus{
|
|
box-shadow: none;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 10px;
|
|
/* background-color: rgba(30 34 38, 0.75); */
|
|
border: none;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 5px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#scroll {
|
|
display: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#text {
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
#entry:selected {
|
|
/* background-color: #AEB3AD; */
|
|
border-left: 3px solid #E0E6ED;
|
|
color: #E0E6ED;
|
|
}
|
|
|
|
#entry {
|
|
padding: 5px 10px;
|
|
margin: 2px 0;
|
|
background-color: transparent;
|
|
}
|