-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlog.css
More file actions
120 lines (98 loc) · 2.13 KB
/
Copy pathBlog.css
File metadata and controls
120 lines (98 loc) · 2.13 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
.blog {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
min-height: 100vh;
padding: 2rem;
overflow-x: hidden;
}
.blog--header {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
margin: 1rem;
}
.blog--header h1 {
margin-bottom: 40px;
font-size: 3.5rem;
font-family: var(--primaryFont);
}
.blog--body {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.blog--bodyContainer {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
gap: 4.5rem;
}
.blog--viewAll {
width: 100%;
margin-top: 1rem;
padding: 2rem;
display: flex;
align-items: center;
justify-content: flex-end;
}
.blog--viewAll a button {
outline: none;
border: none;
width: 150px;
height: 48px;
display: flex;
align-items: center;
justify-content: space-between;
text-transform: inherit;
border-radius: 45px;
font-size: 1.05rem;
font-family: var(--primaryFont);
font-weight: 500;
padding-left: 1.5rem;
cursor: pointer;
}
@media (min-width: 992px) and (max-width: 1380px) {
}
@media screen and (max-width: 992px) {
.blog--bodyContainer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
}
}
@media screen and (max-width: 800px) {
.blog--header h1 {
font-size: 3rem;
margin-bottom: 30px;
}
}
@media screen and (max-width: 600px) {
.blog--header h1 {
font-size: 2.5rem;
margin-bottom: 20px;
}
.blog--viewAll {
position: relative;
margin-top: 2.5rem;
}
.blog--viewAll a {
position: absolute;
left: 50%;
transform: translateX(-50%);
}
}
@media screen and (max-width: 400px) {
}
@media only screen and (min-device-width: 320px) and (max-device-width:
480px) and (-webkit-device-pixel-ratio: 2) and (device-aspect-ratio: 2/3) {
}
@media only screen and (device-width: 768px) {
}