12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- /* Authors : Carlos C. Corrada-Bravo
- David J. Ortiz-Rivera
-
- Organization : Centro de Desarrollo y Consultoria Computacional
- Project : OPASO Material Registry
- File : add.css
- Description : Styling for add forms */
-
- .add-personnel,.add-laboratory{
- display: block;
- text-align: left;
- margin-top: 15px;
- }
-
- .ap-field{
- float: left;
- width: 100%;
- height: 35px;
- padding: 7.5px;
- color: #202124;
- text-align: left;
- position: relative;
- margin-bottom: 15px;
- border-radius: 2.5px;
- display: inline-block;
- border: 1px solid rgb(218,220,224);
- }
-
- .form-label{
- color: #202124;
- font-size: 15px;
- }
-
- .li-append{
- width: 100%;
- float: left;
- display: inline-block;
- }
-
- .laboratory{
- float: left;
- display: inline-block;
- }
-
- .medium-field{
- width: 55%;
- }
- .quasi-medium-field{
- width: 40%;
- }
- .large-field{
- width: 100%;
- }
- .small-field{
- width: 45%;
- }
- .extra-small-field{
- width: 3.5%;
- }
- .number-field{
- width: 7.5%;
- }
-
- .li-wrapper{
- display: inline-block;
- }
- .margin-left{
- padding-left: 7.5px;
- }
-
- .li-append .li-wrapper{
- float: left;
- display: inline-block;
- }
-
- .pi{
- padding: 2.5px;
- }
-
- .invalid-feedback{
- margin-bottom: 5px;
- }
|