Advertisement
Guest User

Untitled

a guest
Sep 21st, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. body,html{
  2.  
  3. background-image: url("img9.jpg");
  4. background-repeat: no-repeat;
  5. background-position: center;
  6. height:100%;
  7. background-attachment: fixed;
  8. background-size:cover;
  9. }
  10.  
  11. *{
  12. text-decoration:none;
  13. }
  14.  
  15. button {
  16. color:blue;
  17. }
  18. .wrapper {
  19. display:flex;
  20. flex-wrap: wrap;
  21. }
  22.  
  23. .searchrslts {
  24. display:none;
  25. width:fit-content;
  26. }
  27.  
  28. p{
  29. color:black;
  30. }
  31.  
  32. .searchrslts p{
  33. color:white !important;
  34. }
  35.  
  36. .item {
  37. flex:20%;
  38. }
  39.  
  40. .items {
  41. padding:40px;
  42. background-color: #575d56c4;
  43. margin:2%;
  44. border-radius:4%;
  45. box-shadow: 2px 2px 40px;
  46. }
  47.  
  48. .btn1{
  49. background-color:#76D7C4;
  50. border: 3px;
  51. padding: 6px 8px;
  52. cursor: pointer;
  53. overflow:hidden;
  54. border-radius: 15px;
  55. }
  56.  
  57.  
  58. .btn2{
  59. background-color:#B2BABB ;
  60. border: 3px;
  61. padding: 6px 8px ;
  62. cursor: pointer;
  63. border-radius: 15px;
  64. }
  65.  
  66. .btn3{
  67. background-color:#5DADE2;
  68. border: none;
  69. padding: 6px 8px;
  70. cursor: pointer;
  71. border-radius: 15px;
  72. }
  73.  
  74.  
  75. .image {
  76. border-radius:55%;
  77. }
  78. .bttn4{
  79. background-color:#F3F5F6;
  80. height:30px;
  81. width:70px;
  82. cursor: pointer;
  83. border-radius: 15px;
  84. }
  85.  
  86. #validate{
  87. width:17%;
  88. height:25px;
  89. margin-top:6px;
  90. background-color:#E4E4E4;
  91. border-radius: 15px;
  92. }
  93. p{
  94. margin:0;
  95. position:relative;
  96. left:24px;
  97. color:white;
  98. }
  99.  
  100. h1{
  101.  
  102. font-style: oblique;
  103. font-size:60px;
  104. }
  105. .search{
  106. position:relative;
  107. left:1000px;
  108. }
  109.  
  110. .results p{
  111. color:black;
  112. }
  113.  
  114. .bg-modal{
  115. width: 100%;
  116. height: 100%;
  117. background-color: rgba(0, 0, 0, 0.7);
  118. opacity: 0.7;
  119. position: absolute;
  120. top: 0;
  121. display: flex;
  122. justify-content: center;
  123. align-items: center;
  124. display: none;
  125. }
  126. .modal-content{
  127. width: 500px;
  128. height: 300px;
  129. background-color: white;
  130. border-radius: 4px;
  131. text-align:center;
  132. padding: 20px;
  133. position: relative;
  134. }
  135. input{
  136. width: 50px;
  137. display: black;
  138. margin: 15px auto;
  139. }
  140. .close{
  141. position: absolute;
  142. top: 0;
  143. right: 14px;
  144. font-size: 42px;
  145. transform: rotate(45deg);
  146. cursor: pointer;
  147. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement