szurubooru/public_html/css/core.css

125 lines
1.8 KiB
CSS
Raw Normal View History

2014-08-31 23:22:56 +02:00
body {
2015-06-28 12:25:35 +02:00
margin: 0;
padding: 0;
text-align: center;
background: #fff;
color: #555;
font-family: 'Droid Sans', sans-serif;
font-size: 15px;
overflow-y: scroll;
2014-08-31 23:22:56 +02:00
}
2015-01-26 08:50:25 +01:00
@media all and (max-width: 40em) {
2015-06-28 12:25:35 +02:00
body {
font-size: 13px;
}
2015-01-26 08:50:25 +01:00
}
2014-10-04 14:06:44 +02:00
h1 {
2015-06-28 12:25:35 +02:00
font-weight: normal;
font-size: 160%;
2014-10-04 14:06:44 +02:00
}
2014-09-07 09:57:01 +02:00
h2 {
2015-06-28 12:25:35 +02:00
font-variant: small-caps;
font-weight: normal;
2014-09-07 09:57:01 +02:00
}
2014-10-07 21:15:26 +02:00
h3 {
2015-06-28 12:25:35 +02:00
font-weight: normal;
font-size: 120%;
2014-10-07 21:15:26 +02:00
}
2014-12-07 13:43:15 +01:00
small {
2015-06-28 12:25:35 +02:00
font-size: 87%;
2014-12-07 13:43:15 +01:00
}
2014-08-31 23:22:56 +02:00
#middle {
2015-06-28 12:25:35 +02:00
padding: 0 2em;
position: relative;
2014-08-31 23:22:56 +02:00
}
#content {
2015-06-28 12:25:35 +02:00
margin: 1.5em 0;
padding: 0;
display: inline-block;
text-align: left;
width: 100%;
}
2014-08-31 23:22:56 +02:00
a {
2015-06-28 12:25:35 +02:00
color: #24A2DD;
text-decoration: none;
cursor: pointer; /* for links without [href] */
2014-08-31 23:22:56 +02:00
}
a:focus {
2015-06-28 12:25:35 +02:00
outline: 2px solid #64C2ED;
}
a:hover {
2015-06-28 12:25:35 +02:00
color: #34B2ED;
}
hr {
2015-06-28 12:25:35 +02:00
margin: 1.5em auto;
height: 1px;
border: 0;
border-bottom: 1px solid #eee;
border-top: 1px solid #eee;
box-sizing: content-box;
}
2014-09-17 11:48:10 +02:00
2014-09-18 17:57:16 +02:00
.big-button {
2015-06-28 12:25:35 +02:00
color: #aaa;
2014-09-18 17:57:16 +02:00
}
2014-09-17 11:48:10 +02:00
.big-button.active {
2015-06-28 12:25:35 +02:00
background: #f7fbfc;
color: #24A2DD !important;
2014-09-17 11:48:10 +02:00
}
.big-button:focus,
.big-button:hover {
2015-06-28 12:25:35 +02:00
background: #f7fbfc;
color: #34B2ED !important;
outline: 0;
2014-09-17 11:48:10 +02:00
}
2014-09-17 22:37:49 +02:00
2014-10-05 20:22:45 +02:00
span.spoiler:before {
2015-06-28 12:25:35 +02:00
content: '[';
color: #000;
2014-10-05 20:22:45 +02:00
}
span.spoiler:after {
2015-06-28 12:25:35 +02:00
content: ']';
color: #000;
2014-10-05 20:22:45 +02:00
}
span.spoiler {
2015-06-28 12:25:35 +02:00
background: #eee;
color: #eee;
2014-10-05 20:22:45 +02:00
}
span.spoiler:hover {
2015-06-28 12:25:35 +02:00
color: dimgray;
2014-10-05 20:22:45 +02:00
}
2014-11-10 22:34:05 +01:00
blockquote {
2015-06-28 12:25:35 +02:00
border-left: 3px solid #eee;
margin-left: 0;
padding: 0.3em 0.3em 0.3em 0.7em;
background: #fafafa;
color: #444;
2014-11-10 22:34:05 +01:00
}
blockquote :last-child {
2015-06-28 12:25:35 +02:00
margin-bottom: 0;
2014-11-10 22:34:05 +01:00
}
.draggable {
2015-06-28 12:25:35 +02:00
cursor: move;
}
.resizer {
2015-06-28 12:25:35 +02:00
position: absolute;
cursor: nwse-resize;
border: 0.25em solid rgba(0, 0, 0, 0.3);
border-top: 0.25em solid transparent;
border-left: 0.25em solid transparent;
right: 0;
bottom: 0;
}