mirror of
https://github.com/mrrpnya/lipu-sona.git
synced 2025-02-13 16:44:39 +00:00
132 lines
1.7 KiB
CSS
132 lines
1.7 KiB
CSS
html {
|
|
min-height: 100%;
|
|
}
|
|
|
|
body {
|
|
background: #fefefe;
|
|
color:#221f31;
|
|
min-height: 100%;
|
|
margin: 0;
|
|
}
|
|
|
|
body a, body a:visited {
|
|
color: #404a68;
|
|
}
|
|
|
|
body a:visited {
|
|
color: #678fcb;
|
|
}
|
|
|
|
blockquote {
|
|
margin: 6pt;
|
|
padding-inline: 1em;
|
|
border-inline-start: 4px solid #9a93b7;
|
|
}
|
|
|
|
p {
|
|
line-height: 1.5em;
|
|
}
|
|
|
|
table {
|
|
background: #fefefe;
|
|
border: 2px solid #9a93b7;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
th, td {
|
|
border: 1px solid #9a93b7;
|
|
padding: 4pt;
|
|
}
|
|
|
|
.header {
|
|
background: #221f31;
|
|
color: #fefefe;
|
|
font-family: sans-serif;
|
|
min-height: 1px;
|
|
padding-block: 1em;
|
|
|
|
}
|
|
|
|
.header a, .header a:visited {
|
|
color: #fefefe;
|
|
}
|
|
|
|
.header h2, .header h3 {
|
|
display: inline;
|
|
}
|
|
|
|
.footer {
|
|
background: #404a68;
|
|
color: #fefefe;
|
|
text-align: center;
|
|
font-family: sans-serif;
|
|
font-size: 0.8em;
|
|
padding: 12pt 6pt;
|
|
}
|
|
|
|
.footer a, .footer a:visited {
|
|
color: #8be1e0;
|
|
}
|
|
|
|
.content {
|
|
margin: 0 6pt;
|
|
color: #221f31;
|
|
font-family: serif;
|
|
}
|
|
|
|
.info, .warning, .error {
|
|
margin: 6pt;
|
|
padding-inline-start: 0.5em;
|
|
font-family: sans-serif;
|
|
}
|
|
|
|
.info {
|
|
border-inline-start: 4px solid #316f23;
|
|
background:#7cc264;
|
|
color: #316f23;
|
|
}
|
|
|
|
.warning {
|
|
border-inline-start: 4px solid #9b6e2d;
|
|
background:#f5ee9b;
|
|
color:#543516;
|
|
}
|
|
|
|
.error {
|
|
border-inline-start: 4px solid #a14d3f;
|
|
background:#ea9182;
|
|
color:#543516;
|
|
}
|
|
|
|
.spoiler {
|
|
border-inline-start: 4px solid #221f31;
|
|
background: #9a93b7;
|
|
color:#221f31;
|
|
visibility: hidden;
|
|
}
|
|
|
|
@media screen and (min-width: 480px) {
|
|
|
|
.header {
|
|
padding-inline: 2em;
|
|
}
|
|
.content {
|
|
padding-inline: 1em;
|
|
}
|
|
|
|
.info, .warning, .error {
|
|
padding: 6pt;
|
|
padding-inline-start: 1em;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width:720pt) {
|
|
html {
|
|
background:#9a93b7;
|
|
}
|
|
body {
|
|
box-shadow: 0 0 0 1px #404a68;
|
|
max-width: 720pt;
|
|
margin: auto;
|
|
}
|
|
}
|