-
Notifications
You must be signed in to change notification settings - Fork 318
Expand file tree
/
Copy patharticle.css
More file actions
69 lines (58 loc) · 1 KB
/
article.css
File metadata and controls
69 lines (58 loc) · 1 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
@import "../../../data/styles.css";
.article {
display: flex;
}
.article a {
text-decoration: none;
}
.article-left-side {
min-width: 20%;
max-width: 20%;
}
.article-right-side {
flex-basis: 80%;
min-width: 700px;
mix-blend-mode: normal;
border-radius: 20px;
opacity: 0.8;
padding: 30px;
}
.article-right-side:hover {
background: var(--hover-background);
opacity: 1;
transition: background-color 0.3s ease-in-out;
}
.article-date {
padding-top: 30px;
font-size: 15px;
color: var(--tertiary-color);
}
.article-title {
color: var(--secondary-color);
font-size: 16px;
font-weight: 600;
}
.article-description {
padding-top: 10px;
font-size: 12px;
color: var(--secondary-color);
font-weight: 480;
line-height: 25px;
}
.article-link {
padding-top: 10px;
font-size: 14px;
color: var(--link-color);
font-weight: 700;
}
@media (max-width: 1024px) {
.article-left-side {
min-width: 10%;
max-width: 10%;
}
.article-right-side {
flex-basis: 90%;
min-width: 85%;
max-width: 85%;
}
}