source: trip-planner-front/node_modules/primeng/resources/components/lightbox/lightbox.css@ 59329aa

Last change on this file since 59329aa was 59329aa, checked in by Ema <ema_spirova@…>, 3 years ago

adding photos

  • Property mode set to 100644
File size: 1.0 KB
Line 
1.ui-lightbox {
2 position: fixed;
3 display: none;
4 top: 50%;
5 left: 50%;
6 transform: translateX(-50%) translateY(-50%);
7}
8
9.ui-lightbox-content-wrapper {
10 position: relative;
11}
12
13.ui-lightbox-content {
14 position: relative;
15 margin: 0;
16 padding: 0;
17 background-color: #000000;
18}
19
20.ui-lightbox-nav-right, .ui-lightbox-nav-left {
21 position: absolute;
22 top: 50%;
23 cursor: pointer;
24}
25
26.ui-lightbox-nav-left {
27 left: 0;
28}
29
30.ui-lightbox-nav-right {
31 right: 0;
32}
33
34.ui-lightbox-loading .ui-lightbox-content {
35 background: url("./images/loading.gif") #000000 center center no-repeat;
36}
37
38.ui-lightbox-caption {
39 padding: 0.2em 0.4em;
40 display: none;
41}
42
43.ui-lightbox-caption-text {
44 margin: 0.3em 0 0.1em 0;
45 float:left;
46}
47
48.ui-lightbox-close {
49 float:right;
50 margin: 0;
51 padding: .125em;
52}
53
54.ui-lightbox-close.ui-state-hover {
55 padding: 0;
56}
57
58.ui-lightbox-nav-left, .ui-lightbox-nav-right {
59 opacity: .5;
60}
61
62.ui-lightbox-nav-left:hover, .ui-lightbox-nav-right:hover{
63 opacity: 1;
64}
Note: See TracBrowser for help on using the repository browser.