-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_articles.css
More file actions
48 lines (43 loc) · 1 KB
/
style_articles.css
File metadata and controls
48 lines (43 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
.article-content{
margin: 5%;
display: flex;
flex-direction: column;
align-items: center;
}
#author-date{
font-family: 'Montserrat';
text-align: right;
font-size: clamp(0.8rem, 1vw, 2rem);
padding-right: 2rem;
}
.article-body-container{
max-width: 900px;
width: 100%;
background: rgba(0, 0, 0, 0.1);
backdrop-filter: blur(20px);
padding: var(--space-20);
margin: var(--space-12);
height: fit-content;
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: var(--radius-lg);
display: block;
font-family: "Montserrat";
font-size: calc(var(--font-size-base) * 0.95);
}
.article-image-container {
padding: var(--space-12);
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
text-align: center;
padding-bottom: 20px;
}
.image_in_article{
margin: 5%;
max-width: 400px;
width: 90%;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border-radius: var(--radius-lg);
}