Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
ZigaoWang authored Aug 17, 2023
1 parent 0c4896b commit d97402e
Showing 1 changed file with 19 additions and 9 deletions.
28 changes: 19 additions & 9 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -89,26 +89,27 @@ body {
text-align: center; /* Center the text horizontally */
}

#upload-container {
#button-container {
position: absolute;
bottom: 20px;
right: 20px;
bottom: 42px;
display: flex;
z-index: 1;
align-items: center;
justify-content: center;
}

#image-upload {
display: none;
}

.button {
background-color: #3498db;
background-color: #ffffff;
color: white;
border: none;
border-radius: 3px;
border-radius: 100%;
cursor: pointer;
padding: 2px;
transition: background-color 0.3s ease;
transition: background-color 0.3s ease-in-out;
margin-right: 5px;
width: 25px;
height: 25px;
Expand All @@ -118,7 +119,11 @@ body {
}

.button:hover {
background-color: #2980b9;
background-color: rgba(255, 255, 255, 0.7);
}

.button:active {
background-color: rgba(255, 255, 255, 0.5);
}

.button-icon {
Expand Down Expand Up @@ -224,6 +229,11 @@ body {
}

#dazcheck-iframe {
width: 100px;
height: 100px;
width: 500px;
height: 500px;
}

#dazcalc-iframe {
width: 400px;
height: 600px;
}

0 comments on commit d97402e

Please sign in to comment.