2025-04-20 21:34:52 +10:00

53 lines
765 B
Go

package bilinovel
const StyleCSS = `
@font-face {
font-family: "MI LANTING";
src: url(../Fonts/read.ttf);
}
.read-font {
font-family: "MI LANTING", serif !important;
}
body > div {
margin: 0 auto;
padding: 20px;
box-sizing: border-box;
background-color: #fff;
line-height: 1.6;
text-align: justify;
color: #333333;
}
h1 {
text-align: center;
font-size: 1.5em;
margin: 2em auto;
font-weight: bold;
color: #2c3e50;
}
p {
text-indent: 2em;
margin: 0.8em 0;
font-size: 1.1em;
}
hr {
border: none;
border-bottom: 1px solid #e0e0e0;
margin: 1.5em 20%;
}
img {
max-width: 80%;
height: auto;
display: block;
margin-left: auto !important;
margin-right: auto !important;
margin-top: 1em;
margin-bottom: 1em;
}
`