Skip to content

Commit

Permalink
Deployed on 2025-02-04 21:12:36
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 4, 2025
1 parent 14f07e6 commit 8a7bd24
Show file tree
Hide file tree
Showing 4 changed files with 582 additions and 0 deletions.
71 changes: 71 additions & 0 deletions custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
.tooltip .tooltiptext {
visibility: hidden;
width: 200px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 6px;
padding: 5px;
position: absolute;
z-index: 1;
bottom: 125%;
left: 50%;
margin-left: -100px;
opacity: 0;
transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}

.square-button-failed {
width: 80px;
height: 80px;
background-color: #e41a1c; /* red color */
color: white;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
position: relative;
cursor: pointer;
}

.square-button-success {
width: 80px;
height: 80px;
background-color: #4daf4a; /* Green color */
color: white;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
position: relative;
cursor: pointer;
}

.square-button- {
width: 80px;
height: 80px;
background-color: hsl(210, 3%, 26%);
color: white;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
position: relative;
cursor: pointer;
}

.banner {
background-color: #0094ca;
color: white;
padding: 10px;
text-align: center;
}

.ess-button {
background-color: #0094ca;
}
Binary file added ess.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added favicon.ico
Binary file not shown.
Loading

0 comments on commit 8a7bd24

Please sign in to comment.