Advertisement
Guest User

Untitled

a guest
Apr 25th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. @font-face {
  2. font-family: bankgothic;
  3. src: url('../fonts/bankgothic.ttf');
  4. }
  5.  
  6. @font-face {
  7. font-family: pdown;
  8. src: url('../fonts/pdown.ttf');
  9. }
  10. .menu {
  11. font-family: bankgothic;
  12. min-width : 400px;
  13. color : #fff;
  14. box-shadow : 0px 0px 50px 0px #000;
  15. position : absolute;
  16. }
  17.  
  18. .menu.align-left {
  19. left: 40;
  20. top : 50%;
  21. transform: translate(0, -50%);
  22. }
  23.  
  24. .menu.align-top-left {
  25. left: 40;
  26. top : 40;
  27. }
  28.  
  29. .menu.align-top {
  30. left: 50%;
  31. top : 40;
  32. transform: translate(-50%, 0);
  33. }
  34.  
  35. .menu.align-top-right {
  36. right: 10;
  37. top : 40;
  38. }
  39.  
  40. .menu.align-right {
  41. right: 40;
  42. top : 50%;
  43. transform: translate(0, -50%);
  44. }
  45.  
  46. .menu.align-bottom-right {
  47. right : 40;
  48. bottom: 40;
  49. }
  50.  
  51. .menu.align-bottom {
  52. left : 50%;
  53. bottom: 40;
  54. transform: translate(-50%, 0);
  55. }
  56.  
  57. .menu.align-bottom-left {
  58. left : 40;
  59. bottom: 40;
  60. }
  61.  
  62. .menu.align-center {
  63. left : 50%;
  64. top : 50%;
  65. transform: translate(-50%, -50%);
  66. }
  67.  
  68. .menu .head {
  69. background-color: #282828;
  70. text-align : center;
  71. height : 40px;
  72. line-height : 40px;
  73. }
  74.  
  75. .menu .menu-items {
  76. max-height : 600px;
  77. overflow-y : auto;
  78. }
  79.  
  80. .menu .menu-items .menu-item {
  81. height : 40px;
  82. display : block;
  83. background-color: #282828;
  84. box-shadow : inset 1px 0px 0px 1px #000000;
  85. height : 32px;
  86. line-height : 25px;
  87. color : #FFFFFF;
  88. text-align : center;
  89. }
  90.  
  91. .menu .menu-items .menu-item.selected {
  92. background-color: #404040;
  93. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement