Changes for page Presentation Test Page

Last modified by Erik Bakker on 2024/07/30 14:39

From version 15.1
edited by Erik Bakker
on 2024/07/30 11:06
Change comment: There is no comment for this version
To version 20.1
edited by Erik Bakker
on 2024/07/30 11:31
Change comment: There is no comment for this version

Summary

Details

XWiki.StyleSheetExtension[0]
Code
... ... @@ -1,23 +1,49 @@
1 -.carousel-item-slide{
2 - -webkit-text-size-adjust: 100%;
3 - -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
4 - --rem: 16;
5 - font-family: Ubuntu,sans-serif;
6 - line-height: 1.428571429;
7 - color: #10137e;
8 - white-space: normal;
1 +.carousel {
2 + background: #503d75;
3 + overflow: hidden;
4 + margin: auto;
5 +}
6 +.carousel-inner {
7 + position: relative;
8 + width: 100%;
9 + overflow: hidden;
10 +}
11 +.carousel .carousel-inner .carousel-item {
9 9   font-size: 20px;
10 - box-sizing: border-box;
13 + page-break-after: always;
14 +}
15 +.carousel .carousel-inner .carousel-item .carousel-item-slide {
16 + width: 100%;
17 + height: 100%;
11 11   margin: auto;
12 12   overflow: hidden;
13 - background-color: lightBlue;
20 + background-color: burlywood;
14 14   box-shadow: 0 0 2px #888;
15 15   display: table;
16 16   table-layout: fixed;
17 - position: absolute;
18 - -webkit-transform-origin: top left;
19 - width: 900px;
20 - height: 675px;
21 - transform: scale(0.617778);
22 - left: 134px;
23 - top: 0px;}
24 +}
25 +.carousel-item-slide {
26 + -webkit-text-size-adjust: 100%;
27 + -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
28 + --rem: 16;
29 + font-family: Ubuntu, sans-serif;
30 + line-height: 1.428571429;
31 + color: #207e10;
32 + white-space: normal;
33 + font-size: 40px;
34 + box-sizing: border-box;
35 +}
36 +.carousel .carousel-inner .carousel-item.header .carousel-item-slide-content {
37 + text-align: center;
38 + vertical-align: middle;
39 +}
40 +.carousel .carousel-inner .carousel-item .carousel-item-slide .carousel-item-slide-content {
41 + font-family: 'Ubuntu, sans-serif';
42 + display: table-cell;
43 + padding: 1em 4em 1em 4em;
44 +}
45 +.carousel .carousel-inner .carousel-item .carousel-item-slide .carousel-item-slide-content h2 {
46 + font-size: 3.1em;
47 + margin-bottom: .3em;
48 + color: green;
49 +}