Last active
March 5, 2018 13:25
-
-
Save AliShareei/0320e4f72ff39b2c4f03932f75da57d4 to your computer and use it in GitHub Desktop.
آموزش تنظیم تایمر ماژول شگفت انگیز
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
پنهان کردن تایمر در موبایل و تبلت | |
@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