Advertisement
bebo231312312321

Untitled

Mar 21st, 2024
464
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. .create-stories {
  2.     display: flex;
  3.     justify-content: center;
  4.     align-items: center;
  5.     /* height: 100vh; */
  6.     flex-direction: column;
  7.     position: relative;
  8.     min-height: 100vh;
  9.   }
  10.   .create-stories::before {
  11.     content: "";
  12.     position: absolute;
  13.    
  14.     top: 0;
  15.     left: 0;
  16.     right: 0;
  17.     bottom: 0;
  18.     background-image: url('/assets/media/story.webp');
  19.     background-repeat: no-repeat;
  20.     background-position: center;
  21.     background-size: cover;
  22.     /* filter: blur(5px); */
  23.     filter: brightness(65%) blur(1px) contrast(120%);
  24.     z-index: -1;
  25.   }
  26.   .create-stories h2{
  27.     padding-bottom: 2em;
  28.     font-weight: 600;
  29.     -webkit-text-stroke: 0.8px rgb(168, 239, 255, 0.4);
  30.     font-size: 3em;
  31.     color: white;
  32.     transition: all 0.5s ease;
  33.   }
  34.   .stories-create {
  35.     background-color: rgba(247, 247, 247, 0.2); /* Прозрачен фон */
  36.     display: flex;
  37.     /* flex-wrap: nowrap; */
  38.     padding: 20px;
  39.     justify-content: space-between;
  40.     border-radius: 10px;
  41.     box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5); /* Сянка */
  42.     max-width: 1400px;
  43.     width: 100%;
  44.   }
  45.   .first{
  46.     flex: 0 0 50%;
  47.   }
  48.   .second{
  49.     flex: 0 0 50%;
  50.   }
  51.  
  52.   .stories-create form {
  53.     display: flex;
  54.     flex-direction: column;
  55.   }
  56.  
  57.   .stories-create form > div {
  58.     margin-bottom: 15px;
  59.   }
  60.  
  61.   .stories-create label {
  62.     font-weight: bold;
  63.   }
  64.  
  65.   .stories-create input[type="text"],
  66.   .stories-create textarea {
  67.     width: 100%;
  68.     padding: 8px;
  69.     border: 1px solid #ccc;
  70.     border-radius: 5px;
  71.   }
  72.  
  73.   .stories-create input[type="file"] {
  74.     width: 100%;
  75.   }
  76.  
  77.   .stories-create button {
  78.     padding: 10px;
  79.     border: none;
  80.     border-radius: 5px;
  81.     background-color: #007bff;
  82.     color: white;
  83.     cursor: pointer;
  84.   }
  85.  
  86.   .stories-create button:disabled {
  87.     background-color: #ccc;
  88.     cursor: not-allowed;
  89.   }
  90.  
  91.   .stories-create img {
  92.     max-width: 100%;
  93.     margin-top: 10px;
  94.     border-radius: 5px;
  95.   }
  96.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement