lipu-sona/static/style.css

127 lines
1.6 KiB
CSS
Raw Normal View History

2020-03-13 15:35:20 +03:00
html {
min-height: 100%;
}
body {
2020-04-09 21:24:28 +03:00
background: #fafafa;
color:#4b4b4b;
2020-03-13 15:35:20 +03:00
min-height: 100%;
2020-04-11 20:54:04 +03:00
margin: 0;
2020-03-13 15:35:20 +03:00
}
2020-03-13 16:06:12 +03:00
body a {
2020-04-09 21:24:28 +03:00
color: #58aeee;
2020-03-13 16:06:12 +03:00
}
body a:visited {
2020-04-09 21:24:28 +03:00
color: #9569c8;
2020-03-13 16:06:12 +03:00
}
blockquote {
margin: 6pt;
padding-inline: 1em;
border-inline-start: 4px solid #9d9d9d;
}
p {
line-height: 1.5em;
}
table {
2020-04-11 20:54:04 +03:00
background: #fafafa;
border: 2px solid #9D9D9D;
border-collapse: collapse;
}
th, td {
border: 1px solid #d4d4d4;
padding: 4pt;
}
2020-03-13 16:06:12 +03:00
.header {
2020-04-09 21:24:28 +03:00
background: #4b4b4b;
color: #fafafa;
2020-03-13 16:06:12 +03:00
font-family: sans-serif;
min-height: 1px;
padding-block: 1em;
2020-03-13 16:06:12 +03:00
}
.header a, .header a:visited {
2020-04-09 21:24:28 +03:00
color: #fafafa;
2020-03-13 16:06:12 +03:00
}
.header h2, .header h3 {
2020-04-11 20:54:04 +03:00
display: inline;
2020-03-13 16:06:12 +03:00
}
.footer {
2020-04-09 21:24:28 +03:00
background: #d4d4d4;
color: #4b4b4b;
text-align: center;
2020-03-14 20:27:53 +03:00
font-family: sans-serif;
2020-03-13 16:06:12 +03:00
font-size: 0.8em;
2020-03-14 20:27:53 +03:00
padding: 12pt 6pt;
}
.content {
margin: 0 6pt;
2020-04-09 21:24:28 +03:00
color: #4b4b4b;
font-family: serif;
2020-03-14 20:27:53 +03:00
}
.info, .warning, .error {
margin: 6pt;
2020-04-11 20:54:04 +03:00
padding-inline-start: 0.5em;
2020-03-14 20:27:53 +03:00
font-family: sans-serif;
2020-03-13 16:06:12 +03:00
}
2020-03-14 09:03:43 +03:00
.info {
border-inline-start: 4px solid #44c55b;
2020-04-09 21:24:28 +03:00
background:#8deda7;
2020-03-14 09:03:43 +03:00
}
.warning {
border-inline-start: 4px solid #eaaf4d;
2020-04-09 21:24:28 +03:00
background:#f9d381;
2020-03-14 09:03:43 +03:00
}
.error {
border-inline-start: 4px solid #e75952;
2020-04-09 21:24:28 +03:00
background:#f9938a;
2020-03-14 09:03:43 +03:00
}
2020-03-14 20:27:53 +03:00
.spoiler {
border-inline-start: 4px solid #4b4b4b;
2020-04-09 21:24:28 +03:00
background: #d4d4d4;
color:#4b4b4b;
2020-03-14 20:27:53 +03:00
visibility: hidden;
}
2020-04-11 20:54:04 +03:00
@media screen and (min-width: 480px) {
.header {
padding-inline: 2em;
}
.content {
padding-inline: 1em;
}
.info, .warning, .error {
padding: 6pt;
padding-inline-start: 1em;
font-family: sans-serif;
}
}
@media screen and (min-width:720pt) {
html {
background:#d4d4d4;
}
body {
box-shadow: 0 0 0 1px #9d9d9d;
max-width: 720pt;
margin: auto;
}
}