diff options
| author | Arne Rief <arne.rief@gmail.com> | 2023-02-10 21:40:00 +0100 |
|---|---|---|
| committer | Arne Rief <arne.rief@gmail.com> | 2023-02-11 14:53:10 +0100 |
| commit | 5bab4502a098eb0e3b5a59b68bc9d8d23529ea55 (patch) | |
| tree | b8a737694d1217f7af9a6884720678a179cacbb0 /sass/components/_screenshot-container.scss | |
Desktop version
Diffstat (limited to 'sass/components/_screenshot-container.scss')
| -rw-r--r-- | sass/components/_screenshot-container.scss | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sass/components/_screenshot-container.scss b/sass/components/_screenshot-container.scss new file mode 100644 index 0000000..8c28462 --- /dev/null +++ b/sass/components/_screenshot-container.scss @@ -0,0 +1,15 @@ +@use "../abstracts/" as *; + +.project-screenshot { + border-radius: $radius-text-container; + outline: 5px solid $text-special-dark; + outline-offset: 1.5rem; + object-fit: scale-down; + width: 40%; + transition: transform 0.6s ease; + + &:hover { + transform: scale(1.2); + z-index: 100; + } +} |
