Prepare repository for merge

This commit is contained in:
Angelos Chalaris
2023-05-01 22:51:44 +03:00
parent 334b4dd6f8
commit e49fc829dd
100 changed files with 0 additions and 593 deletions

View File

@@ -0,0 +1,26 @@
---
title: Etched text
type: snippet
tags: [visual]
cover: memories-of-pineapple-2
dateModified: 2020-12-30T15:37:37+02:00
---
Creates an effect where text appears to be "etched" or engraved into the background.
- Use `text-shadow` to create a white shadow offset `0px` horizontally and `2px` vertically from the origin position.
- The background must be darker than the shadow for the effect to work.
- The text color should be slightly faded to make it look like it's engraved/carved out of the background.
```html
<p class="etched-text">I appear etched into the background.</p>
```
```css
.etched-text {
text-shadow: 0 2px white;
font-size: 1.5rem;
font-weight: bold;
color: #b8bec5;
}
```