লক্ষ্য করুন: প্রকাশ করার পর, পরিবর্তনগুলো দেখতে আপনাকে আপনার ব্রাউজারের ক্যাশে পরিষ্কার করার প্রয়োজন হতে পারে।

  • ফায়ারফক্স / সাফারি: পুনরায় লোড-এ ক্লিক করার সময় শিফট টিপে ধরে রাখুন, অথবা হয় Ctrl-F5 বা Ctrl-R টিপুন (ম্যাকে ⌘-R টিপুন)
  • গুগল ক্রোম: Ctrl-Shift-R (ম্যাকে ⌘-Shift-R) টিপুন
  • ইন্টারনেট এক্সপ্লোরার / এজ: Ctrl ধরে রাখা অবস্থায় Refresh-এ ক্লিক করুন, অথবা Ctrl-F5 টিপুন
  • অপেরা: Ctrl-F5 টিপুন।
#mr-toolbox-opener {
    content: ">>";
    position: fixed;
    bottom: calc(20% - 50px);
    right: auto;
    left: 0;
    z-index: 1;
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border-radius: 0 5px 5px 0;
    text-align: center;
    line-height: 50px;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#mr-toolbox-opener.opened {
    transform: translateX(calc(100vw - 50px));
}

#mr-toolbox-opener:hover {
    background: #fff;
    color: #000;
}

#mr-toolbox-opener.opened::after {
    content: "<<";
}

#mr-toolbox-opener::after {
    content: ">>";
}

#mr-toolbox {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1;
    width: 0%;
    min-height: 20%;
    max-height: 50%;
    height: auto;
    background: #e2e2e2;
    color: #333333;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
}

#mr-toolbox.opened {
    width: calc(100% - 50px);
}

#mr-toolbox>* {
    padding: 10px calc(1vw + 10px);
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    margin: 10px;
}

#mr-toolbox>*:hover {
    background: #333333;
    color: #e2e2e2;
}