70 lines
1.3 KiB
CSS
70 lines
1.3 KiB
CSS
* {
|
|
font-family: FontAwesome, "0x Proto Nerd Font Mono", Roboto, Helvetica, Arial, sans-serif;
|
|
font-size: 13px;
|
|
}
|
|
|
|
#input {
|
|
height: 5px;
|
|
padding-left: 5px;
|
|
/* background-color: rgba(123,207,224,0.98); */
|
|
color: #ffefeb;
|
|
background-color: #674e69;
|
|
border: 0px solid green;
|
|
border-bottom: 1px solid #ffefeb;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#window {
|
|
border-radius: 12px;
|
|
color: #ffefeb;
|
|
background-color: #674e69;
|
|
}
|
|
|
|
|
|
#outer-box {
|
|
}
|
|
|
|
#entry {
|
|
padding-left: 5px;
|
|
transition-property: background, color;
|
|
transition-duration: .3s;
|
|
}
|
|
|
|
|
|
#entry:selected {
|
|
padding-left: 15px;
|
|
background: radial-gradient(circle, rgba(215,212,255,0.98) 0%, rgba(250,219,247,0.98) 49%, rgba(123,207,224,0.98) 100%);
|
|
color: #674e69;
|
|
border-radius: 10px;
|
|
/* background-color: blue; */
|
|
}
|
|
|
|
/* #input { */
|
|
/* margin: 5px; */
|
|
/* border: 2px solid blue; */
|
|
/* background-color: blue; */
|
|
/* } */
|
|
|
|
#inner-box {
|
|
/* margin: 5px; */
|
|
/* border: 2px solid yellow; */
|
|
/* background-color: yellow; */
|
|
}
|
|
|
|
/* #outer-box { */
|
|
/* margin: 5px; */
|
|
/* border: 2px solid green; */
|
|
/* background-color: green; */
|
|
/* } */
|
|
|
|
/* #scroll { */
|
|
/* margin: 5px; */
|
|
/* border: 2px solid orange; */
|
|
/* background-color: orange; */
|
|
/* } */
|
|
|
|
#text {
|
|
/* margin: 5px; */
|
|
/* border: 2px solid cyan; */
|
|
/* background-color: cyan; */
|
|
}
|