Advertisement
Guest User

Untitled

a guest
Nov 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. .button, .button-flat {
  2. border-radius: 40px !important;
  3. box-shadow: none;
  4. background: transparent;
  5. border: none;
  6. border: solid 1px transparent;
  7. height: 40px;
  8. line-height: 40px;
  9. }
  10.  
  11. .button:hover {
  12. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  13. background: rgba(255,255,255,0.4);
  14. }
  15.  
  16. .button-float:hover {
  17. box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  18. background: rgba(255,255,255,0.4);
  19. }
  20.  
  21. .browser-content-item-frame {
  22. border-radius: 4px !important;
  23. overflow: hidden;
  24. }
  25.  
  26. .browser-content-item {
  27.  
  28. }
  29.  
  30. body {
  31. overflow-x: hidden;
  32. }
  33.  
  34. .error_message {
  35. position: fixed;
  36. top: 0;
  37. left: 0;
  38. width: auto;
  39. float: left;
  40. height: 60px;
  41. display: block;
  42. z-index: 8;
  43. overflow: hidden;
  44. padding-left: 35px;
  45. background: #673AB7;
  46. }
  47.  
  48. .error_message .alert {
  49. padding: 0;
  50. line-height: 60px;
  51. background: transparent;
  52. border: 0px;
  53. color: #fff;
  54. font-weight: 500;
  55. font-size: 14px;
  56. }
  57.  
  58. .error_message .alert p {
  59. margin: 0;
  60. }
  61.  
  62. .shadow {
  63. z-index: 7;
  64. }
  65.  
  66. .slideout {
  67. z-index: 8;
  68. }
  69.  
  70. .titlebar {
  71. z-index: 9;
  72. }
  73.  
  74. .slideout.hidden {
  75. transform: translateX(5%);
  76. pointer-events: none;
  77. opacity: 0;
  78. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement