1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- .rightW {
- display: block;
- float: right;
- margin: 20px 0;
- }
- .rightW {
- display: block;
- margin: 20px 0;
- }
- .submittedW {
- margin: 20px 0;
- float: right;
- }
- .arrayGroupForm-w {
- border: 1px solid #ccc;
- padding: 20px;
- border-radius: 20px;
- }
- .imgProfile {
- width: 70px;
- height: 70px;
- border-radius: 20px 20px 0 0;
- border-radius: 50%;
- border: 1px solid #ccc;
- }
- .imgContainer {
- width: 200px;
- position: relative;
- border-radius: 20px;
- margin: 30px auto;
- float: right;
- }
- .iconUpload-w {
- width: 30px;
- font-size: 1.25em;
- font-weight: 700;
- color: #252525;
- display: inline-block;
- border-radius: 0 0 20px 20px;
- position: absolute;
- right: 37px;
- border: 1px solid #ccc;
- border-radius: 50%;
- top: 10px;
- }
- .inputfile {
- width: 0.1px;
- height: 0.1px;
- opacity: 0;
- overflow: hidden;
- position: absolute;
- z-index: -1;
- }
- input {
- font-size: 13px !important;
- }
- /* .inputfile + label {
- width: 100%;
- font-size: 1.25em;
- font-weight: 700;
- color: #252525;
- background-color: transparent;
- display: inline-block;
- border: 1px solid #ccc;
- border-radius: 0 0 20px 20px;
- } */
- .inputfile:focus + label,
- .inputfile + label:hover {
- background-color: #00a99d;
- color: #fff;
- }
- .inputfile + label {
- cursor: pointer; /* "hand" cursor */
- }
- .inputfile:focus + label {
- outline: 1px dotted #000;
- outline: -webkit-focus-ring-color auto 5px;
- }
|