[748a59]: / nih-ct-protocol-ui / src / app / search-criteria / search-criteria.component.css

Download this file

49 lines (44 with data), 834 Bytes

 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
.criterias {
color: black;
padding: 16px;
font-size: 16px;
border: none;
list-style: none;
}
.highlight {
background-color: pink;
}
.hometitle{
font-family: 'Source Sans Pro'
}
.results_list {
margin: 5px 0;
}
.ctep {
background-color: #0F951D;
}
.data {
background-color: #E1C617;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f1f1f1;
width: 260px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
margin-left: 60px;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {}
.dropdown:hover .dropdown-content {display: block;}
.dropdown:hover .dropbtn {background-color: #3e8e41;}