Skip to content

Commit

Permalink
增加按钮被禁用时的样式,优化mark、footer元素
Browse files Browse the repository at this point in the history
  • Loading branch information
XYZscratcher authored Nov 5, 2022
1 parent 5f011ea commit e0e5d72
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,7 @@ mark {

mark {
background-color: var(--warn);
padding: 2px 5px;
}

:is(input, textarea):focus {
Expand Down Expand Up @@ -312,10 +313,11 @@ input {

footer {
border-top: 1px solid var(--gray);
font-size: 0.8rem;
font-size: 0.9rem;
text-align: center;
/*width: 80%;*/
margin: auto;
color: #444;
color: #585858;
}

pre,
Expand All @@ -342,3 +344,8 @@ video {
dialog {
border: none;
}

.btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}

0 comments on commit e0e5d72

Please sign in to comment.