fffiloni commited on
Commit
54f67a3
1 Parent(s): 7fc61ff

Create style.css

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