29 lines
564 B
CSS
29 lines
564 B
CSS
#info_bar{
|
|
background-color:#F1E6D9;
|
|
padding: 5px;
|
|
font-size: 11pt;
|
|
}
|
|
#info_bar > button {
|
|
transform: scale(0.9);
|
|
background-color: transparent;
|
|
}
|
|
#info_bar > button:hover {
|
|
background-color: #00000010;
|
|
}
|
|
#info_bar > button:active {
|
|
background-color: #00000020;
|
|
}
|
|
textview {
|
|
border-radius: 7px;
|
|
padding: 7px 8px;
|
|
background: #E6E6E6;
|
|
outline-offset: 2px;
|
|
outline: 2px solid #81ABDF00;
|
|
transition-duration: .15s;
|
|
transition-timing-function: ease-in-out;
|
|
}
|
|
textview:focus-within {
|
|
outline-offset: -2px;
|
|
outline: 2px solid #81ABDF;
|
|
}
|