Gitlab@Informatics

Skip to content
Snippets Groups Projects
Select Git revision
  • f4e08d2c63f619e2a89513d3284f313e77e07248
  • main default protected
  • revert
  • 64160159
  • 64160292
  • 64160073
  • html-v_page
  • 64160174
  • 64160072
  • 64160295
  • production
11 results

main_page.css

Blame
  • main_page.css 1.85 KiB
    @import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');
    * {
        margin: 0%;
        padding: 0%;
        box-sizing: border-box;
    }
    .container {
        font-family: 'Kanit', sans-serif;
        width: 1000px;
        margin: auto;
        background: #E1E1E1;
    }
    nav {
        width: 1000px;
        height: 70px;
        background: white;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        font-size: 16px;
    }
    .logo{
        width: 200px;
        height: 70px;
        margin: 0;
        object-fit:cover;
        cursor: pointer;
    }
    nav ul {
        display: flex;
    }
    nav ul li {
        list-style: none;
    }
    nav ul a {
        text-decoration: none;
        color: black;
        padding: 10px 20px;
        transition: .3s ease;
    }
    nav ul li a:hover {
        color: #4E8AC7;
    }
    .btn-login {
        background: #36618D;
        color: #fff;
        border-radius: 5px;
    }
    .bg {
        width: 1000px;
        height: 300px;
        margin: 0 auto;
        object-fit:cover;
    }
    .memder-card-list {
        width: 250px;
        height: 200px;
        background: white;
        border-radius: 5px;
        box-shadow:1px 1px 1px 1px rgba(50, 50, 50, .5);
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 16px;
    }
    .memder-card-list ul {
        list-style: none;
        text-decoration: none;
        color: black;