create style.css
Browse files
style.css
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
}
|