-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.css
More file actions
79 lines (68 loc) · 1.34 KB
/
Copy pathblog.css
File metadata and controls
79 lines (68 loc) · 1.34 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
html, body {
margin: 0;
font-size: 18px;
font-family: 'Montserrat', sans-serif;
/* background: rgb(245, 245, 245); */
--section-top-bottom-padding: 250px;
}
main{
/* padding-top: 50px; */
}
footer{
height: fit-content;
padding: 20px 0;
/* background: grey; */
background-color: #08346D;
color: white;
}
footer a{
color: white;
}
footer a:hover{
color: rgb(0, 255, 255);
}
.card-holder{
/* --height: 100vh; */
--bg: none;
--row-repeat: 4;
/* --row-repeat-size: 20%; */
--grid-item-1: 1/2/2/3;
--grid-item-2: 2/2/3/3;
--grid-item-3: 3/2/4/3;
--grid-item-4: 4/2/5/3;
text-align: center;
}
.flexy{
display: flex;
flex-direction: column;
}
.blog{
--bg: none;
--row-repeat: 3;
/* --row-repeat-size: 20%; */
--grid-item-1: 1/2/2/3;
--grid-item-2: 2/2/3/3;
--grid-item-3: 3/2/4/3;
--grid-item-4: 5/2/6/3;
text-align: center;
/* margin-top: 80px; */
/* color: white; */
background-color: white;
}
.blog-title{
text-align: left;
background: rgb(156, 168, 184);
/* background-color: #F4B10B; */
/* background-color: #F4610B; */
background-color: #1351A0;
padding: 50px 0;
color: white;
}
.blog-title h2{
font-size: 2em;
}
@media screen and (max-width: 768px){
.blog-title{
padding: 0;
}
}