add-footer.component.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .imgProfile {
  2. width: 70px;
  3. height: 70px;
  4. border-radius: 20px 20px 0 0;
  5. border-radius: 50%;
  6. border: 1px solid #ccc;
  7. }
  8. .imgContainer {
  9. width: 200px;
  10. position: relative;
  11. border-radius: 20px;
  12. margin: 30px auto;
  13. }
  14. .iconUpload-w {
  15. width: 30px;
  16. font-size: 1.25em;
  17. font-weight: 700;
  18. color: #252525;
  19. display: inline-block;
  20. border-radius: 0 0 20px 20px;
  21. position: absolute;
  22. right: 37px;
  23. border: 1px solid #ccc;
  24. border-radius: 50%;
  25. bottom: 0;
  26. right: 42%;
  27. }
  28. .inputfile {
  29. width: 0.1px;
  30. height: 0.1px;
  31. opacity: 0;
  32. overflow: hidden;
  33. position: absolute;
  34. z-index: -1;
  35. }
  36. /* .inputfile + label {
  37. width: 100%;
  38. font-size: 1.25em;
  39. font-weight: 700;
  40. color: #252525;
  41. background-color: transparent;
  42. display: inline-block;
  43. border: 1px solid #ccc;
  44. border-radius: 0 0 20px 20px;
  45. } */
  46. .inputfile:focus + label,
  47. .inputfile + label:hover {
  48. background-color: #00a99d;
  49. color: #fff;
  50. }
  51. .inputfile + label {
  52. cursor: pointer; /* "hand" cursor */
  53. }
  54. .inputfile:focus + label {
  55. outline: 1px dotted #000;
  56. outline: -webkit-focus-ring-color auto 5px;
  57. }
  58. .rightW {
  59. display: block;
  60. margin: 20px 0;
  61. }
  62. input,select {
  63. font-size: 12px;
  64. background-color: #f9f9f9;
  65. border: 2px solid #bda380;
  66. }