fffiloni commited on
Commit
bfa508b
โ€ข
1 Parent(s): 38d8a45

Create style.css

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