Skip to content

Instantly share code, notes, and snippets.

@AliShareei
Last active March 5, 2018 13:25
Show Gist options
  • Save AliShareei/0320e4f72ff39b2c4f03932f75da57d4 to your computer and use it in GitHub Desktop.
Save AliShareei/0320e4f72ff39b2c4f03932f75da57d4 to your computer and use it in GitHub Desktop.
آموزش تنظیم تایمر ماژول شگفت انگیز
پنهان کردن تایمر در موبایل و تبلت
@media screen and (max-width: 650px) {
#dbs-theme-builder .dbsa_timer {
display: none;
}
}
نمونه کد تنظیم تایمر در اندازه های مختلف تبلت ، موبایل و موبایلهای کوچکتر
@media screen and (max-width: 768px) {
#dbs-theme-builder .dbsa_timer {
transform: scale(0.6) !important;
right: -20px !important;
}
}
@media screen and (max-width: 480px) {
#dbs-theme-builder .dbsa_timer {
transform: scale(0.5) !important;
right: -25px !important;
}
}
@media screen and (max-width: 320px) {
#dbs-theme-builder .dbsa_timer {
transform: scale(0.4) !important;
right: -25px !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment