Katsiree

bonut

May 2nd, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.65 KB | None | 0 0
  1. .p_btn3d {
  2.             position: relative;
  3.             top: -9px;
  4.             border: 0;
  5.             transition: all 40ms linear;
  6.             margin-top: 10px;
  7.             margin-bottom: 10px;
  8.             margin-left: 2px;
  9.             margin-right: 2px;
  10.         }
  11.  
  12.         .p_btn3d:active,
  13.         .p_btn3d.active {
  14.             top: 2px;
  15.         }
  16.  
  17.         .p_btn3d.btn-magick {
  18.             color: #fff;
  19.             box-shadow: 0 0 0 1px #9a00cd inset, 0 0 0 2px rgba(214, 2, 233, 0.15) inset, 0 8px 0 0 #9823d5, 0 12px 22px 3px rgba(160, 4, 233, 0.5);
  20.             background-color: #bb39d7;
  21.             height: 116px;
  22.             font-size: 22px;
  23.             font-weight: bold;
  24.             border-radius: 5px;
  25.             border: 1px #d15bf8 solid;
  26.         }
  27.  
  28.         .p_btn3d.btn-magick:active,
  29.         .p_btn3d.btn-magick.active {
  30.             box-shadow: 0 0 0 1px #9a00cd inset, 0 0 0 1px rgba(193, 7, 240, 0.15) inset, 0 1px 3px 1px rgba(182, 7, 226, 0.3);
  31.             background-color: #bb39d7;
  32.         }
  33.  
  34.         .p_border_r {
  35.             background-color: rgba(255, 255, 255, 0.8);
  36.             border-radius: 5px;
  37.             z-index: 2;
  38.             background: linear-gradient(45deg, rgba(255, 200, 250, 0.5) 0%, rgba(253, 196, 255, 0.5) 20%, transparent 20.3%, transparent 80%, rgba(242, 190, 255, 0.5) 80.3%);
  39.         }
  40.  
  41.         .p_border_r::after {
  42.             content: '';
  43.             position: absolute;
  44.             z-index: -1;
  45.             left: 6px;
  46.             top: 6px;
  47.             width: calc(100% - 12px);
  48.             height: calc(100% - 12px);
  49.             background: #bb39d7;
  50.             border-radius: 5px;
  51.         }
Add Comment
Please, Sign In to add comment