-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
47 lines (43 loc) · 889 Bytes
/
Copy pathstyles.css
File metadata and controls
47 lines (43 loc) · 889 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
41
42
43
44
45
46
47
html {
max-width: 70ch;
padding: 2em 1em;
margin: auto;
line-height: 1.75;
font-size: 1.25em;
}
.blogtitle {font-size: 2em; font-weight: bold;}
.date {font-style: italic;}
a {color: black;}
hr {margin-bottom: 10px;}
blockquote {
padding-left: 20px;
margin: 20px 0;
font-style: italic;
border-left: 5px solid #6F6D6D;
}
img {
max-width: 100%;
display: block;
margin: 0 auto;
max-height: 75vh;
border-radius: 12px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
.like-button-container {
margin-top: 20px;
text-align: center;
}
.like-button {
background-color: #f0f0f0;
border: none;
border-radius: 20px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s;
}
/* mobile */
@media (max-width: 768px) {
html {font-size: 1em;}
.site-footer {text-align: center;}
}