-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathread.css
More file actions
40 lines (37 loc) · 840 Bytes
/
read.css
File metadata and controls
40 lines (37 loc) · 840 Bytes
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
#like-btn{
background-color: transparent;
border: none;
}
.blog-head{
/* text-transform:uppercase; */
text-align: center;
text-shadow:
0 0 10px gray, /* Inner glow */
0 0 20px gray, /* Outer glow */
0 0 30px gray; /* Extended outer glow */
}
#blog-author{color: rgb(166, 0, 0);}
#blog-author.dark-mode{color: rgb(255, 255, 156);}
.blog-content{
white-space: pre-wrap;
line-height: 33px;
font-size: 20px;
width: 60%;
background-color: blanchedalmond;
border-radius: 5px;
padding: 10px;
color: black;
word-spacing: 7px;
}
.blog-content.dark-mode{
background-color: rgb(0, 83, 56);
color: white;
}
@media(max-width:700px){
.blog-content{
font-size: 15px;
line-height: 23px;
width: 93%;
word-spacing: 5px;
}
}