Advertisement
Femn0X

Main css

Apr 29th, 2025
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.98 KB | Software | 0 0
  1. body{
  2.     background-image:url("bg.jpeg");
  3.     background-color:forestgreen;/*if bg.jpeg not found this applys*/
  4.     background-size:cover;
  5. }
  6. header{
  7.     background-color:rgba(255,255.255,50%);
  8. }
  9. :root{
  10.     --footer-height:-10px;
  11. }
  12. .tlgray{
  13.     background-image:linear-gradient(to top,#333,#555);
  14.     opacity: 0.9;
  15. }
  16. .transp{
  17.     color: #fff;
  18.     background-color:rgba(0,0,0,0.5)
  19. }
  20. .tab{
  21.     height:20px;
  22. }
  23. footer{
  24.     position: fixed;
  25.     left:0;
  26.     width: 100%;
  27.     background-image:linear-gradient(to bottom,#333,#555);
  28.     padding:20px;
  29.     box-sizing: border-box;
  30.     z-index: 1000;
  31.     transition: bottom 0.3s ease-in-out;
  32.     height:var(--footer-height);
  33. }
  34. input[type="text"]{
  35.     font-size: 16px;
  36.     padding: 10px;
  37.     border: 1px solid #ccc;
  38.     border-radius:5px;
  39.     width: 300px;
  40.     box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  41. }
  42. input[type="email"],input[type="password"]{
  43.     padding: 8px;
  44.     border: 2px solid black;
  45.     border-radius:3px;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement