-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
51 lines (51 loc) · 861 Bytes
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
body {
font-family: sans;
}
.results {
max-width: 800px;
}
.result {
position: relative;
word-wrap: break-word;
box-sizing: border-box;
margin-bottom: 30px;
}
.result__body {
padding-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
}
.result__title {
font-size: 1em;
margin: 0 0 4px 0;
}
.result__image {
float: right;
height: 130px;
width: 200px;
overflow: hidden;
position: relative;
border-radius: 4px;
border-radius: 3px;
margin-left: 16px;
margin-bottom: 0px;
}
.result__image__img {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
}
.result__body::after {
content: "";
display: block;
clear: both;
}
a {
text-decoration: none;
}