Visual adjustments

This commit is contained in:
krateng 2021-12-20 02:29:22 +01:00
parent 5a2ec61d66
commit 77667e7066
2 changed files with 16 additions and 2 deletions

View File

@ -37,13 +37,13 @@ def setup():
for k in apikeys:
key = malojaconfig[k]
if key is False:
print("\t" + "Currently not using a " + apikeys[k] + " for image display.")
print("\t" + "Currently not using a " + col['red'](apikeys[k]) + " for image display.")
elif key is None or key == "ASK":
print("\t" + "Please enter your " + col['gold'](apikeys[k]) + ". If you do not want to use one at this moment, simply leave this empty and press Enter.")
key = prompt("",types=(str,),default=False,skip=SKIP)
malojaconfig[k] = key
else:
print("\t" + apikeys[k] + " found.")
print("\t" + col['green'](apikeys[k]) + " found.")
# OWN API KEY

View File

@ -138,6 +138,20 @@ a.hidelink:hover {
/** INPUTS **/
input[type="text"], input[type="number"] {
background-color: transparent;
border: 0px;
border-bottom: 1px solid var(--text-color);
color: white;
}
input:focus {
outline: 0;
background-color: var(--base-color-accent-light);
}