moved to root

This commit is contained in:
Andrew Zambazos
2026-06-11 14:09:53 +12:00
parent cbf3f085d0
commit a2784f684b
2151 changed files with 0 additions and 0 deletions
+57
View File
@@ -0,0 +1,57 @@
* { overflow: hidden; user-select: none; -webkit-user-select: none; }
body {
margin: 0;
padding: 0;
font-family: "Segoe UI", -apple-system, Arial, sans-serif;
font-size: 14px;
background: white;
}
#bar {
background: rgba(236, 236, 236, 1.0);
height: 32px;
padding: 4px 9px;
border-bottom: 0.8px solid rgb(200, 200, 200);
cursor: default;
display: flex;
}
#address {
border-radius: 24px;
border: none;
height: 32px;
flex: 1;
font-size: 14px;
color: #667;
background-color: #FAFAFA;
display: inline-block;
padding: 2px 16px 2px 16px;
margin-top: 0px;
margin-left:9px;
user-select: auto !important;
-webkit-user-select: text !important;
}
#address:focus {
background-color: #FFFFFF;
color: #223;
}
.icon {
cursor: default;
fill: rgba(90, 90, 90, 1.0);
vertical-align: top;
margin-top: 4px;
margin-left:9px;
padding: 2px;
height: 22px;
}
#back {
margin-left:0px;
}
.icon.disabled {
fill: rgba(200, 200, 200, 1.0);
}
svg#icon_defs path {
fill: inherit;
}
.icon:not(.disabled):hover {
background-color: rgba(220, 220, 220, 1.0);
border-radius: 2px;
}