Advertisement
Guest User

css

a guest
Nov 2nd, 2015
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. body{
  2. background-color: #fc2d47;
  3. font-family: 'Segoe UI';
  4. font-size: 24px;
  5. font-style: normal;
  6. font-variant: normal;
  7. font-weight: 500;
  8. line-height: 26.4px;
  9. text-shadow: 0.1em 0.1em 0.1em black
  10. }
  11.  
  12. #linksmenu {
  13. margin: auto;
  14. margin-left: 0px;
  15. }
  16.  
  17. #links {
  18. float: left;
  19. padding-left: 50px;
  20. padding-right: 90px;
  21. font-size: 15px;
  22. padding-top: 10px;
  23. padding-bottom: 10px;
  24. position: relative;
  25. color: #656565;
  26. top: 210px;
  27. left: 0px;
  28. font-family: "Segoe UI";
  29. -moz-transition: all .5s linear;
  30. -ms-transition: all .5s linear;
  31. -o-transition: all .5s linear;
  32. -webkit-transition: all .5s linear;
  33. }
  34.  
  35. #links:hover {
  36. opacity: 0.7;
  37. color: #FFFFFF;
  38. }
  39.  
  40. #menu-lateral {
  41. background-color: #191717;
  42. position: fixed;
  43. left: 0px;
  44. top: 0px;
  45. width: 190px;
  46. height: 100%;
  47. z-index: 1;
  48. }
  49.  
  50. .arrow-left {
  51. width: 0;
  52. height: 0;
  53. border-top: 10px solid transparent;
  54. border-bottom: 10px solid transparent;
  55. border-right:10px solid blue;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement