-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (99 loc) · 1.73 KB
/
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
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
* {
margin: 0;
padding:0;
box-sizing: border-box;
}
body {
background-color: #F4D04E;
}
.blog-card-flex {
display:flex;
justify-content:center;
align-items:center;
height: 100vh;
}
.blog-card {
display: flex;
flex-direction: column;
justify-content: flex-start;
background-color: #fff;
row-gap: 20px;
padding: 23px;
border: 1px solid #111;
border-radius: 20px;
color: #111111;
font-family:"Figtree", sans-serif;
box-shadow: 8px 8px #000;
}
.blog-card-banner-container {
max-width: 366px;
}
.blog-card-banner {
border-radius: 13px;
width: 100%;
}
.blog-card-main {
max-width: 336px;
display: flex;
flex-direction: column;
gap: 11px;
line-height: 150%;
}
.blog-card-tag {
font-size: 0.875rem;
font-weight: 800;
padding: 3px 12px;
background-color: #F4D04E;
border-radius: 4px;
width: min-content;
}
.blog-card-date {
font-size: 0.875em;
font-weight: 500;
}
.blog-card-title {
margin: 5px 0px;
font-size: 1.5em;
font-weight: 800;
color: #111111;
text-decoration: none;
}
.blog-card-content {
font-size: 1rem;
color: #6B6B6B;
font-weight: 500;
margin-top: 3px;
}
.blog-card-footer {
display: flex;
align-items: center;
gap: 12px;
margin-top: 2px;
}
.blog-card-pp {
max-width: 32px;
}
.blog-card-author {
font-size: 0.875rem;
font-weight: 800;
}
.blog-card-title:hover {
color: #F4D04E;
}
@media screen and (max-width: 375px) {
.blog-card{
margin: 12px;
}
.blog-card-tag {
font-size: 0.75rem;
}
.blog-card-date {
font-size: 0.75em;
}
.blog-card-title {
font-size: 1.25em;
}
.blog-card-content {
font-size: 0.875rem;
}
}