aboutsummaryrefslogblamecommitdiff
path: root/src/main/assets/style.css
blob: 4e53eaec53e12787fb0e953578d9784738af147e (plain) (tree)
1
                                                                 



























                                                   















                     

                   
     









                                             

       
          







                                                   
                                                                                                                                                                      
                                                 



                        
 

                          
 
   
                             




                          
 
    
                                    

                   
 
     
                        
                     
                      
                     
 
                
                        
 
 






                               

                 
 
 
         




                    
                                             
 
 


                         
                  
                     
 
 



                     
 

                  
 
              
                                        
 
 



                                                 
                    
                
           
 
 
                 


                                   
 
 
         
                    
                    








                              
 
         
                                                        






                        
 
                  
                        
 
 
           
                                    
                  
                                         
 
 
         
                  


                        
 
           
                      
                                         
                            
 
 

                                         
 
                          
                                      
                                     
                         
 
                             
                             
            
                                     
                    
 
 
               
                                             
                             
                     





                                   
                  
                        
                                  
 
          
            
                  
                  
                   
                           
                                      
                    
                                              
                    
                                  
 



                   
 



                     
                      
                  
                        
 
              
                                             
                             
 
 
                  
                   
                       
                     
 
 

                           
                     
 
 


                    
 

                     
 

                        
 














                          
 





                       
                   





                                        
                                             

                        
                   
 
 
              
                   
                    
 

                       
 


                    
 



                    
                                              
                  
                        



                                  
                   
                       
 

                       
 

                      
 

                    
 



                     
               

                          
                       
                 
 
        
                           
                   




                          
 
                
                      
 












                                          

                     
 
                
                     
                       
                    
 
 
                 
                     
                        
                    
 
 
           
                                             

                        
 
 

                                 
 






                        
 





                              
 
                       
                   
 
 



                      
 





                      
 



                           
 


                     
                        
 
 

                     
 






                             
 

                    
 

                      
 









                            
 
         
                                             
                       
 
 


                      
 



                       
























                                        
 








                           
 



                           
 

                  
 

                   
 







































                                      
 


                          
 


                         
 









                                
 


                     
 







                                     
                                  






                    
 




                    
                


                            
 







                                     
 

                   
 



                     
 






                                
 

                                    
 



                       
 
              
                                             

                  
 










                          
 

                        
 



                    
                                          

                  
 
            
                
 
 

                
 
              
                                             


                     
 
          
                                             


                           
 


                         
 

                   
 
            
                                             





















                                      
 





                           
 
       
                     
                           
 










                                    


                          




                      
                                           












                                
                       





                           
 










                              
 

                       
 






















                                          



                         
      


                     
 

                     
 

                         

                            




                                                 























































                                                
     
@import "../../../node_modules/evil-icons/assets/evil-icons.css";
@custom-media --viewport-desktop (width >=62.5rem);
@custom-media --viewport-mobile (width < 62.5rem);

:root {
    --main-width: 1000px;
    --main-background-color: #fdfdfe;
    --background-color: #f8f8f8;
    --border-color: #eee;
    --text-background-color: #fff;
    --text-color: #222;
    --link-color: #3c77aa;
    --dimmed-link-color: #88958d;
}
@media (prefers-color-scheme: dark) {
    :root {
        --main-background-color: #222;
        --background-color: #333;
        --text-background-color: #383838;
        --border-color: #4c4c4c;
        --text-color: #ccc;
        --link-color: #c38855;
        --dimmed-link-color: #88958d;
    }
}

* {
    box-sizing: border-box;
}

/* #region generic */

html,
body,
div,
h1,
h2,
ul,
li,
p,
form,
input,
textarea,
pre {
    margin: 0;
    padding: 0;
}
textarea {
    overflow: auto;
}
html,
body {
    width: 100%;
    height: 100%;
}

body {
    background: var(--main-background-color);
    text-size-adjust: 100%;
    word-wrap: break-word;
    color: var(--text-color);
    line-height: 1.4;
}

