szurubooru/public_html/css/core.css

91 lines
1.2 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;
font-size: 17px;
overflow-y: scroll;
2014-08-31 23:22:56 +02:00
}
2014-10-04 14:06:44 +02:00
h1 {
font-weight: normal;
font-size: 30px;
}
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;
font-size: 20px;
}
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;
}