blob: e208bbfe9ccd82d8015520a3adbe3f17e33c2836 (
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
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
.image {
display: block;
width: auto;
height: auto;
border: 5px double;
}
.image img {
width: 100%;
}
.overlay {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: auto;
width: 100%;
opacity: 0;
transition: .5s ease;
background-color: rgba(35, 41, 49, 0.51);
}
.con:hover .overlay {
opacity: 1;
}
.text {
color: white;
font-size: 20px;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
text-align: center;
}
.text a{
color: #ffffff;
}
.text a:hover {
color: #ffffff;
}
.images {
position: relative;
width: 100%;
}
/*
h3 .titlelab a{
position:relative;
top: 200px;
left: 0;
width: 100%;
text-align:center;
color: wheat;
}
*/
.view-id-laboratories h3 a{
position: absolute;
left: 10px;
width: 100%;
bottom: 5em;
text-align: center;
color: #EFE5EC;
top:240px;
}
.view-id-laboratories h3 img{
border: 5px double;
}
.view-id-laboratories h3 a:hover {
color: #ffffff;
}
/*recruters node*/
.a{
padding: 0px;
float: none;
}
/*recruters view*/
/* override position and transform in 3.3.x */
.carousel-inner .item.left.active {
transform: translateX(-33%);
}
.carousel-inner .item.right.active {
transform: translateX(33%);
}
.carousel-inner .item.next {
transform: translateX(33%)
}
.carousel-inner .item.prev {
transform: translateX(-33%)
}
.carousel-inner .item.right,
.carousel-inner .item.left {
transform: translateX(0);
}
.carousel-control.left,.carousel-control.right {background-image:none;}
|