tridactyl/src/static/commandline.css

61 lines
1.1 KiB
CSS
Raw Normal View History

body {
overflow: hidden;
margin: 0;
}
input {
width: 100%;
padding: 0;
2017-10-22 11:31:09 +01:00
font-family: "monospace", "Courier New";
font-size: 10pt;
color: black;
border: unset;
/* we currently have a border from the completions */
/* border-top: solid 1px lightgray; */
padding-left: 0.5ex;
}
2017-10-22 15:24:56 +01:00
img {
height: 1em;
width: 1em;
}
#completions {
background: white;
color: black;
display: inline-block;
font-size: 10pt;
height: auto;
/* line-height: 1.5em; */
2017-10-22 11:31:09 +01:00
font-family: "monospace", "Courier New";
overflow: hidden;
white-space: pre;
width: 100%;
z-index: 9998;
border-top: 1px solid lightgray;
}
.url, a.url, a.url:link, a.url:visited {
background: white;
color: #d0ffd0 !important;
display: inline;
left: 50%;
overflow: hidden;
padding: 0 2px;
position: absolute;
text-decoration: none !important;
z-index: 9999;
}
/* Hide the URLs if the screen is small */
@media all and (max-width: 980px) {
.url, a.url, a.url:link, a.url:visited {
display: none;
}
}
a.url:hover {
cursor: pointer;
text-decoration: underline !important;
}