Advertisement
100hahahaha

Untitled

Oct 23rd, 2024
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.65 KB | None | 0 0
  1. body{
  2.     width: 100%;
  3.     height: 100%;
  4. }
  5.  
  6. main{
  7.     width: 80%;
  8.     margin-left: 10%;
  9.     margin-right: 10%;
  10.     margin-top: 2%;
  11.     background-color: rgb(221, 208, 231);
  12.     padding-bottom: 3%;
  13. }
  14. main h1{
  15.     font-size: 200%;
  16.     font-family:'Lucida Grande';
  17.     text-align: center;
  18.     color: rgb(97, 32, 46);
  19.     text-shadow: 4px 3px 0px #fff, 9px 8px 0px rgba(0,0,0,0.15);
  20.  
  21. }
  22.  
  23. .vvod{
  24.     margin-left: 15%;
  25.     margin-right: 15%;
  26.     display: flex;
  27.     flex-direction: column;
  28. }
  29.  
  30. form{
  31.     margin: auto;
  32.     padding: 10px;
  33.     border: 1px solid rgb(50, 11, 11);
  34.     border-radius: 10px;
  35.     background-color: rgb(220, 161, 161);
  36.     display: flex;
  37.     flex-direction: column;
  38. }
  39.  
  40.  
  41. .vvod form p{
  42.     font-size: 150%;
  43.     font-family:'Lucida Grande';
  44.     color: rgb(59, 8, 8);
  45. }
  46. .vvod form input{
  47.     width: 30%;
  48.     margin-left: 35%;
  49. }
  50.  
  51. .vvod form button{
  52.     width: 32%;
  53.     font-size: 110%;
  54.     font-family:'Lucida Grande';
  55.     color: rgb(59, 8, 8);
  56.     text-align: center;
  57.     margin-left: 35%;
  58.     margin-top: 3%;
  59. }
  60.  
  61. .msg{
  62.     font-size: 150%;
  63.     font-family:'Lucida Grande';
  64.     color: rgb(59, 8, 8);
  65.     text-align: center;
  66. }
  67.  
  68. .image{
  69.     margin-left: 15%;
  70.     margin-right: 15%;
  71.     display: flex;
  72.     flex-direction: column;
  73. }
  74. .image h2{
  75.     font-size: 180%;
  76.     font-family:'Lucida Grande';
  77.     text-align: center;
  78.     color: rgb(97, 32, 46);
  79. }
  80.  
  81. .image p{
  82.     text-align: center;
  83.     font-size: 150%;
  84.     font-family:'Lucida Grande';
  85.     color: rgb(59, 8, 8);
  86. }
  87.  
  88. img{
  89.     width: 600px;
  90.     height: 600px;
  91.     border: 1px solid rgb(59, 8, 8);
  92.     border-radius: 10px;
  93.     margin: auto;
  94. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement