blob: 9558eb83fdda241eedc7203703bde4f3409985aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/*
* All Margins and sizes are custom for the ktor-logo.png file.
* You may need to modify it and find what works best for your case.
*/
.library-name a {
position: relative;
margin-left: 55px;
}
.library-name a::before {
content: '';
background-image: url('../images/ktor-logo.png');
background-repeat: no-repeat;
background-size: 125px 50px;
position: absolute;
width: 52px;
height: 50px;
top: -18px;
left: -62px;
}
|