Advertisement
Guest User

Untitled

a guest
Aug 21st, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.50 KB | None | 0 0
  1. .button{
  2.     margin-right:1cm;
  3. }
  4. .btn {
  5.     display: inline-block;
  6.     padding: 6px 12px;
  7.     margin-bottom: 0;
  8.     font-size: 14px;
  9.     font-weight: 400;
  10.     line-height: 1.42857143;
  11.     text-align: center;
  12.     white-space: nowrap;
  13.     vertical-align: middle;
  14.     -ms-touch-action: manipulation;
  15.     touch-action: manipulation;
  16.     cursor: pointer;
  17.     -webkit-user-select: none;
  18.     -moz-user-select: none;
  19.     -ms-user-select: none;
  20.     user-select: none;
  21.     background-image: none;
  22.     border: 1px solid transparent;
  23.         border-top-color: transparent;
  24.         border-right-color: transparent;
  25.         border-bottom-color: transparent;
  26.         border-left-color: transparent;
  27.     border-radius: 4px;
  28.     width: 3.5cm;
  29. }
  30. .collapse {
  31.     display: none;
  32.     margin-left: 6cm;
  33.     margin-top: 0.5cm;
  34. }
  35. //
  36. // Component animations
  37. // --------------------------------------------------
  38.  
  39. // Heads up!
  40. //
  41. // We don't use the `.opacity()` mixin here since it causes a bug with text
  42. // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552.
  43.  
  44. .fade {
  45.  opacity: 0;
  46.  .transition(opacity .15s linear);
  47.  &.in {
  48.    opacity: 1;
  49.  }
  50. }
  51.  
  52. .collapse {
  53.  display: none;
  54.  
  55.  &.in      { display: block; }
  56.  tr&.in    { display: table-row; }
  57.  tbody&.in { display: table-row-group; }
  58. }
  59.  
  60. .collapsing {
  61.  position: relative;
  62.  height: 0;
  63.  overflow: hidden;
  64.  .transition-property(~"height, visibility");
  65.  .transition-duration(.35s);
  66.  .transition-timing-function(ease);
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement