-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbloghome.css
60 lines (53 loc) · 985 Bytes
/
bloghome.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
#blog {
font-family: 'Montserrat', sans-serif;
}
#blog h1 {
text-align: center;
}
#blog #container {
display: flex;
height: 450px;
width: 100%;
justify-content: space-evenly;
background-color: #dcdcdc ;
border-radius: 8px;
}
#blog #container>div {
height: 50%;
border: 1px solid teal;
width : 25%;
margin: auto;
cursor: pointer;
}
#blog #container>div:nth-child(2) {
margin-left: 2px;
margin-right: 2px;
}
#blog #container>div+h1 {
font-size: 10px;
}
#blog .image {
width: 100%;
height: 100%;
cursor: pointer;
transition: 0.3s;
cursor: pointer;
}
#blog button {
display: block;
margin: auto;
justify-content: center;
padding :20px;
margin: auto;
margin-top: 20px;
border-radius: 8px;
border-color: 1px solid red;
background-color: red;
color: white;
cursor: pointer;
font-weight: 800;
border: 0px;
}
#blog a {
text-decoration: none;
}