-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathinstall.css
More file actions
102 lines (88 loc) · 2.01 KB
/
Copy pathinstall.css
File metadata and controls
102 lines (88 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* Styling the install button for pde:// URI protocol */
.shield-button {
display: flex;
align-items: center;
background-color: #ffffff;
border: 2px solid #cccccc;
border-radius: 50px;
padding: 8px 20px 8px 15px; /* top right bottom left */
cursor: pointer;
transition: border-color 0.3s, background-color 0.3s;
text-decoration: none;
font-weight: bold;
}
.shield-button:hover {
border-color: #a9a9a9;
background-color: #f2f2f2;
}
.shield-button:active {
border-color: #a9a9a9;
background-color: #e0e0e0;
}
.btn_logo-container {
border-radius: 5px;
padding: 5px;
margin-right: 5px;
}
.btn_logo {
width: 30px;
height: 30px;
}
.btn_text-container {
color: #333333;
}
.btn_text {
margin-top: 1rem;
font-size: 1rem;
color: #6f6f6f;
}
.btn_tooltip {
position: relative;
display: inline-block;
cursor: pointer;
}
.btn_tooltip .btn_tooltiptext {
visibility: hidden;
width: 250px;
background-color: #555;
color: #fff;
text-align: left;
border-radius: 6px;
padding: 8px 10px 10px 25px; /* top right bottom left */
position: absolute;
z-index: 1;
bottom: 125%; /* Position the tooltip above the button */
left: 50%;
margin-left: -125px; /* Center the tooltip */
opacity: 0;
transition: opacity 0.3s;
}
.btn_tooltip .btn_tooltiptext::before {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -10px;
border-width: 10px;
border-style: solid;
border-color: #555 transparent transparent transparent;
}
/* link in tooltip: no underline, light blue, no clicked color */
.btn_tooltip .btn_tooltiptext a {
text-decoration: none;
color: #8ec8f7;
}
.btn_tooltip.show .btn_tooltiptext {
visibility: visible;
opacity: 1;
}
@keyframes ellipsis {
0% { content: " . "; }
33% { content: " .. "; }
66% { content: " ..."; }
}
.ellipsis::after {
content: "";
display: inline-block;
animation: ellipsis 1.2s infinite;
}