123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- *{
- margin: 0;
- }
- .wrapper{
- display: flex;
- flex-direction: column;
- max-width: 400px;
- align-items: center;
- }
- button{
- align-self: center;
- width: 100px;
- }
- input, button{
- margin-bottom: 7px;
- }
- input{
- margin-right: 10px;
- width: 200px;
- box-sizing: border-box;
- }
- .error{
- color: red;
- position: absolute;
- left: 210px;
- width: 100px;
- }
- .stringWrapper{
- display: flex;
- position: relative
- }
- .mandatory{
- color: red;
- position: absolute;
- left: -10px;
- top: 4px
- }
- .checkBoxWrapper{
- display: flex;
- max-width: 200px;
- justify-content: space-around;
- position: relative;
- }
- .checkBoxWrapper p {
- position: relative;
- top: -3px;
- left: 30px;
- }
|