button,
input,
textarea {
    font-size: 1em;
    background-color: var(--text-background-color);
    color: var(--text-color);
}

html,
input,
textarea,
button {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: subpixel-antialiased;
}
h1,
h2 {
    font-weight: normal;
}

ul {
    list-style-type: none;
}

a {
    color: var(--link-color);
    text-decoration: none;
}
img,
hr {
    border: none;
}

hr {
    background: var(--border-color);
    height: 1px;
    margin: 10px 0;
}

pre {
    background: #1e2028;
    color: #41b645;
    overflow-x: auto;
    padding: 6px 20px;
    white-space: pre;
}

pre::selection {
    background: #41b645;
    color: #1e2028;
}

.u {
    text-decoration: underline;
}

/* #endregion */

/* #region overall layout */

#app {
    height: 100%;
    width: 100%;
}

#column {
    position: fixed;
    left: 0;
    bottom: 0;
    height: 60px;
    width: 100%;
    z-index: 10;
    background: var(--main-background-color);
}

#content {
    padding-bottom: 66px;
}

#content_wrapper {
    margin-top: 66px;
}

#minimal_content {
    margin: 0 auto;
    min-width: 310px;
    width: auto;
}

.desktop {
    display: none;
}

*::selection {
    background: var(--link-color);
    color: var(--main-background-color);
}

#header {
    background: var(--text-background-color);
    border-bottom: 1px solid var(--border-color);
    transition: transform 0.2s;
    z-index: 10;
    position: fixed;
    width: 100%;
    top: 0;
}

#header_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

#footer {
    color: #999;
    font-size: 10pt;
    padding: 10px 0;
}

/* #endregion */

/* #region header internals */

#logo {
    height: 36px;
    width: 110px;
}

#logo a {
    background: url("logo@2x.png") no-repeat !important;
    background-size: cover !important;
    border: 0;
    display: block;
    height: 36px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    width: 110px;
}

#global {
    display: flex;
    white-space: nowrap;
}

#global a {
    color: var(--dimmed-link-color);
    padding: 14px;
    border-bottom: 2px solid transparent;
}

#ctitle {
    display: flex;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
}

#ctitle a {
    padding: 2px 20px;
    border-bottom: 2px solid transparent;
    text-overflow: ellipsis;
    overflow: hidden;
}

.l a {
    border-bottom: 2px solid transparent;
}

#header_wrapper a.active {
    background: var(background-color);
    border-bottom: 2px solid #ff339a;
    pointer-events: none;
}
#global a:hover:not(.active),
#ctitle a:hover:not(.active),
.l a:hover {
    border-bottom: 2px solid #ff339a;
    cursor: pointer;
}

#search input {
    background: var(--main-background-color);
    border: 1px solid var(--border-color);
    outline: none !important;
    padding: 4px;
    appearance: none;
    border-radius: 0;
}

/* #endregion */

/* #region left column internals */

.toolbar {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#global a,
.toolbar a {
    display: flex;
    padding: 14px;
    color: #88959d;
    align-items: center;
    vertical-align: middle;
    border-right: initial;
    border-top: 2px solid transparent;
}
.toolbar > a:hover {
    background-color: var(--background-color);
    cursor: pointer;
    border-right: initial;
    border-top: 2px solid #ff339a;
}

#column ul,
#column p,
#column hr {
    margin: 10px 0;
}

#column .margtop {
    margin-top: 15px;
}

#column .tags {
    line-height: 140%;
    padding: 12px;
    text-align: justify;
}

#column .inp {
    background: var(--main-background-color);
    border: 1px solid var(--border-color);
    outline: none !important;
    padding: 4px;
}

#column .tags h4 {
    color: #88958d;
    display: block;
    text-align: center;
    font-weight: 400;
}

#ctitle img {
    margin-right: 5px;
    vertical-align: middle;
    max-width: 48px;
    max-height: 48px;
}

#ustats li {
    font-size: 10pt;
    margin: 3px 0;
}

#column table.iread {
    width: 100%;
}

#column table.iread td {
    text-align: center;
}

#column table.iread img {
    height: 48px;
    width: 48px;
}

/* #endregion */

/* #region main content */
#content > p,
#content > h1,
#content > h2,
#minimal_content > p,
#minimal_content > h1,
#minimal_content > h2 {
    margin: 1em 0;
}

.page {
    background: #eee;
    padding: 6px;
    text-align: center;
}

.page a {
    color: #88958d;
}

/* #endregion */

/* #region article, message internals */

article {
    background: var(--text-background-color);
    border: 1px solid var(--border-color);
    line-height: 140%;
    margin-bottom: 10px;
    padding: 20px;
    overflow: auto;
}

article time {
    color: #88958d;
    font-size: 10pt;
}

article .ir {
    text-align: center;
}

article .ir a {
    cursor: zoom-in;
    display: block;
}

article .ir img {
    max-width: 100%;
}
article > nav.l,
.msg-cont > nav.l {
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 10pt;
}
article > nav.l a,
.msg-cont > nav.l a {
    color: #88958d;
    margin-right: 15px;
}

article .likes {
    padding-left: 20px;
}

article .replies {
    margin-left: 18px;
}

article .tags {
    margin-top: 3px;
}

.msg-tags {
    margin-top: 12px;
    min-height: 1px;
}
article .tags > a,
.msg-tags > a {
    color: #88958d;
}
article .tags > a::before,
.msg-tags > a::before {
    content: '#';
}

.badge {
    background: #eee;
    border: 1px solid #eee;
    color: #88958d;
    display: inline-block;
    font-size: 10pt;
    margin-bottom: 5px;
    margin-right: 5px;
    padding: 0 10px;
}

.l .msg-button {
    padding-top: 12px;
}

.Button {
    background: #fff;
    border: 1px solid var(--border-color);
    color: #888;
    cursor: pointer;
    display: inline-block;
    margin: 5px;
    padding: 4px 10px;
}
.Button:hover {
    background: #f8f8f8;
    border-bottom: 1px solid #ff339a;
}

.msgthread {
    margin-bottom: 0;
}

.msg-avatar {
    float: left;
    max-height: 48px;
    margin-right: 10px;
    max-width: 48px;
}

.msg-avatar img {
    max-height: 48px;
    vertical-align: top;
    max-width: 48px;
}

.msg-cont {
    background: var(--text-background-color);
    border: 1px solid var(--border-color);
    line-height: 140%;
    margin-bottom: 12px;
    padding: 20px;
}

.reply-new .msg-cont {
    border-right: 5px solid #0C0;
}

.msg-ts {
    font-size: small;
    vertical-align: top;
}
.msg-ts,
.msg-ts > a {
    color: #999;
}

.msg-txt {
    clear: both;
    margin: 0 0 12px;
    padding-top: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.msg-media {
    text-align: center;
    overflow: auto;
}

.msg-links {
    color: #999;
    font-size: small;
    margin: 5px 0 0 0;
}

.msg-comments {
    color: #AAA;
    font-size: small;
    margin-top: 10px;
    overflow: hidden;
    text-indent: 10px;
}

.ta-wrapper {
    border: 1px solid #DDD;
    display: flex;
    flex-grow: 1;
}

.msg-comment {
    display: flex;
    width: 100%;
    margin-top: 10px;
    flex-direction: row;
}

.msg-comment-hidden {
    display: none;
}

.msg-comment textarea {
    border: 0;
    flex-grow: 1;
    outline: none !important;
    padding: 4px;
    resize: vertical;
    vertical-align: top;
}

.attach-photo {
    cursor: pointer;
}

.attach-photo-active {
    color: green;
}

.msg-recomms {
    color: #AAA;
    font-size: small;
    margin-top: 10px;
    overflow: hidden;
    text-indent: 10px;
}
#replies .msg-txt,
#private-messages .msg-txt {
    margin: 0;
}

.title2 {
    background: var(--text-background-color);
    margin: 20px 0;
    padding: 10px 20px;
}

.title2-right {
    float: right;
    line-height: 24px;
}

#content .title2 h2 {
    font-size: x-large;
    margin: 0;
}

/* #endregion */

/* #region user-generated texts */

q:before,
q:after {
    content: "";
}
q,
blockquote {
    border-left: 3px solid #CCC;
    color: #666;
    display: block;
    margin: 10px 0 10px 10px;
    padding-left: 10px;
}

/* #endregion */

/* #region new message form internals */

#newmessage {
    background: #E5E5E0;
    margin-bottom: 20px;
    padding: 15px;
}

#newmessage textarea {
    border: 1px solid #CCC;
    box-sizing: border-box;
    margin: 0 0 5px 0;
    margin-top: 20px;
    max-height: 6em;
    min-width: 280px;
    padding: 4px;
    width: 100%;
}

#newmessage input {
    border: 1px solid #CCC;
    margin: 5px 0;
    padding: 2px 4px;
}

#newmessage .img {
    width: 500px;
}

#newmessage .tags {
    width: 500px;
}

#newmessage .subm {
    background: #EEEEE5;
    width: 150px;
}
@media screen and (max-width: 850px) {
    #newmessage .img,
    #newmessage .tags {
        width: 100%;
    }
}

/* #endregion */

/* #region user lists */

.users {
    margin: 10px 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.users > span {
    overflow: hidden;
    padding: 6px 0;
    width: 200px;
}
.users img {
    height: 32px;
    margin-right: 6px;
    vertical-align: middle;
    width: 32px;
}

/* #endregion */

/* #region signup form */

.signup-h1 > img {
    margin-right: 10px;
    vertical-align: middle;
}

.signup-h1 {
    font-size: x-large;
    margin: 20px 0 10px 0;
}

.signup-h2 {
    font-size: large;
    margin: 10px 0 5px 0;
}

.signup-hr {
    margin: 20px 0;
}

/* #endregion */

/* #region PM */

.newpm {
    margin: 20px 60px 30px 60px;
}

.newpm textarea {
    resize: vertical;
    width: 100%;
}

.newpm-send input {
    width: 100px;
}

/* #endregion */

/* #region popup dialog (lightbox) */

#dialogb {
    background: var(--text-color);
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

#dialogt {
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 11;
    display: flex;
    align-items: center;
    justify-content: center;
}

#dialogw {
    z-index: 11;
    max-width: 96%;
    max-height: calc(100% - 100px);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#dialogw a {
    display: block;
}

#dialogw img {
    max-height: 100%;
    max-height: 90vh;
    max-width: 100%;
}

#dialog_header {
    width: 100%;
    height: 44px;
    position: fixed;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.header_image {
    background: rgba(0, 0, 0, 0.28);
}

#dialogc {
    cursor: pointer;
    color: #ccc;
    padding-right: 6px;
}

.dialoglogin {
    background: var(--text-background-color);
    padding: 25px;
    width: 300px;
}

.dialog-opened {
    overflow: hidden;
}
#signemail,
#signfb,
#signvk {
    display: block;
    line-height: 32px;
    margin: 10px 0;
    text-decoration: none;
    width: 100%;
}

#signvk {
    margin-bottom: 30px;
}

.dialoglogin form {
    margin-top: 7px;
}
.signinput,
.signsubmit {
    border: 1px solid var(--border-color);
    margin: 3px 0;
    padding: 3px;
}

.signinput {
    width: 100%;
}

.signsubmit {
    width: 70px;
}

.dialogshare {
    background: var(--text-background-color);
    min-width: 300px;
    overflow: auto;
    padding: 20px;
}

.dialogl {
    background: var(--text-background-color);
    border: 1px solid #DDD;
    margin: 3px 0 20px;
    padding: 5px;
}

.dialogshare li {
    float: left;
    margin: 5px 10px 0 0;
}

.dialogshare a {
    display: block;
}

.dialogtxt {
    background: var(--text-background-color);
    padding: 20px;
}

@media screen and (max-width: 480px) {
    .dialog-opened {
        position: fixed;
        width: 100%;
    }
}

/* #endregion */

/* #region misc */

#wsthread {
    background: #CCC;
    bottom: 20px;
    cursor: pointer;
    display: none;
    padding: 5px 10px;
    position: fixed;
    right: 20px;
}

.sharenew {
    display: inline-block;
    line-height: 32px;
    min-height: 32px;
    min-width: 200px;
    padding: 0 12px 0 37px;
}

.icon {
    margin-top: -4px;
    vertical-align: middle;
}

.newmessage {
    /* textarea on the /post page */
    border: 1px solid #DDD;
    padding: 2px;
    resize: vertical;
    width: 100%;
}

/* #endregion */

/* #region footer internals */

#footer-social a {
    border: 0;
    display: inline-block;
}

/* #endregion */

/* #region settings */

fieldset {
    border: 1px dotted var(--border-color);
    margin-top: 25px;
}

/* #endregion */

/* #region embeds */

.embedContainer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 30px -3px 15px -3px;
    position: relative;
}
.embedContainer > * {
    box-sizing: border-box;
    flex-grow: 1;
    margin: 3px;
    min-width: 49%;
}

.embedContainer .picture img {
    display: block;
}
.embedContainer img,
.embedContainer video {
    max-width: 100%;
    max-height: 80vh;
}
.embedContainer > .audio,
.embedContainer > .youtube {
    min-width: 90%;
}

.embedContainer audio {
    width: 100%;
}

.embedContainer iframe {
    overflow: hidden;
    resize: vertical;
    display: block;
}

/* #endregion */

/* #region nsfw */

article.nsfw .embedContainer img,
article.nsfw .embedContainer video,
article.nsfw .embedContainer iframe,
article.nsfw .ir img {
    opacity: 0.1;
}
article.nsfw .embedContainer img:hover,
article.nsfw .embedContainer video:hover,
article.nsfw .embedContainer iframe:hover,
article.nsfw .ir img:hover {
    opacity: 1;
}

/* #endregion */

article p {
    margin: 10px 0 8px 0;
}
.msg,
.page,
.msg-cont {
    min-width: 280px;
    width: auto;
}

.title2 h2 {
    font-size: large;
}

.msg-comment input {
    align-self: flex-end;
    margin: 6px 0 0 0;
}

@media (--viewport-mobile) {
    #sidebar {
        background: var(--text-background-color);
    }
}

@media (--viewport-desktop) {
    @supports (position: sticky) {
        #column {
            position: sticky;
            padding: 12px;
            height: 100%;
            z-index: auto;
            overflow-y: auto;
        }
        article,
        .page,
        .msg-cont {
            width: 640px;
        }
        #sidebar_wrapper {
            position: fixed;
            width: 300px;
            overflow-y: auto;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        #header_wrapper,
        #content_wrapper {
            width: 1000px;
            margin: 0 auto;
        }
        #content_wrapper {
            display: flex;
            margin: 66px auto 0;
        }
        #footer {
            padding: 10px;
        }
        .desktop {
            display: block;
        }
        .mobile {
            display: none;
        }
        #content {
            padding-bottom: 12px;
            width: 100%;
        }
        .toolbar {
            flex-direction: column;
            justify-content: initial;
            border-top: initial;
        }
        .toolbar a,
        .l a {
            border-top: initial;
            border-right: 2px solid transparent;
        }
        .toolbar a:hover {
            border-top: initial;
            border-right: 2px solid #ff339a;
        }
    }
}