Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. /*------------ Edition club -------------*/
  2. .editC{
  3. position: absolute;
  4. top: 45%;
  5. left: 50%;
  6. transform: translate(-50%, -50%);
  7. background-color: #0B0B3B;
  8. width: 27%;
  9. height: 60%;
  10. padding : 2%;
  11. text-align: center;
  12. opacity: 0.90;
  13. border-radius: 20px;
  14. }
  15. .editC input[type="text"],.editC input[type="password"],.editC input[type="email"]{
  16. border: 0;
  17. background: none;
  18. margin: 20px auto;
  19. display: block;
  20. text-align: center;
  21. border : 2px solid #34ace0;
  22. padding : 12px 10px;
  23. width: 200px;
  24. outline : none;
  25. color : white;
  26. border-radius: 24px;
  27. transition : 0.25s;
  28. }
  29. .editC input[type="text"]:focus,.editC input[type="password"]:focus,.editC input[type="email"]:focus{
  30. border-color : #82ccdd;
  31. }
  32.  
  33. .editC h2{
  34. color : white;
  35. font-weight : 500;
  36. font-size: 200%;
  37. margin-bottom: 20%;
  38. text-decoration: underline #34ace0;
  39. }
  40. .editC label{
  41. color: white;
  42. }
  43.  
  44. .editC input[type="submit"]{
  45. border: 0;
  46. font-size: 12pt;
  47. background: none;
  48. margin: 0.5% auto;
  49. display: block;
  50. text-align: center;
  51. border : 2px solid #16a085;
  52. padding : 0.2% 1.5%;
  53. width: 45%;
  54. height: 10%;
  55. outline : none;
  56. color : white;
  57. border-radius: 24px;
  58. cursor: pointer;
  59. transition: 0.25s;
  60. }
  61.  
  62. .editC input[type="submit"]:hover{
  63. background-color: #16a085;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement