Update style.css
Browse files
style.css
CHANGED
@@ -5,48 +5,79 @@ div#sound-output {
|
|
5 |
height: 120px;
|
6 |
}
|
7 |
.footer {
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
|
|
26 |
.animate-spin {
|
27 |
-
|
28 |
}
|
|
|
29 |
@keyframes spin {
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
}
|
|
|
37 |
#share-btn-container {
|
38 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
}
|
|
|
|
|
|
|
|
|
|
|
40 |
#share-btn {
|
41 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
}
|
|
|
43 |
#share-btn * {
|
44 |
-
|
45 |
}
|
|
|
46 |
#share-btn-container div:nth-child(-n+2){
|
47 |
-
|
48 |
-
|
49 |
}
|
|
|
50 |
#share-btn-container .wrap {
|
51 |
-
|
|
|
|
|
|
|
|
|
52 |
}
|
|
|
5 |
height: 120px;
|
6 |
}
|
7 |
.footer {
|
8 |
+
margin-bottom: 45px;
|
9 |
+
margin-top: 10px;
|
10 |
+
text-align: center;
|
11 |
+
border-bottom: 1px solid #e5e5e5;
|
12 |
+
}
|
13 |
+
|
14 |
+
.footer>p {
|
15 |
+
font-size: .8rem;
|
16 |
+
display: inline-block;
|
17 |
+
padding: 0 10px;
|
18 |
+
transform: translateY(28px);
|
19 |
+
background: white;
|
20 |
+
}
|
21 |
+
.dark .footer {
|
22 |
+
border-color: #303030;
|
23 |
+
}
|
24 |
+
.dark .footer>p {
|
25 |
+
background: #0b0f19;
|
26 |
+
}
|
27 |
+
|
28 |
.animate-spin {
|
29 |
+
animation: spin 1s linear infinite;
|
30 |
}
|
31 |
+
|
32 |
@keyframes spin {
|
33 |
+
from {
|
34 |
+
transform: rotate(0deg);
|
35 |
+
}
|
36 |
+
to {
|
37 |
+
transform: rotate(360deg);
|
38 |
+
}
|
39 |
}
|
40 |
+
|
41 |
#share-btn-container {
|
42 |
+
display: flex;
|
43 |
+
padding-left: 0.5rem !important;
|
44 |
+
padding-right: 0.5rem !important;
|
45 |
+
background-color: #000000;
|
46 |
+
justify-content: center;
|
47 |
+
align-items: center;
|
48 |
+
border-radius: 9999px !important;
|
49 |
+
max-width: 13rem;
|
50 |
}
|
51 |
+
|
52 |
+
#share-btn-container:hover {
|
53 |
+
background-color: #060606;
|
54 |
+
}
|
55 |
+
|
56 |
#share-btn {
|
57 |
+
all: initial;
|
58 |
+
color: #ffffff;
|
59 |
+
font-weight: 600;
|
60 |
+
cursor:pointer;
|
61 |
+
font-family: 'IBM Plex Sans', sans-serif;
|
62 |
+
margin-left: 0.5rem !important;
|
63 |
+
padding-top: 0.5rem !important;
|
64 |
+
padding-bottom: 0.5rem !important;
|
65 |
+
right:0;
|
66 |
}
|
67 |
+
|
68 |
#share-btn * {
|
69 |
+
all: unset;
|
70 |
}
|
71 |
+
|
72 |
#share-btn-container div:nth-child(-n+2){
|
73 |
+
width: auto !important;
|
74 |
+
min-height: 0px !important;
|
75 |
}
|
76 |
+
|
77 |
#share-btn-container .wrap {
|
78 |
+
display: none !important;
|
79 |
+
}
|
80 |
+
|
81 |
+
#share-btn-container.hidden {
|
82 |
+
display: none!important;
|
83 |
}
|