-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (67 loc) · 1.73 KB
/
index.html
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
<html>
<head>
<style>
/*!
* Bootstrap v5.3.0-alpha3 (https://getbootstrap.com/)
* Copyright 2011-2023 The Bootstrap Authors
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
#myCurrencyConverter{
border: 1px solid #000;
width: 128px;
height: 128px;
}
/*toast enable*/
#myCurrencyConverter .toast-enable {
position: relative;
display: flex;
flex-wrap: wrap;
z-index: 1091;
}
#myCurrencyConverter .toast-enable .btn-enable {
font-size: 80px;
line-height: 80px;
width: 100%;
height: 100%;
margin: auto;
vertical-align: middle;
}
#myCurrencyConverter .btn-enable {
box-sizing: content-box;
/* width: 1em;
height: 1em; */
padding: 0.25em 0.25em;
color: #fff;
/* border: 0; */
border-radius: 0.375rem;
background-color: rgb(251, 99, 64);
box-shadow: rgba(50, 50, 93, 0.11) 0px 4px 6px, rgba(0, 0, 0, 0.08) 0px 1px 3px;
border-color: rgb(251, 99, 64);
/* opacity: 0.5; */
}
#myCurrencyConverter .btn-enable:hover {
text-decoration: none;
opacity: 1;
color: rgb(255, 255, 255);
background-color: rgb(250, 68, 27);
border-color: rgb(250, 58, 14);
}
#myCurrencyConverter .btn-enable:hover {
transform: translateY(-1px);
}
#myCurrencyConverter .btn-enable:focus {
outline: 0;
box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
opacity: 1;
}
</style>
</head>
<body>
<div id="myCurrencyConverter">
<div class="toast-enable">
<button type="button" class="btn-enable" title="Activate My Currency Converter Extension">⥄</button>
</div>
</div>
</body>
<script src="index.js"></script>
</html>