mirror of
https://github.com/plebbit/seedit.git
synced 2026-02-15 16:31:24 -05:00
208 lines
3.4 KiB
CSS
208 lines
3.4 KiB
CSS
@media (max-width: 768px) {
|
|
.content {
|
|
padding: 7px 0px 20px 0px;
|
|
}
|
|
|
|
.sidebar {
|
|
display: none;
|
|
}
|
|
|
|
.infobar {
|
|
margin: 0px 5px;
|
|
}
|
|
|
|
.subplebbit {
|
|
padding-right: 5px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
.content {
|
|
padding: 7px 5px 0px 5px;
|
|
}
|
|
|
|
.stateString, .infobar {
|
|
max-width: calc(100% - 327px);
|
|
}
|
|
}
|
|
|
|
.infobar {
|
|
background-color: var(--background-orange);
|
|
border-color: var(--border-orange);
|
|
border-style: solid;
|
|
border-width: 1px;
|
|
font-size: small;
|
|
margin: 3px 0px;
|
|
padding: 6px 10px;
|
|
color: var(--text);
|
|
word-wrap: break-word;
|
|
font-size: 14px;
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
.infobar code {
|
|
padding: 0 4px;
|
|
margin: 0 2px;
|
|
background-color: var(--code-background);
|
|
border: 1px solid var(--code-border);
|
|
}
|
|
|
|
.subplebbit {
|
|
margin-bottom: 10px;
|
|
height: auto;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.midcol {
|
|
width: 37px;
|
|
font-weight: bold;
|
|
font-size: small;
|
|
float: left;
|
|
padding-right: 7px;
|
|
background: transparent;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.arrowWrapper {
|
|
padding-left: 11px;
|
|
padding-top: 2px;
|
|
}
|
|
|
|
.arrowCommon {
|
|
width: 15px;
|
|
height: 14px;
|
|
display: block;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.arrowUp {
|
|
background-image: url("/public/assets/buttons/arrow-up.png");
|
|
}
|
|
|
|
.upvoted {
|
|
background-image: url("/public/assets/buttons/arrow-upvoted.png") !important;
|
|
}
|
|
|
|
.arrowDown {
|
|
background-image: url("/public/assets/buttons/arrow-down.png");
|
|
}
|
|
|
|
.downvoted {
|
|
background-image: url("/public/assets/buttons/arrow-downvoted.png") !important;
|
|
}
|
|
|
|
.score {
|
|
text-align: center;
|
|
color: var(--icon);
|
|
}
|
|
|
|
.entry {
|
|
overflow: hidden;
|
|
opacity: 1;
|
|
}
|
|
|
|
.onlineIndicator {
|
|
background-repeat: no-repeat;
|
|
display: inline-flex;
|
|
height: 13px;
|
|
width: 13px;
|
|
margin: 3px 5px -2px 2px;
|
|
}
|
|
|
|
.online {
|
|
background-image: url('/public/assets/indicator-online.png');
|
|
}
|
|
|
|
.offline {
|
|
background-image: url('/public/assets/indicator-offline.png');
|
|
}
|
|
|
|
.title {
|
|
display: inline-flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
font-size: medium;
|
|
overflow: hidden;
|
|
unicode-bidi: isolate;
|
|
margin-bottom: -2px;
|
|
}
|
|
|
|
.title a {
|
|
margin-right: 10px;
|
|
flex-grow: 1;
|
|
color: var(--link);
|
|
}
|
|
|
|
/* TODO: consider to enable this later, when lots of new communities will be proposed */
|
|
/* .title a:visited {
|
|
color: var(--link-visited);
|
|
} */
|
|
|
|
.subscribeButton {
|
|
margin-top: 2px;
|
|
}
|
|
|
|
.description {
|
|
max-width: 60em;
|
|
unicode-bidi: isolate;
|
|
background-color: var(--background-markdown);
|
|
border: 1px solid var(--gray-light);
|
|
color: var(--text-markdown);
|
|
padding: 2px 5px;
|
|
border-radius: 7px;
|
|
margin: 5px 0px;
|
|
word-wrap: break-word;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.tagline {
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
.subplebbitPreferences {
|
|
padding: 0 1px;
|
|
line-height: 1.6em;
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
.subplebbitPreferences a {
|
|
color: var(--gray-contrast);
|
|
font-weight: bold;
|
|
}
|
|
|
|
.subplebbitPreferences a:hover {
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.subplebbitsTabs {
|
|
border-bottom: 1px dotted gray;
|
|
padding: 5px 10px;
|
|
margin-left: 5px;
|
|
overflow: hidden;
|
|
font-size: larger;
|
|
display: inline-block;
|
|
margin-right: 15px;
|
|
text-transform: lowercase;
|
|
}
|
|
|
|
.subplebbitsTabs a span {
|
|
display: inline;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.subplebbitsTabs a {
|
|
text-decoration: none;
|
|
color: var(--text-primary);
|
|
}
|
|
|
|
.separator {
|
|
color: var(--gray);
|
|
margin: 0px .7ex 0px .7ex;
|
|
cursor: default;
|
|
}
|
|
|
|
.selected {
|
|
color: var(--green) !important;
|
|
font-weight: bold;
|
|
} |