szurubooru/public_html/css/core.css

125 lines
1.7 KiB
CSS
Raw Normal View History

2014-08-31 23:22:56 +02:00
body {
margin: 0;
padding: 0;
text-align: center;
background: #fff;
2014-09-16 18:51:36 +02:00
color: #555;
2014-08-31 23:22:56 +02:00
font-family: 'Droid Sans', sans-serif;
2015-01-27 09:22:41 +01:00
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) {
body {
2015-01-27 09:22:41 +01:00
font-size: 13px;
2015-01-26 08:50:25 +01:00
}
}
2014-10-04 14:06:44 +02:00
h1 {
font-weight: normal;
2015-01-26 08:50:25 +01:00
font-size: 160%;
2014-10-04 14:06:44 +02:00
}
2014-09-07 09:57:01 +02:00
h2 {
font-variant: small-caps;
font-weight: normal;
}
2014-10-07 21:15:26 +02:00
h3 {
font-weight: normal;
2015-01-26 08:50:25 +01:00
font-size: 120%;
2014-10-07 21:15:26 +02:00
}
2014-12-07 13:43:15 +01:00
small {
2015-01-26 08:50:25 +01:00
font-size: 87%;
2014-12-07 13:43:15 +01:00
}
2014-08-31 23:22:56 +02:00
#middle {
padding: 0 2em;
position: relative;
2014-08-31 23:22:56 +02:00
}
#content {
margin: 1.5em 0;
padding: 0;
display: inline-block;
text-align: left;
2014-10-10 22:53:40 +02:00
width: 100%;
}
2014-08-31 23:22:56 +02:00
a {
2014-10-10 14:02:28 +02:00
color: #24A2DD;
2014-08-31 23:22:56 +02:00
text-decoration: none;
2014-10-11 21:59:23 +02:00
cursor: pointer; /* for links without [href] */
2014-08-31 23:22:56 +02:00
}
a:focus {
outline: 2px solid #64C2ED;
}
a:hover {
2014-10-10 14:02:28 +02:00
color: #34B2ED;
}
hr {
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 {
color: #aaa;
}
2014-09-17 11:48:10 +02:00
.big-button.active {
background: #f7fbfc;
2014-10-10 14:02:28 +02:00
color: #24A2DD !important;
2014-09-17 11:48:10 +02:00
}
.big-button:focus,
.big-button:hover {
2014-10-10 14:02:28 +02:00
background: #f7fbfc;
color: #34B2ED !important;
2014-09-20 10:55:39 +02:00
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 {
content: '[';
color: #000;
}
span.spoiler:after {
content: ']';
color: #000;
}
span.spoiler {
background: #eee;
color: #eee;
}
span.spoiler:hover {
color: dimgray;
}
2014-11-10 22:34:05 +01:00
blockquote {
border-left: 3px solid #eee;
margin-left: 0;
padding: 0.3em 0.3em 0.3em 0.7em;
background: #fafafa;
color: #444;
}
blockquote :last-child {
margin-bottom: 0;
}
.draggable {
cursor: move;
}
.resizer {
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;
}