-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.css
55 lines (49 loc) · 922 Bytes
/
blog.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
.link{
text-align: right;
}
.upload_post_link{
text-align: center;
display: inline-block;
font-size: 3rem;
margin: 10px;
padding: 10px 20px;
background-color: #1e90ff;
color: white;
text-align: center;
border: 1px solid transparent;
transition: .90s ease;
}
.upload_post_link:hover{
border: 1px solid #1e90ff;
background-color: #ffffff;
color: #1e90ff;
}
.img{
margin-left: 10px;
}
.btn{
text-align: center;
margin-top: 5px;
margin-right: 10px;
padding-right: 20px;
background-color: #1e90ff;
color: white;
border: 1px solid rgb(0, 0, 0);
font-size: .95rem;
transition: 1s;
}
.btn:hover{
border: 1px solid #1e90ff;
background-color: white;
color: #1e90ff;
}
.blog{
width: 90%;
margin: auto;
display: flex;
border: 1px solid black;
padding: 20px;
}
.blog_content{
margin-left: 10px;
}