source: trip-planner-front/node_modules/primeng/resources/components/sidebar/sidebar.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.5 KB
Line 
1.p-sidebar {
2 position: fixed;
3 transition: transform .3s;
4 display: flex;
5 flex-direction: column;
6}
7
8.p-sidebar-content {
9 position: relative;
10 overflow-y: auto;
11}
12
13.p-sidebar-header {
14 display: flex;
15 align-items: center;
16 justify-content: flex-end;
17}
18
19.p-sidebar-icon {
20 display: flex;
21 align-items: center;
22 justify-content: center;
23}
24
25.p-sidebar-left {
26 top: 0;
27 left: 0;
28 width: 20rem;
29 height: 100%;
30}
31
32.p-sidebar-right {
33 top: 0;
34 right: 0;
35 width: 20rem;
36 height: 100%;
37}
38
39.p-sidebar-top {
40 top: 0;
41 left: 0;
42 width: 100%;
43 height: 10rem;
44}
45
46.p-sidebar-bottom {
47 bottom: 0;
48 left: 0;
49 width: 100%;
50 height: 10rem;
51}
52
53.p-sidebar-full {
54 width: 100%;
55 height: 100%;
56 top: 0;
57 left: 0;
58 -webkit-transition: none;
59 transition: none;
60}
61
62.p-sidebar-left.p-sidebar-sm,
63.p-sidebar-right.p-sidebar-sm {
64 width: 20rem;
65}
66
67.p-sidebar-left.p-sidebar-md,
68.p-sidebar-right.p-sidebar-md {
69 width: 40rem;
70}
71
72.p-sidebar-left.p-sidebar-lg,
73.p-sidebar-right.p-sidebar-lg {
74 width: 60rem;
75}
76
77.p-sidebar-top.p-sidebar-sm,
78.p-sidebar-bottom.p-sidebar-sm {
79 height: 10rem;
80}
81
82.p-sidebar-top.p-sidebar-md,
83.p-sidebar-bottom.p-sidebar-md {
84 height: 20rem;
85}
86
87.p-sidebar-top.p-sidebar-lg,
88.p-sidebar-bottom.p-sidebar-lg {
89 height: 30rem;
90}
91
92@media screen and (max-width: 64em) {
93 .p-sidebar-left.p-sidebar-lg,
94 .p-sidebar-left.p-sidebar-md,
95 .p-sidebar-right.p-sidebar-lg,
96 .p-sidebar-right.p-sidebar-md {
97 width: 20rem;
98 }
99}
Note: See TracBrowser for help on using the repository browser.