File size: 950 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.tooltip {
    position: relative;
    display: inline-block;
}
.error{
  border:1px solid red;
}
.tooltip .tooltiptext {
    visibility: hidden;
    background-color: #c64b4b;
    border: solid 1px #a1363b;
    box-shadow: 1px 1px 3px #a1363b;
    color: white;
    font-size: 12px;
    padding: 10px;
    min-height: 35px;
    min-width: 200px;
    box-sizing: border-box;
    border-radius: 5px;
    text-align: center;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: -1px;
    right: 105%;
}


.tooltip:hover .tooltiptext {
    visibility: visible;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    top: 50%;
    left: 100%; /* To the right of the tooltip */
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #c64b4b;
}
.error {
  border: solid 1px #c64b4b !important;
}
.profile-text{
  margin-left:-10px;
}