PluginProbe
Cool Flipbox – Shortcode & Gutenberg Block / 1.4
Cool Flipbox – Shortcode & Gutenberg Block v1.4
trunk 1.4 1.5 1.6 1.6.2 1.7.1 1.8.3 1.9.0 1.9.1 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1
flip-boxes / assets / css / flipboxes.css

flipboxes.css in Cool Flipbox – Shortcode & Gutenberg Block 1.4, at assets/css/flipboxes.css

150 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1
2 /*
3 **
4 */
5 .cfb_wrapper {
6 display: flex;
7 flex-wrap: wrap;
8
9 }
10
11 .flipbox-title {
12 text-align: -webkit-center;
13 text-align:center;
14 font-size: larger;
15 font-family: monospace;
16 }
17 .flip {
18 -webkit-perspective: 800;
19 perspective: 800;
20 position: relative;
21 text-align: center;
22 margin-bottom:30px;
23 }
24 .face{
25 word-break: break-all;
26 word-break: break-word;
27 height: auto!important;
28 }
29 .flip .x .front, .flip .y .front {
30 position: absolute;
31 z-index: 1;
32 width: 100%;
33 }
34 .flip .x img, .flip .y img{
35
36 border: 2px solid #000;
37 object-fit: cover;
38 }
39
40 .aio-icon-img {
41 width: 2em;
42 max-width: 100%!important;
43 -webkit-border-radius: 0!important;
44 border-radius: 0!important;
45 -webkit-box-shadow: none!important;
46 box-shadow: none!important;
47 display: block;
48 font-size: inherit;
49 }
50
51 .ifb-flip-box-section {
52 display: block;
53 position: relative;
54 top: 0;
55 transform: none;
56 height: auto;
57
58 padding: 30px;
59 }
60
61 .ifb-flip-box-section-content p {
62 padding: 0px;
63 margin: 13px!important;
64 }
65
66 .ifb-flip-box-section-content h3 {
67 margin-top:-1.565217em !important;
68
69
70 }
71 button.btn.btn-default {
72 position: relative;
73 display: inline-block;
74 }
75
76 .inner{
77 height: 100%;
78 }
79 .flip .inner img {
80 z-index: 1;
81 border: 2px solid #000;
82 width: 100%;
83 height: -webkit-fill-available;
84 object-fit: cover;
85 }
86
87 .face.back .flip_link a{
88 color:#fff;
89 }
90 .flip-label{
91 margin-top:5px;
92 }
93 .flip-box-icon_default {
94 margin-top: -28px;
95 }
96
97 .flip .inner-with-image img{
98 z-index: 1;
99 border: 2px solid #000;
100 width: 100%;
101
102 min-height: 300px;
103 object-fit: cover;
104 }
105 .ifb-flip-box-section-with-image .inner{
106 min-height: 300px;
107 }
108 .image-label {
109 margin-top: 20px;
110 }
111 .back .text-center{
112 padding: 30px!important;
113 }
114 .default-label {
115 margin-top: -26px !important;
116 }
117 .inner-with-image {
118 min-height: 300px;
119 }
120
121 .face.back p, .with-image .image-title {
122 color: #ffffff;
123 }
124
125 @media screen and (orientation:landscape) {
126
127 .inner-with-image img {
128 height: 300px;
129 vertical-align: middle;
130 }
131 .ifb-flip-box-section-with-image{
132 height: 300px;
133 }
134
135 }
136
137 @media only screen
138 and (min-device-width : 768px)
139 and (max-device-width : 1024px)
140 and (orientation : portrait) {
141 .inner-with-image img {
142 height: 300px;
143
144 }
145 .ifb-flip-box-section-with-image{
146 height: 300px;
147 }
148 }
149
150