Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

_responsive.scss 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. @media only screen and (max-width: $smallScreen) {
  2. .watermark {
  3. width: 20%;
  4. height: 20%;
  5. }
  6. .new-toolbox {
  7. .toolbox-content {
  8. .button-group-center, .button-group-left, .button-group-right {
  9. .toolbox-button {
  10. .toolbox-icon {
  11. width: 28px;
  12. height: 28px;
  13. svg {
  14. width: 18px;
  15. height: 18px;
  16. }
  17. }
  18. &:nth-child(2) {
  19. .toolbox-icon {
  20. width: 30px;
  21. height: 30px;
  22. }
  23. }
  24. }
  25. }
  26. }
  27. }
  28. }
  29. @media only screen and (max-width: $verySmallScreen) {
  30. #videoResolutionLabel {
  31. display: none;
  32. }
  33. .desktop-browser {
  34. .vertical-filmstrip .filmstrip {
  35. display: none;
  36. }
  37. }
  38. .new-toolbox {
  39. .toolbox-content {
  40. .button-group-center, .button-group-left, .button-group-right {
  41. .settings-button-small-icon {
  42. display: none;
  43. }
  44. .toolbox-button {
  45. .toolbox-icon {
  46. width: 18px;
  47. height: 18px;
  48. svg {
  49. width: 12px;
  50. height: 12px;
  51. }
  52. }
  53. &:nth-child(2) {
  54. .toolbox-icon {
  55. width: 20px;
  56. height: 20px;
  57. }
  58. }
  59. }
  60. }
  61. }
  62. }
  63. .chrome-extension-banner {
  64. display: none;
  65. }
  66. }