Spaces:
Running
on
T4
Running
on
T4
Create style.css
Browse files
style.css
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#col-container, #col-container-2 {max-width: 510px; margin-left: auto; margin-right: auto;}
|
2 |
+
a {text-decoration-line: underline; font-weight: 600;}
|
3 |
+
div#record_btn > .mt-6 {
|
4 |
+
margin-top: 0!important;
|
5 |
+
}
|
6 |
+
div#record_btn > .mt-6 button {
|
7 |
+
width: 100%;
|
8 |
+
height: 40px;
|
9 |
+
}
|
10 |
+
.footer {
|
11 |
+
margin-bottom: 45px;
|
12 |
+
margin-top: 10px;
|
13 |
+
text-align: center;
|
14 |
+
border-bottom: 1px solid #e5e5e5;
|
15 |
+
}
|
16 |
+
.footer>p {
|
17 |
+
font-size: .8rem;
|
18 |
+
display: inline-block;
|
19 |
+
padding: 0 10px;
|
20 |
+
transform: translateY(10px);
|
21 |
+
background: white;
|
22 |
+
}
|
23 |
+
.dark .footer {
|
24 |
+
border-color: #303030;
|
25 |
+
}
|
26 |
+
.dark .footer>p {
|
27 |
+
background: #0b0f19;
|
28 |
+
}
|
29 |
+
.animate-spin {
|
30 |
+
animation: spin 1s linear infinite;
|
31 |
+
}
|
32 |
+
@keyframes spin {
|
33 |
+
from {
|
34 |
+
transform: rotate(0deg);
|
35 |
+
}
|
36 |
+
to {
|
37 |
+
transform: rotate(360deg);
|
38 |
+
}
|
39 |
+
}
|
40 |
+
#share-btn-container {
|
41 |
+
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;
|
42 |
+
}
|
43 |
+
#share-btn {
|
44 |
+
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;
|
45 |
+
}
|
46 |
+
#share-btn * {
|
47 |
+
all: unset;
|
48 |
+
}
|
49 |
+
#share-btn-container div:nth-child(-n+2){
|
50 |
+
width: auto !important;
|
51 |
+
min-height: 0px !important;
|
52 |
+
}
|
53 |
+
#share-btn-container .wrap {
|
54 |
+
display: none !important;
|
55 |
+
}
|