Advertisement
Guest User

style.css

a guest
Jan 21st, 2020
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. body{
  2. margin: 0;
  3. padding: 0;
  4. background-image: url(SunSet.jpg);
  5.  
  6. }
  7.  
  8. .Desision{
  9. position: absolute;
  10. top: 50%;
  11. left: 50%;
  12. transform: translate(-50%,-50%);
  13.  
  14. }
  15.  
  16. .btn{
  17. border-radius: 25px;
  18. border: 3px solid #00a8ff ;
  19. background: none;
  20. padding: 10px 20px;
  21. width: 200px;
  22. font-size: 25px;
  23. font-family: none ;
  24. cursor: pointer;
  25. margin: 10px;
  26. transition: 0.8s;
  27. position: relative;
  28. overflow: hidden;
  29. }
  30. .btn1,.btn2{
  31. color: #00a8ff;
  32. font-family: montserrat;
  33. }
  34. .btn1:hover,.btn2:hover{
  35. color: #fff;
  36. }
  37. .btn::before{
  38. content: "";
  39. position: absolute;
  40. left: 0px;
  41. width: 100%;
  42. height: 0%;
  43. background: #00a8ff ;
  44. z-index: -1;
  45. transition: 0.8s;
  46. }
  47. .btn1::before,.btn2::before{
  48. top: 0;
  49. border-radius: 0 0 50% 50% ;
  50. }
  51. .btn1:hover::before,.btn2:hover::before{
  52. height: 180%;
  53. }
  54. *{
  55. padding: 0;
  56. margin: 0;
  57. text-decoration: none;
  58. list-style: none;
  59. box-sizing: border-box;
  60. }
  61. body{
  62. font-family: montserrat;
  63. }
  64. nav{
  65. background: #0082e6;
  66. height: 80px;
  67. width: 100%;
  68. }
  69.  
  70.  
  71. nav ul.Navigation{
  72. float: right;
  73. margin-left: 20px;
  74. }
  75. nav ul.Navigation li{
  76. display: inline-block;
  77. line-height: 80px;
  78. padding-right: 20px;
  79. }
  80. nav ul.Navigation li a{
  81. color: white;
  82. font-size: 17px;
  83. padding: 7px 13px;
  84. border-radius: 3px;
  85. text-transform: uppercase;
  86. }
  87.  
  88. label.logo{
  89. color: white;
  90. font-size: 35px;
  91. line-height: 80px;
  92. margin: 40px;
  93. font-weight: bold;
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement