Advertisement
Guest User

Untitled

a guest
Nov 16th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. .registerBody {
  2. background-repeat: no-repeat;
  3. background-size: cover;
  4. background-position: center center;
  5. background-fill-mode: rgba(0,0,0,0.5);
  6. display: flex;
  7. justify-content: center;
  8. align-items: center;
  9. height: 450px;
  10. width: 550px;
  11. margin:auto;
  12. position:relative;
  13. }
  14. .registerClass {
  15. background: white;
  16. padding: 20px 25px;
  17. border: 5px solid orange;
  18. width: 550px;
  19. height: auto;
  20. box-sizing: border-box;
  21. position: relative;
  22. }
  23.  
  24. .col.s6 > .btn {
  25. width: 100%;
  26. }
  27.  
  28. .gender-male, .gender-female {
  29. display: inline-block;
  30. }
  31.  
  32. .gender-female {
  33. margin-left: 35px;
  34. }
  35.  
  36. radio:required {
  37. border-color: red;
  38. }
  39.  
  40.  
  41.  
  42. @keyframes showUp {
  43. 0% {
  44. transform: scale(0);
  45. }
  46.  
  47. 100% {
  48. transoform: scale(1);
  49. }
  50. }
  51.  
  52. .row {
  53. margin-bottom: 10px;
  54. }
  55.  
  56. .ngl {
  57. position: absolute;
  58. top: -20px;
  59. right: -20px;
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement