Skip to content

Commit e742f22

Browse files
Deployed on 2025-02-06 13:20:23
1 parent ac58f24 commit e742f22

File tree

4 files changed

+570
-0
lines changed

4 files changed

+570
-0
lines changed

custom.css

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
.tooltip .tooltiptext {
2+
visibility: hidden;
3+
width: 200px;
4+
background-color: black;
5+
color: #fff;
6+
text-align: center;
7+
border-radius: 6px;
8+
padding: 5px;
9+
position: absolute;
10+
z-index: 1;
11+
bottom: 125%;
12+
left: 50%;
13+
margin-left: -100px;
14+
opacity: 0;
15+
transition: opacity 0.3s;
16+
}
17+
18+
.tooltip:hover .tooltiptext {
19+
visibility: visible;
20+
opacity: 1;
21+
}
22+
23+
.square-button-failed {
24+
width: 80px;
25+
height: 80px;
26+
background-color: #e41a1c; /* red color */
27+
color: white;
28+
display: flex;
29+
align-items: center;
30+
justify-content: center;
31+
border-radius: 8px;
32+
position: relative;
33+
cursor: pointer;
34+
}
35+
36+
.square-button-success {
37+
width: 80px;
38+
height: 80px;
39+
background-color: #4daf4a; /* Green color */
40+
color: white;
41+
display: flex;
42+
align-items: center;
43+
justify-content: center;
44+
border-radius: 8px;
45+
position: relative;
46+
cursor: pointer;
47+
}
48+
49+
.square-button- {
50+
width: 80px;
51+
height: 80px;
52+
background-color: hsl(210, 3%, 26%);
53+
color: white;
54+
display: flex;
55+
align-items: center;
56+
justify-content: center;
57+
border-radius: 8px;
58+
position: relative;
59+
cursor: pointer;
60+
}
61+
62+
.banner {
63+
background-color: #0094ca;
64+
color: white;
65+
padding: 10px;
66+
text-align: center;
67+
}
68+
69+
.ess-button {
70+
background-color: #0094ca;
71+
}

ess.png

2.71 KB
Loading

favicon.ico

6.37 KB
Binary file not shown.

0 commit comments

Comments
 (0)