summaryrefslogtreecommitdiffstats
path: root/sass/partials/_post.scss
blob: b88812aa945681a8246c4168d1d2e26497bfa48b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
article{
	.entry{
		footer{
			.cat{
				font-size: 13px;
				position: relative;
				padding-left: 25px;
				&:before{
					font-family: $symbol;
					padding-right: 10px;
					position: absolute;
					top: 0;
					left: 0;
					content: ",";
					font-size: 14px;
					@include user-select(none);
				}
			}
		}
	}
}