-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathblog.module.css
More file actions
79 lines (71 loc) · 1.58 KB
/
Copy pathblog.module.css
File metadata and controls
79 lines (71 loc) · 1.58 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
.blogpost_image {
filter: grayscale(1);
height: 180px;
display: flex;
align-items: center;
justify-content: center;
background: var(--ifm-bg-brand);
border-radius: 4px;
}
.blogpost_card {
height: 556px;
padding: var(--ifm-spacing-xl);
}
.blogpost_summary {
font-size: 14px;
font-weight: 300;
line-height: 150%;
letter-spacing: -0.154px;
text-align: justify;
margin-bottom: var(--ifm-spacing-sm);
height: 124px;
color: var(--ifm-text-color);
flex: 1;
}
.blogpost_header {
font-size: 16px;
font-weight: 600;
line-height: 150%;
letter-spacing: -0.198px;
height: 64px;
margin: var(--ifm-spacing-xl) 0;
color: var(--ifm-text-color);
}
.blogpost_footer {
margin-top: auto;
padding-top: var(--ifm-spacing-sm);
}
.blogpost_date {
font-size: 12px;
font-weight: 800;
line-height: 16px;
letter-spacing: -0.132px;
color: var(--ifm-color-accent-red);
}
.blogpost_date_dot {
display: inline-block;
width: 7px;
height: 7px;
border-radius: 50%;
background-color: var(--ifm-color-accent-red);
margin-right: 6px;
vertical-align: middle;
margin-bottom: 2px;
}
.blogpost_authors {
font-size: 12px;
font-weight: 400;
line-height: 16px;
color: var(--ifm-color-secondary-s3);
}
.search_input {
height: 34px;
width: 255px;
font-size: var(--ifm-font-size-small);
background-image: url(@site/static/img/icons/Search.svg);
background-repeat: no-repeat;
background-position: 8px;
border-radius: 8px;
padding: var(--ifm-spacing-xs) var(--ifm-spacing-lg) var(--ifm-spacing-xs) var(--ifm-spacing-lg);
margin: var(--ifm-spacing-lg) 0;
}