Advertisement
Guest User

Untitled

a guest
Jan 19th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. @font-face {
  2. font-family: 'Nexa Black';
  3. src: url('../fonts/nexa_black.ttf') /* TTF file for CSS3 browsers */
  4. }
  5.  
  6. @font-face {
  7. font-family: 'Nexa Regular';
  8. src: url('../fonts/nexa_regular.ttf') /* TTF file for CSS3 browsers */
  9. }
  10. .menu {
  11. font-family: 'Open Sans', sans-serif;
  12. font-size: 18px;
  13. min-width : 400px;
  14. min-height: 400px;
  15. color : white;
  16. position : absolute;
  17. }
  18.  
  19. .menu.align-left {
  20. left: 40;
  21. top : 50%;
  22. transform: translate(0, -50%);
  23. }
  24.  
  25. .menu.align-top-left {
  26. left: 40;
  27. top : 40;
  28. }
  29.  
  30. .menu.align-top {
  31. left: 50%;
  32. top : 40;
  33. transform: translate(-50%, 0);
  34. }
  35.  
  36. .menu.align-top-right {
  37. right: 10;
  38. top : 40;
  39. }
  40.  
  41. .menu.align-right {
  42. right: 40;
  43. top : 50%;
  44. transform: translate(0, -50%);
  45. }
  46.  
  47. .menu.align-bottom-right {
  48. right : 40;
  49. bottom: 40;
  50. }
  51.  
  52. .menu.align-bottom {
  53. left : 50%;
  54. bottom: 40;
  55. transform: translate(-50%, 0);
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement