Created
April 11, 2024 14:41
-
-
Save fico308/fb382ad81d722e03f48424b1a6911738 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
/* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */ | |
margin: 0; | |
color: rgba(0, 0, 0, 0.87); | |
font-family: "Roboto", "Helvetica", "Arial", sans-serif; | |
font-weight: 400; | |
font-size: 1rem; | |
line-height: 1.5; | |
letter-spacing: 0.00938em; | |
background-color: #fff; | |
} | |
#connectTab { | |
display: flex; | |
flex-direction: column; | |
align-items: center; | |
justify-content: center; | |
height: 100vh; | |
} | |
button { | |
padding: 10px 20px; | |
font-size: 16px; | |
cursor: pointer; | |
border: none; | |
border-radius: 5px; | |
background-color: #007bff; | |
color: white; | |
} | |
header { | |
background-color: #1976d2; | |
color: white; | |
padding: 10px; | |
display: flex; | |
justify-content: space-between; | |
} | |
.title, | |
.address, | |
.chain, | |
#walletAddress { | |
margin: 0; | |
} | |
.header { | |
margin-bottom: 20px; | |
} | |
#operateTab { | |
display: flex; | |
flex-direction: column; | |
align-items: flex-start; | |
justify-content: flex-start; | |
height: 100vh; | |
width: auto; | |
padding: 10px; | |
} | |
#op { | |
margin-top: 20px; | |
margin-bottom: 20px; | |
font-size: 25px; | |
font-weight: bold; | |
} | |
hr { | |
margin-top: 10px; | |
margin-bottom: 10px; | |
border: none; | |
border-top: 1px solid #ccc; | |
} | |
.info { | |
margin-bottom: 10px; | |
} | |
.info-key { | |
font-weight: bold; | |
max-width: 50%; | |
min-width: 150px; | |
display: inline-block; | |
} | |
.info-value { | |
margin-left: 10px; | |
} | |
#signerKeyId, | |
#txHash { | |
margin-top: 10px; | |
} | |
#registerIssuerButton, | |
#registerContextButton, | |
#registerTypeButton { | |
margin-top: 10px; | |
} | |
.log-container { | |
/* width: 100%; */ | |
height: 200px; | |
overflow-y: auto; | |
border: 1px solid #ccc; | |
padding: 10px; | |
font-family: Arial, sans-serif; | |
/* background-color: black; */ | |
} | |
.log-container:empty { | |
max-height: 0; | |
} | |
.log-item { | |
margin-bottom: 5px; | |
color: black; | |
font-family: "Courier New", Courier, monospace; /* 使用等宽字体 */ | |
white-space: pre-wrap; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment