100 lines
1.4 KiB
CSS
100 lines
1.4 KiB
CSS
|
* {
|
||
|
transition: 0.2s;
|
||
|
}
|
||
|
|
||
|
window {
|
||
|
font-family: "IosevkaTerm NF";
|
||
|
font-size: 13px;
|
||
|
}
|
||
|
|
||
|
window {
|
||
|
margin: 0px;
|
||
|
border: 2px solid #00cdcd;
|
||
|
/*
|
||
|
background-color: #161925;
|
||
|
*/
|
||
|
background-color: transparent;
|
||
|
border-radius: 16px;
|
||
|
}
|
||
|
|
||
|
#input {
|
||
|
padding: 4px;
|
||
|
margin: 20px;
|
||
|
padding-left: 20px;
|
||
|
border: none;
|
||
|
color: #fff;
|
||
|
font-weight: bold;
|
||
|
background: linear-gradient(90deg, #00cdcd 0%, #008b8b 100%);
|
||
|
outline: none;
|
||
|
border-radius: 16px;
|
||
|
}
|
||
|
|
||
|
#input image {
|
||
|
color: #fff;
|
||
|
}
|
||
|
|
||
|
#input:focus {
|
||
|
border: none;
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
#inner-box {
|
||
|
margin: 20px;
|
||
|
margin-top: 0px;
|
||
|
border: none;
|
||
|
color: #00cdcd;
|
||
|
border-radius: 16px;
|
||
|
}
|
||
|
|
||
|
#inner-box * {
|
||
|
transition: none;
|
||
|
}
|
||
|
|
||
|
#outer-box {
|
||
|
margin: 0px;
|
||
|
border: none;
|
||
|
padding: 0px;
|
||
|
border-radius: 16px;
|
||
|
}
|
||
|
|
||
|
#scroll {
|
||
|
margin-top: 5px;
|
||
|
border: none;
|
||
|
border-radius: 16px;
|
||
|
margin-bottom: 5px;
|
||
|
}
|
||
|
|
||
|
#text:selected {
|
||
|
color: #fff;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
#img {
|
||
|
margin-right: 20px;
|
||
|
background: transparent;
|
||
|
}
|
||
|
|
||
|
#text {
|
||
|
margin: 0px;
|
||
|
border: none;
|
||
|
padding: 0px;
|
||
|
background: transparent;
|
||
|
}
|
||
|
|
||
|
#entry {
|
||
|
margin: 0px;
|
||
|
border: none;
|
||
|
border-radius: 16px;
|
||
|
background-color: transparent;
|
||
|
min-height:32px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
#entry:selected {
|
||
|
outline: none;
|
||
|
margin: 0px;
|
||
|
border: none;
|
||
|
border-radius: 16px;
|
||
|
background: linear-gradient(90deg, #00cdcd 0%, #008b8b 100%);
|
||
|
}
|