forked from realaravinth/libmedium
76 lines
863 B
CSS
76 lines
863 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-family: "Times New Roman", Times, serif;
|
|
}
|
|
|
|
a {
|
|
color: rgb(0, 86, 179);
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:visited {
|
|
color: rgb(0, 86, 179);
|
|
}
|
|
|
|
a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
html {
|
|
color: #333;
|
|
font-family: Georgia, "Times New Roman", Times, serif;
|
|
/* font-size: 1.25rem; */
|
|
font-size: 18px;
|
|
line-height: 1.55rem;
|
|
}
|
|
|
|
body {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
main {
|
|
width: 35em;
|
|
margin: auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
p {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
img {
|
|
margin: auto;
|
|
max-width: 80%;
|
|
display: block;
|
|
}
|
|
|
|
code {
|
|
font-family: monospace;
|
|
font-size: 15px;
|
|
}
|
|
|
|
@media screen and (max-width: 1200px) {
|
|
html {
|
|
font-size: 1rem;
|
|
line-height: 1.34rem;
|
|
}
|
|
main {
|
|
width: 90%;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
}
|
|
}
|