devamit

Community Blocker - CSS

Aug 3rd, 2021 (edited)
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.27 KB | None | 0 0
  1. #age-verification {
  2.   position: fixed;
  3.   top: 0;
  4.   left: 0;
  5.   right: 0;
  6.   bottom: 0;
  7.   background-color: rgba(0, 0, 0, 0.95);
  8.   -webkit-transition: 500ms;
  9.   transition: 500ms;
  10.   z-index: 90000001;  
  11.   display: none;
  12. }
  13. .age-verification-main {
  14.   background-image: linear-gradient(90deg, #FE8C0C 18%, #3DC4E1 100%);
  15.   color: #fff;
  16.   font-size: 14pt;
  17.   text-align: center;
  18.   padding:50px 30px;  
  19.   position: relative;
  20.   top:10px;
  21.   width:520px;
  22.   max-width:100%;
  23.   margin: 0 auto;
  24.   -webkit-box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
  25.   -moz-box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
  26.   box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
  27. }
  28. .age-title, .age-main-text {
  29.   display: block;
  30.   margin-bottom: 1em;
  31. }
  32. .age-title {
  33.   font-size: 24pt;
  34.   margin-bottom: 0.5em;
  35. }
  36. .age-button {
  37.     background: #000;
  38.     font-size: 14pt;
  39.     display: inline-block;
  40.     width: 160px;
  41.     padding: 10px;color:#fff;
  42.     margin: 5px 10px;
  43.     -webkit-box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
  44.     -moz-box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
  45.     box-shadow: 1px 2px 9px 0px rgba(0,0,0,0.3);
  46.     border-radius:5px;
  47. }
  48. button.age-button.age-no {
  49.     background:#f28205;
  50. }
  51.  
  52.  
  53. @media only screen and (min-height: 640px) {
  54.   .age-verification-main {
  55.     top: 40%;
  56.   }
  57. }
Add Comment
Please, Sign In to add comment