Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. body {
  2. margin: 0;
  3. }
  4.  
  5. .top_navbar {
  6. background-color: #000000;
  7. width: 100%;
  8. height: 50px;
  9. margin: 0;
  10. }
  11.  
  12. .links_container {
  13. height: 100%;
  14. }
  15.  
  16. .nav_links {
  17. height: 100%;
  18. display: flex;
  19. flex-direction: row;
  20. justify-content: space-around;
  21. align-items: center;
  22. margin: 0;
  23. list-style: none;
  24. }
  25.  
  26. .nav_links .current_link {
  27. color: #ffffff;
  28. border-bottom: solid 3px white;
  29. }
  30.  
  31. .nav_links a {
  32. text-decoration: none;
  33. color: #cccccc;
  34. font-size: 20px;
  35. }
  36.  
  37. .nav_links a:hover {
  38. border-bottom: solid 3px white;
  39. }
  40.  
  41. .button_style {
  42. background-color: #b61c1c;
  43. width: 300px;
  44. height: 200px;
  45. border: 0;
  46. font-size: 50px;
  47. border-radius: 50%;
  48. border-bottom-style: solid;
  49. border-bottom-width: 30px;
  50. border-bottom-color: #9e4040;
  51. color: white;
  52. /*padding: 15px 32px; */
  53. text-align: center;
  54. text-decoration: none;
  55. top: 50%;
  56. left: 50%;
  57. transform: translate(-50%, -50%);
  58. position: absolute;
  59. }
  60.  
  61. .button_style:focus {
  62. outline: none;
  63. }
  64.  
  65. .button_style:hover {
  66. cursor: pointer;
  67. }
  68.  
  69. .button_style:active {
  70. outline: none;
  71. border: 0;
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement