Spaces:
Running
on
Zero
Running
on
Zero
Upload style.css
Browse files
style.css
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.prose h1 {
|
2 |
+
font-family: 'Poppins', sans-serif;
|
3 |
+
font-size: 3rem;
|
4 |
+
font-weight: 700;
|
5 |
+
text-transform: uppercase;
|
6 |
+
letter-spacing: 2px;
|
7 |
+
text-align: center;
|
8 |
+
color: #222;
|
9 |
+
background: linear-gradient(45deg, #d4c9cc, #c4b8bb);
|
10 |
+
-webkit-background-clip: text;
|
11 |
+
-webkit-text-fill-color: transparent;
|
12 |
+
padding: 20px;
|
13 |
+
margin: 20px 0;
|
14 |
+
position: relative;
|
15 |
+
}
|
16 |
+
|
17 |
+
.prose h1::after {
|
18 |
+
content: "";
|
19 |
+
width: 60px;
|
20 |
+
height: 4px;
|
21 |
+
background: #d4c9cc;
|
22 |
+
display: block;
|
23 |
+
margin: 10px auto 0;
|
24 |
+
border-radius: 2px;
|
25 |
+
}
|