Advertisement
Guest User

Untitled

a guest
Nov 19th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1.  
  2. body{
  3. background-color: #000;
  4. }
  5. *{
  6. margin: 0;
  7. padding: 0;
  8. }
  9.  
  10. .navbar{
  11. display: flex !important;
  12. justify-content: space-between !important;
  13. font-family: 'Montserrat', sans-serif;
  14.  
  15. }
  16.  
  17. .menu ul li{
  18. display: flex;
  19. float: right;
  20. list-style-type:none ;
  21. }
  22.  
  23. .menu li{
  24. padding-right: 15px;
  25. }
  26.  
  27. .menu li a{
  28. color: #fff;
  29. }
  30. /*
  31. .wrapper{
  32. width: 100%;
  33. height: 700px;
  34. background-color: #949494;
  35. background: url('../images/image.png') no-repeat ;
  36. }
  37. .banner{
  38. width: 100%;
  39. height: 75px;
  40. background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
  41. }
  42.  
  43. .leftside{
  44. font-family: 'Nanum Gothic', sans-serif;
  45. }
  46. */
  47.  
  48. /* Selection divtop */
  49. .welcome{
  50. height:800px;
  51. background-repeat: no-repeat;
  52. background-position: center;
  53. background-size: cover;
  54. position: relative;
  55. }
  56. .welcome .content-welcome{
  57. position: absolute;
  58. top: 50%;
  59. left: 50%;
  60. transform: translate(-50%,-50%);
  61. }
  62. .content-welcome h2{
  63. color: white;
  64. font-size: 36px;
  65. text-align: center;
  66. }
  67. .content-welcome p{
  68. color: white;
  69. font-size: 18px;
  70. text-align: center;
  71. padding-top: 30px;
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement