fffiloni commited on
Commit
cbf2a89
β€’
1 Parent(s): 2c0128b

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +51 -0
style.css ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #col-container {max-width: 510px; margin-left: auto; margin-right: auto;}
2
+ a {text-decoration-line: underline; font-weight: 600;}
3
+ div#music-output .h-full {
4
+ min-height: 5rem;
5
+ }
6
+ .footer {
7
+ margin-bottom: 45px;
8
+ margin-top: 10px;
9
+ text-align: center;
10
+ border-bottom: 1px solid #e5e5e5;
11
+ }
12
+ .footer>p {
13
+ font-size: .8rem;
14
+ display: inline-block;
15
+ padding: 0 10px;
16
+ transform: translateY(10px);
17
+ background: white;
18
+ }
19
+ .dark .footer {
20
+ border-color: #303030;
21
+ }
22
+ .dark .footer>p {
23
+ background: #0b0f19;
24
+ }
25
+ .animate-spin {
26
+ animation: spin 1s linear infinite;
27
+ }
28
+ @keyframes spin {
29
+ from {
30
+ transform: rotate(0deg);
31
+ }
32
+ to {
33
+ transform: rotate(360deg);
34
+ }
35
+ }
36
+ #share-btn-container {
37
+ display: flex; padding-left: 0.5rem !important; padding-right: 0.5rem !important; background-color: #000000; justify-content: center; align-items: center; border-radius: 9999px !important; width: 13rem;
38
+ }
39
+ #share-btn {
40
+ all: initial; color: #ffffff;font-weight: 600; cursor:pointer; font-family: 'IBM Plex Sans', sans-serif; margin-left: 0.5rem !important; padding-top: 0.25rem !important; padding-bottom: 0.25rem !important;right:0;
41
+ }
42
+ #share-btn * {
43
+ all: unset;
44
+ }
45
+ #share-btn-container div:nth-child(-n+2){
46
+ width: auto !important;
47
+ min-height: 0px !important;
48
+ }
49
+ #share-btn-container .wrap {
50
+ display: none !important;
51
+ }