members_admin.css 1.55 KB
Newer Older
1 2 3 4
.page_body{
    position: relative;
}

5 6 7 8
.header {
    margin: 1.5rem 0;
}

9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58
.login_area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.tabs {
    margin-top: 1em;
    margin-bottom: 1em;
    overflow: hidden;
}
  
.tabs .tab {
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
}

.tabs .tab:hover {
    background-color: #ccc;
}

.tabs .active {
    background-color: transparent;
    border: 1px solid #ccc;
    border-width: 1px 0 0 0;
}

.tabs .active:hover {
    background-color: white;
}

.tab_content {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}

#tab_makeups_content {
    padding: 2rem 0;
}

59 60 61 62 63 64 65 66 67
#table_top_area {
    display: flex;
    justify-content: space-between;
}

#decrement_selected_members_makeups {
    display: none;
}

68 69 70 71 72 73
.table_area {
    margin-top: 20px;
}

.decrement_makeup {
    margin-left: 10px;
74 75
}

76 77 78 79
.decrement_makeup, .increment_makeup {
    padding: 0.4rem 1.25rem;
}

80 81
.select_member_cb {
    cursor: pointer;
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
}

/* Search membres area */
#add_members_area {
    margin-top: 30px;
}

#add_members_form_area {
    display:flex;
    align-items: center;
}

#search_member_form {
    margin-left: 10px;
}

.search_member_results_area {
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.search_member_results {
    display: flex;
    flex-wrap: wrap;
}

.btn_possible_member {
    margin: 0 1rem;
111
}