Advertisement
AnindyaBiswas

style

May 17th, 2023
808
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.60 KB | None | 0 0
  1. .nav-tweak{
  2.     background-color: rgba(255, 255, 255, 0);
  3.     backdrop-filter: blur(10px);
  4.     box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.151);
  5. }
  6.  
  7. .welcome{
  8.  
  9.     top:0px;
  10.     background-color: blueviolet;
  11.     background-image: linear-gradient(to right, blueviolet, rgb(196, 134, 255));
  12.     width: 100%;
  13.     padding-top: 250px;
  14.     padding-bottom: 200px;
  15.     text-align: center;
  16.     color: rgb(55, 0, 67);
  17. }
  18.  
  19. .vertical-center{
  20.     margin: 0;
  21.     position: relative;
  22.     top: 48%;
  23.  
  24. }
  25.  
  26. .wp{
  27.     padding: 20px;
  28.     width: 90%;
  29. }
  30.  
  31. .block1{
  32.     background-image: linear-gradient(to right, rgb(43, 226, 110), rgb(105, 255, 145));
  33.     width: 100%;
  34.     height: 500px;
  35.     text-align: center;
  36.     color: rgb(0, 104, 7);
  37.     overflow: hidden;
  38.  
  39. }
  40.  
  41. .block1 a:hover{
  42.     transform: scale(1.1);
  43.    
  44. }
  45.  
  46. .block2{
  47.     background-image: linear-gradient(to right, rgb(150, 226, 43), rgb(238, 255, 105));
  48.     width: 100%;
  49.     height: 500px;
  50.     text-align: center;
  51.     color: rgb(83, 88, 0);
  52.     overflow: hidden;
  53. }
  54.  
  55. .block2 a:hover{
  56.     transform: scale(1.1);
  57.    
  58. }
  59.  
  60. .aboutUs1{
  61.     background-image: linear-gradient(to right, rgb(52, 43, 226), rgb(105, 118, 255));
  62.     width: 100%;
  63.     height: 500px;
  64.     text-align: center;
  65.     color: rgb(43, 0, 88);
  66. }
  67.  
  68. .aboutUs2{
  69.     background-image: linear-gradient(to right, rgb(43, 226, 147), rgb(105, 255, 220));
  70.     width: 100%;
  71.     height: 500px;
  72.     text-align: center;
  73.     color: rgb(0, 82, 88);
  74. }
  75.  
  76. .text1{
  77.     background-image: linear-gradient(to right, rgb(226, 43, 43), rgb(255, 105, 105));
  78.     width: 100%;
  79.     height: 500px;
  80.     text-align: center;
  81.     color: rgb(88, 0, 0);
  82. }
  83.  
  84. .picture{
  85.     padding-top:70px;
  86.     text-align: center;
  87.     padding-bottom: 70px;
  88.     overflow: hidden;
  89.  
  90. }
  91. .img-container{
  92.     border-radius: 30px;
  93.     box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.222);
  94.     width: 100%;
  95.     overflow: hidden;
  96. }
  97.  
  98. .picture img{
  99.     transition: 0.5s;
  100. }
  101.  
  102.  
  103. .picture img:hover{
  104.     transform: scale(1.2);
  105.     transition: 0.5s;
  106. }
  107. .picture .card{
  108.     height: 100%;
  109.     border-radius: 30px;
  110.     width: 100%;
  111.     background-image: linear-gradient(to right, rgb(52, 43, 226), rgb(105, 118, 255));
  112.     color: rgb(0, 0, 85);
  113. }
  114.  
  115. .picture h2{
  116.     opacity: 80%;
  117. }
  118.  
  119. .card-text{
  120.     padding: 50px;
  121.  
  122. }
  123.  
  124.  
  125. a:link{
  126.    
  127.     transition: 0.4s;
  128. }
  129.  
  130. a:link:hover{
  131.     color:rgba(0, 0, 0, 0.4);
  132.  
  133. }
  134.  
  135. .end-text{
  136.     padding-top: 30px;
  137.     padding-bottom: 30px;
  138.     text-align: center;
  139. }
  140.  
  141. .end-text h1{
  142.     opacity: 80%;
  143. }
  144.  
  145. footer{
  146.     padding-top: 100px;
  147.     border-top: 1px solid rgba(0, 0, 0, 0.196);
  148. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement