Created
October 14, 2018 18:17
-
-
Save mprymek/ab5f1efdf3fe13139e58099ae423cd4b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Pleroma light theme customization */ | |
#app { | |
background-image: none !important; | |
background-color: rgba(241, 241, 241, 1); | |
} | |
#heading { | |
background-image: none !important; | |
background-color: rgba(255, 255, 255, 1) !important; | |
} | |
.logo { | |
visibility: hidden; | |
} | |
.sidebar { | |
opacity: 0.3; | |
} | |
.sidebar:hover { | |
opacity: 1; | |
} | |
.nav-panel li { | |
border-color: transparent; | |
} | |
.nav-panel a, .instance-specific-panel a { | |
/* color: rgb(9, 9, 9); */ | |
font-weight: bold; | |
color: inherit; | |
} | |
/*.nav-panel, .instance-specific-panel, .notifications { | |
opacity: 0.4; | |
}*/ | |
@media (min-width: 960px) | |
{ | |
.sidebar-bounds, .sidebar-bounds .sidebar { | |
width: 450px; | |
} | |
.sidebar-bounds .sidebar-scroller { | |
width: 470px; | |
} | |
} | |
.sidebar-flexer { | |
flex-basis: 470px; | |
} | |
/* | |
.sidebar-bounds, .sidebar { | |
} .sidebar-scroller | |
.sidebar { | |
Xwidth: 500px !important; | |
}*/ | |
.user-panel .user-counts { | |
display: none; | |
} | |
.post-status-form textarea { | |
min-height: 20em !important; | |
} | |
#nav a, | |
#nav a i { | |
color: #5a5a5a; | |
} | |
#nav .inner-nav { | |
flex-basis: 100%; | |
} | |
.inner-nav .item:nth-child(1) { | |
font-size: 150%; | |
font-weight: bold; | |
} | |
.main { | |
flex-grow: 0; | |
flex-basis: 800px; | |
padding-left: 100px; | |
} | |
#content { | |
max-width: 1600px; | |
background-color: rgba(241, 241, 241, 1); | |
} | |
.timeline .panel-heading { | |
font-size: 90%; | |
} | |
.chat-panel { | |
display: none; | |
} | |
/* does not work yet, unfortunatelly */ | |
/* | |
.panel-heading:has(.loadmore-text) { | |
display: none; | |
} | |
*/ | |
/* alternative implementation - BEGIN */ | |
.timeline .panel-heading { | |
padding: 0; | |
} | |
.timeline .title { | |
display: none; | |
} | |
.timeline .loadmore-button { | |
margin: 10px; | |
margin-left: auto; | |
} | |
.timeline .loadmore-text { | |
display: none; | |
} | |
/* alternative implementation - END */ | |
/* else - BEGIN */ | |
/* | |
.timeline .title { | |
visibility: hidden; | |
} | |
.timeline .title, .timeline .loadmore-button { | |
font-size: 100%; | |
line-height: 100%; | |
} | |
.timeline .loadmore-text { | |
display: none; | |
} | |
*/ | |
/* else - END */ | |
.status-content { | |
font-size: 100%; | |
color: #000; | |
} | |
.attachments .attachment { | |
border: none; | |
} | |
/* separated posts */ | |
/* | |
.timeline { | |
background: transparent; | |
box-shadow: none; | |
} | |
.status-fadein { | |
margin-bottom: 2em; | |
border-radius: var(--panelRadius,10px); | |
box-shadow: 1px 1px 4px rgba(0,0,0,.6); | |
padding: 1em; | |
background-color: #fff; | |
} | |
*/ | |
textarea, select, input, button { outline: none; } | |
textarea { | |
border: 1px solid transparent; | |
box-shadow: none; | |
} | |
/*textarea:focus { | |
border: 1px solid var(--link,#d8a070); | |
}*/ | |
:focus::placeholder { color:transparent; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment