-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
107 lines (88 loc) · 1.68 KB
/
Copy pathstyles.css
File metadata and controls
107 lines (88 loc) · 1.68 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
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
@import "fontsource/sora/index.css";
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
min-height: 100vh;
display: flex;
margin: auto;
justify-content: center;
align-items: center;
background-color: #FAFAF9;
font-family: "Sora", sans-serif;
font-size: 14px;
}
.page-wrapper {
display: flex;
flex-direction: column;
min-height: 100vh;
justify-content: center;
align-items: center;;
}
.container {
padding: 16px 16px 20px 16px;
background-color: #FFFFFF;
margin-top: 164px;
border-radius: 16px;
box-shadow: 8px 8px 20px 0px rgba(85, 85, 85, 0.08);
overflow: hidden;
transition: transform 0.3s ease;
}
.container:hover{
transform: translateY(-5px);
}
.section {
width: 336px;
text-align: justify;
}
.section img{
width: 336px;
height: 152px;
border-radius: 10px;
margin-bottom: 16px;
}
.tag {
display: inline-block;
background-color: #F2EAFD;
color: #6410CB;
font-size: 10px;
font-weight:700;
padding: 6px 16px;
border-radius: 999px;
margin-bottom: 16px;
}
h1 {
font-size: 18px;
font-weight: 700;
color: #20293A;
margin-bottom: 6px;
}
.blog-text {
font-size: 14px;
font-weight: 400;
margin-bottom: 20px;
color: #6b7280;
line-height: 1.4;
}
.blog-footer{
border-top: 1px solid #E5EAF0;
padding: 12px 0 0 0;
font-size: 12px;
color: #6b7280;
}
.author-info {
font-size: 14px;
text-align: center;
margin-top: 166px;
color: rgb(55, 65, 81);
position:relative;
margin-bottom: 65px;
}
.author-info a {
text-decoration: none;
}
.author-info a:hover {
text-decoration: underline;
}