Advertisement
jzgeorge

makedialogs

Mar 21st, 2017
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.06 KB | None | 0 0
  1. .v-window-header {
  2.     line-height: 36px;
  3.     padding-left: 12px;
  4.     margin-right: 74px;
  5.     overflow: hidden;
  6.     text-overflow: ellipsis;
  7.     white-space: nowrap;
  8.     color: #ffffff;
  9.     background-color: #38a3ff;
  10. }
  11.  
  12. .v-window-outerheader {
  13.     cursor: move;
  14.     position: absolute;
  15.     z-index: 2;
  16.     top: 0;
  17.     left: 0;
  18.     right: 0;
  19.     -webkit-transform: translatez(0);
  20.     -moz-transform: translatez(0);
  21.     -ms-transform: translatez(0);
  22.     -o-transform: translatez(0);
  23.     transform: translatez(0);
  24.     background-color: #38a3ff;
  25. }
  26.  
  27. .v-window-closebox {
  28.     position: absolute;
  29.     z-index: 3;
  30.     top: 0;
  31.     right: 0;
  32.     -webkit-box-sizing: border-box;
  33.     -moz-box-sizing: border-box;
  34.     box-sizing: border-box;
  35.     width: 36px;
  36.     height: 36px;
  37.     background-color: white;
  38.     line-height: 34px;
  39.     text-align: center;
  40.     cursor: pointer;
  41.     font-size: 21px;
  42.     color: #000000;
  43.     -webkit-transition: color 140ms;
  44.     -moz-transition: color 140ms;
  45.     transition: color 140ms;
  46.     background-color: #FF4444;
  47. }
  48.  
  49.  .v-window-maximizebox{
  50.     position: absolute;
  51.     z-index: 3;
  52.     top: 0;
  53.     right: 0;
  54.     -webkit-box-sizing: border-box;
  55.     -moz-box-sizing: border-box;
  56.     box-sizing: border-box;
  57.     width: 36px;
  58.     height: 36px;
  59.     background-color: white;
  60.     line-height: 34px;
  61.     text-align: center;
  62.     cursor: pointer;
  63.     font-size: 21px;
  64.     color: #000000;
  65.     -webkit-transition: color 140ms;
  66.     -moz-transition: color 140ms;
  67.     transition: color 140ms;
  68.     background-color: #6ae96a;
  69. }
  70.  
  71.   .v-window-restorebox{
  72.     position: absolute;
  73.     z-index: 3;
  74.     top: 0;
  75.     right: 0;
  76.     -webkit-box-sizing: border-box;
  77.     -moz-box-sizing: border-box;
  78.     box-sizing: border-box;
  79.     width: 36px;
  80.     height: 36px;
  81.     background-color: white;
  82.     line-height: 34px;
  83.     text-align: center;
  84.     cursor: pointer;
  85.     font-size: 21px;
  86.     color: #000000;
  87.     -webkit-transition: color 140ms;
  88.     -moz-transition: color 140ms;
  89.     transition: color 140ms;
  90.     background-color: #feb624;
  91. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement