File tree Expand file tree Collapse file tree 4 files changed +582
-0
lines changed Expand file tree Collapse file tree 4 files changed +582
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments