aboutsummaryrefslogblamecommitdiffstats
path: root/app/assets/stylesheets/hmno_header.scss
blob: 772b7d47cc65ad2af22545458ed08ba60ce5f18f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                                             


                       

                  

                          
                                                


                         
                  
                                 
                            
                          
 
           
                        


                
                       



                           






                                        




                              
         

     





                                       
           
                           

                          








































                                                        
/* This file is part of hmnoweb, a RefineryCMS based webapp for heavymetal.no
 * Copyright (C) 2018  Harald Eilertsen <haraldei@anduin.net>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License version 3
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
@import "color_scheme";

#header {
    display: flex;

    background: {
        color: $header-bg;
        image: image_url("header-metal-bg.jpg");
        repeat: repeat-y;
    }

    height: 110px;
    border-bottom: 1px solid $fg;
    margin-bottom: $spacing;
    padding-top: $spacing;

    #logo {
        flex: 0 0 200px;
    }

    #merchlink {
        flex: 0 0 90px;
        text-align: center;

        img {
            display: block;
            text-align: center;
            background-color: #fff8;
            padding: 0.2rem;

            &:hover {
                background-color: #fffc;
            }
        }

        a {
            color: #ddf;
            font-weight: bold;
        }
    }

    #menu-area {
        display: flex;
        flex-direction: column-reverse;
        flex-grow: 1;
    }

    #menu {
        text-align: center;
        font-size: 120%;
        font-weight: bold;

        ul {
            padding: 0;

            li {
                list-style: none;
                display: inline-block;
                background-color: $menu-bg;

                padding: {
                    left: 1em;
                    right: 1em;
                    top: 0.3em;
                    bottom: 0.3em;
                }

                &.selected {
                    background-color: $selected-menu-bg;
                    font-weight: 600;

                    a {
                        color: $selected-menu-fg;
                    }
                }

                &:hover {
                    background-color: $hover-menu-bg;

                    a {
                        color: $hover-menu-fg;
                    }
                }

                a {
                    text-decoration: none;
                    color: $menu-fg;
                }
            }
        }
    }
}