UNPKG

779 BCSSView Raw
1.Root {
2 display: flex;
3 flex-direction: column;
4 margin-bottom: 16px;
5 position: relative;
6}
7
8.Input {
9 border-radius: 2px;
10 border: 1px solid #E6EAED;
11 display: block;
12 padding: 0.6em 1em;
13 width: 100%;
14 background: #FFF;
15 font-size: 16px;
16 font-family: "citrixsans-regular", sans-serif;
17 -webkit-appearance: none;
18}
19
20.Input:focus {
21 border: 1px solid #14568F;
22 outline: none;
23 background-color: #f8fdff;
24 box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(19, 133, 229, 0.1);
25 transition: all 0.2s ease-in;
26}
27
28.Input[disabled] {
29 background-color: #F3F6F7;
30 cursor: not-allowed;
31}
32
33.Input[required]:focus {
34 border: 1px solid #fec57b !important;
35 background-color: #fff9f2 !important;
36}
37
38.Label {
39 font-weight: bold;
40 margin-bottom: 8px;
41}