Skip to content
Snippets Groups Projects
Select Git revision
  • a9c97b44735aaba33d7a7d3bbdac7a90777b4fd7
  • main default protected
2 results

feed.css

Blame
  • feed.css 689 B
    html{
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    }
    
    body{
        color: white;
        background-color: #232323;
    }
    
    .menu{
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
    
    h1{
        text-align : center;
    }
    
    ul{
        padding : 0;
    }
    
    .menu_option{
        text-align : center;
        list-style: none;
        width : 100%;
    }
    
    .menu_option>a{
        background-color : white;
        text-decoration: none;
        color: black;
        padding : 1%;
        transition : 0.2s;
    }
    
    .menu_option>a:hover{
        transition : 0.3s;
        padding : 3%;
        border-radius : 5px;
    }
    
    .information{
        margin-top : 10%;
        text-align : center;
    }