-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.css
69 lines (62 loc) · 1.09 KB
/
App.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
.container {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
.container fieldset{
border: none;
display: flex;
width: 30%;
justify-content: space-between;
}
.input-form{
padding: 5px 12px;
font-size: 14px;
line-height: 20px;
color: #24292e;
vertical-align: middle;
background-color: #ffffff;
background-repeat: no-repeat;
background-position: right 8px center;
border: 1px solid #e1e4e8;
border-radius: 6px;
outline: none;
box-shadow: rgba(225, 228, 232, 0.2) 0px 1px 0px 0px inset;
:focus{
border-color: #0366d6;
outline: none;
box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
}
}
.inputWrapper {
position: relative;
display: flex;
align-items: center;
}
.input {
flex: 1;
}
.toggleButton {
position: absolute;
right: 10px;
background: none;
border: none;
cursor: pointer;
padding: 0;
}