Spaces:
Sleeping
Sleeping
Upload style.css (#3)
Browse files- Upload style.css (dfbf66839d742f228a96f2f043aeb6b532da5974)
Co-authored-by: Francesco Giannuzzo <[email protected]>
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 |
+
}
|