.adminPanel {
    position: fixed;
    top: 2em;
    right: -20em;
    background: #ffd574;
    padding: 1em;
    transition-property: left right;
    transition-duration: 0.5s;
    width: 20em;
    text-align: center;
    z-index: 500;
}

.adminPanel.active {
    right: 0em;
}

.adminPanel a {
    color: #000;
    text-decoration: none;
}

.openAdminPanel {
    position: absolute;
    top: 0;
    left: -2em;
    background: #ffd574;
    padding: 0.5em 0;
    width: 2em;
    text-align: center;
    cursor: pointer;
    opacity: 0.7;
}

.adminPanel.active .openAdminPanel {
    opacity: 1;
}

.adminPanel a {
    display: block;
    text-align: left;
    margin-bottom: 1em;
}

.adminPanel a:last-child {
    margin-bottom: 0em;
}