Advertisement
x_xa22

Untitled

Apr 26th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. *{
  2. margin:0;
  3. padding:0;
  4. }
  5. html, body{
  6. height:100%;
  7. }
  8.  
  9. body{
  10. background-color:#228B22;
  11. background-image:url("hiddendeveloperz.jpg.png");
  12. background-position:center;
  13. background-size: cover;
  14. background-blend-mode:soft-light;
  15. }
  16.  
  17. .heading{
  18. width:600px;
  19. height:300px;
  20. margin:auto;
  21. position:absolute;
  22. top:0px; bottom:0px; right:0px; left:0px;
  23. }
  24. .title1{
  25. display: block;
  26. text-align: center;
  27. color:white;
  28. font-size:60pt;
  29. font-family:big john;
  30. }
  31. .title2{
  32. display:block;
  33. margin-top:15px;
  34. text-align: center;
  35. color:white;
  36. font-size:14pt;
  37. font-family:serif;
  38. }
  39. .button{
  40. margin: 50px;
  41. display:block;
  42. width: 180px;
  43. height: 50px;
  44. border: 3px solid white;
  45. background-color:rgba(255,255,255,0);
  46. color: white;
  47. font-family:sans-serif;
  48. font-weight: bold;
  49. border-radius: 5px;
  50.  
  51.  
  52. transition: background-color 1000ms, color 1000ms;
  53. }
  54. .button:hover{
  55. background-color:rgba(255,255,255,1);
  56. color:#222;
  57. cursor:pointer;
  58. transition: background-color 1000ms, color 1000ms;
  59.  
  60. }
  61. headers nav {
  62. background:rgba (211,211,211,0.9);
  63. height:62px;
  64. box-shadow: 2px 3px rgba(0,0,0,.25);
  65.  
  66. }
  67. headers {
  68. float:left;
  69. line-height:70px;
  70. padding: 30px;
  71. font-weight:bold;
  72. text-decoration:none
  73. color:black;
  74. opacity:.;
  75. transition:opacity .25;
  76. display: flex;
  77. list-style:none;
  78. }
  79. headers nav ul {
  80. margin:0;
  81. padding:0;
  82. list-style:none;
  83. float:right;
  84. display:flex;
  85. color:black;
  86. }
  87. headers nav ul li a {
  88. float:left;
  89. line-height:62px;
  90. padding:0 18px;
  91. font-weight:bold;
  92. text-decoration:none;
  93. color:white;
  94. opacity:10;
  95. transition:opacity .25;+
  96. }
  97. headers nav ul li a:hover {
  98. opacity:0;
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement