Skip to content

Commit 352fc4d

Browse files
committed
OnHover of card lets it pop out
1 parent b02b6d9 commit 352fc4d

File tree

4 files changed

+14
-0
lines changed

4 files changed

+14
-0
lines changed

LinkDotNet.Blog.Web/Shared/ShortBlogPost.razor.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@
88
border-radius: 5px;
99
overflow: hidden;
1010
z-index: 0;
11+
transform: scale(1.0);
12+
transition: transform 0.35s;
1113
}
14+
15+
.blog-card:hover {
16+
transform: scale(1.1);
17+
transition: 1s ease;
18+
}
19+
1220
.blog-card a {
1321
color: inherit;
1422
}

LinkDotNet.Blog.sln.DotSettings.user

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2+
<s:String x:Key="/Default/Environment/Highlighting/HighlightingSourceSnapshotLocation/@EntryValue">C:\Users\stgi\AppData\Local\JetBrains\Rider2021.1\resharper-host\temp\Rider\vAny\CoverageData\_LinkDotNet.Blog.-1918380250\Snapshot\snapshot.utdcvr</s:String></wpf:ResourceDictionary>

Readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ This is a blog software completely written in C# / Blazor. The aim is to have it
44
## How does it work
55
The basic idea is that the content creator writes his posts in markdown language (like this readme file).
66
The markdown will then by translated to HTML and displayed to the client. This gives an easy entry to writing posts with all the flexibility markdown has.
7+
This also includes source code snippets. Right now only C# is highlighted properly but other languages can be extended easily as the highlighting is done via highlight.js.
8+
9+
## In Action
10+
[!overview](overview.gif)
711

812
## Setup
913
Just clone this repository and you are good to go. There are some settings you can tweak. The following chapter will guide you

overview.gif

1.66 MB
Loading

0 commit comments

Comments
 (0)