2025-04-20 00:32:41 +10:00

44 lines
625 B
Go

package template
const StyleCSS = `
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;
}
`