-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog_styles.css
91 lines (90 loc) · 1.84 KB
/
blog_styles.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
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pattaya&family=Roboto+Mono&display=swap");
:root {
--primary-color: #eff6ff;
--secondary-color: #3b82f6;
}
* {
margin: 0;
background-color: var(--primary-color);
box-sizing: border-box;
scroll-behavior: smooth;
}
.container {
display: flex;
justify-content: center;
margin-top: 4rem;
flex-direction: column;
align-items: center;
gap: 2rem;
}
.blog-list__link {
display: flex;
font-size: 27px;
cursor: pointer;
color: var(--secondary-color);
margin-bottom: 0.5rem;
text-decoration: none;
}
.blog-list__paragraph {
margin-bottom: 2rem;
}
.blog-list__date {
margin-bottom: 0.5rem;
}
hr {
height: 0;
width: 60%;
}
#project_container {
display: flex;
justify-content: center;
margin-top: 1.5rem;
}
h3 {
color: var(--secondary-color);
}
.project_items_buttons {
padding: 10px 20px;
font-size: 15px;
border-radius: 10%;
background-color: var(--secondary-color);
color: var(--primary-color);
cursor: pointer;
margin-right: 10px;
text-decoration: none;
}
.project_items_buttons:hover {
font-weight: 500;
}
@media (max-width: 768px) {
.blog-list {
display: flex;
flex-direction: column;
justify-content: center;
font-size: 1.42rem;
margin-left: auto;
margin-right: auto;
margin-top: 3rem;
box-sizing: border-box;
}
.blog-list__link {
display: flex;
font-size: 3rem;
cursor: pointer;
color: var(--secondary-color);
margin-bottom: 0.5rem;
text-decoration: none;
margin-left: auto;
margin-right: auto;
}
.container {
margin-top: 3rem;
margin-left: 1.3rem;
margin-right: 0.6rem;
}
hr {
width: 100%;
}
}