blob: f8d7247671e4d7c4051979c58f9197e4762a68be (
plain)
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
|
.linkPopup-container {
background: white;
box-shadow:
0 10px 20px rgba(0, 0, 0, 0.19),
0 6px 6px rgba(0, 0, 0, 0.23);
top: 0px;
height: 200px;
width: 200px;
// padding: 15px;
border-radius: 3px;
input {
border: 1px solid #b9b9b9;
border-radius: 20px;
height: 25px;
width: 100%;
padding-left: 10px;
}
.divider {
margin: 10px 0;
height: 20px;
width: 100%;
.line {
height: 1px;
background-color: #b9b9b9;
width: 100%;
position: relative;
top: 12px;
}
.divider-text {
width: 20px;
background-color: white;
text-align: center;
position: relative;
margin: auto;
}
}
}
|