62 lines
835 B
CSS
62 lines
835 B
CSS
html {
|
|
font-size: 15pt;
|
|
}
|
|
|
|
body {
|
|
background-color: #ddd;
|
|
}
|
|
|
|
.box {
|
|
color: #222;
|
|
}
|
|
|
|
.container {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
#login-form .control {
|
|
min-width: 20rem;
|
|
max-width: 30vw;
|
|
}
|
|
|
|
nav.pagination {
|
|
background-color: #fff;
|
|
margin-top: 2rem;
|
|
}
|
|
|
|
.userinfo .registered {
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
.userinfo .avatar-title {
|
|
margin-top: 1rem;
|
|
font-size: inherit;
|
|
font-weight: inherit;
|
|
line-height: inherit;
|
|
}
|
|
.userinfo .avatar-title img.img { vertical-align: bottom; }
|
|
|
|
.content .bbc-block > h4 {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.bbc-spoiler {
|
|
transition: background-color 0.2s;
|
|
background-color: black;
|
|
color: black;
|
|
}
|
|
.bbc-spoiler:hover, .bbc-spoiler.active {
|
|
background-color: transparent;
|
|
color: auto;
|
|
}
|
|
|
|
.editedby {
|
|
font-size: .75rem;
|
|
font-style: italic;
|
|
margin-top: 1rem;
|
|
}
|
|
|
|
.postdate {
|
|
font-size: .75rem;
|
|
}
|