| 1 |
/* |
| 2 |
* Common CSS for all layouts |
| 3 |
*/ |
| 4 |
.cfb_wrapper { |
| 5 |
display: flex; |
| 6 |
flex-wrap: wrap; |
| 7 |
} |
| 8 |
.cfb-flip { |
| 9 |
-webkit-perspective: 800; |
| 10 |
perspective: 800; |
| 11 |
position: relative; |
| 12 |
text-align: center; |
| 13 |
margin-bottom:30px; |
| 14 |
} |
| 15 |
.cfb-face.front { |
| 16 |
height: auto!important; |
| 17 |
} |
| 18 |
.cfb-inner-data { |
| 19 |
word-break: break-all; |
| 20 |
width: 100%; |
| 21 |
word-break: break-word; |
| 22 |
} |
| 23 |
.cfb-face.back .cfb-flip_link a{ |
| 24 |
color:#fff; |
| 25 |
} |
| 26 |
.cfb-extra-label{ |
| 27 |
margin-top:5px; |
| 28 |
} |
| 29 |
.cfb-extra-label { |
| 30 |
margin-top: 20px; |
| 31 |
} |
| 32 |
.cfb-flip_link { |
| 33 |
width: 100%; |
| 34 |
text-align: Center; |
| 35 |
padding: 10px; |
| 36 |
} |
| 37 |
.cfb-link_text { |
| 38 |
display: inline-block; |
| 39 |
background-color: rgba(255, 255, 255, 1); |
| 40 |
font-size: 14px; |
| 41 |
font-family: "Open Sans"; |
| 42 |
font-weight: 300; |
| 43 |
font-style: normal; |
| 44 |
padding: 10px 20px; |
| 45 |
-webkit-border-radius: 40px; |
| 46 |
-moz-border-radius: 40px; |
| 47 |
-ms-border-radius: 40px; |
| 48 |
-o-border-radius: 40px; |
| 49 |
border-radius: 40px; |
| 50 |
word-break: break-word; |
| 51 |
} |
| 52 |
.cfb-link_text:hover{ |
| 53 |
font-weight: 900; |
| 54 |
} |
| 55 |
.cfb-back-desc { |
| 56 |
font-size: 14px; |
| 57 |
font-family: "Open Sans"; |
| 58 |
font-weight: 300; |
| 59 |
font-style: normal; |
| 60 |
} |
| 61 |
.cfb-data { |
| 62 |
display: flex; |
| 63 |
align-items: center; |
| 64 |
/* display: block; */ |
| 65 |
position: relative; |
| 66 |
top: 0; |
| 67 |
transform: none; |
| 68 |
height: auto; |
| 69 |
padding: 30px; |
| 70 |
} |
| 71 |
.cfb-front-desc { |
| 72 |
font-size: 14px; |
| 73 |
font-family: "Open Sans"; |
| 74 |
font-weight: 300; |
| 75 |
font-style: normal; |
| 76 |
} |
| 77 |
.cfb-face.front .cfb-title { |
| 78 |
font-size: 22px; |
| 79 |
font-family: "Open Sans"; |
| 80 |
font-weight: 600; |
| 81 |
font-style: normal; |
| 82 |
margin-bottom: 13px; |
| 83 |
word-break: break-word; |
| 84 |
} |
| 85 |
.cfb-link_text { |
| 86 |
padding: 3px 11px; |
| 87 |
} |
| 88 |
|
| 89 |
|
| 90 |
|
| 91 |
/** |
| 92 |
layout-4 |
| 93 |
**/ |
| 94 |
|
| 95 |
.cfb_wrapper.layout-4 .cfb-face.front { |
| 96 |
height: auto!important; |
| 97 |
transform-style: unset!important; |
| 98 |
} |
| 99 |
|
| 100 |
.cfb_wrapper.layout-4 .cfb-title { |
| 101 |
width: 100%; |
| 102 |
float: left; |
| 103 |
margin-top: 30px; |
| 104 |
word-break: break-word; |
| 105 |
} |
| 106 |
.cfb_wrapper.layout-4 .cfb-front-title { |
| 107 |
margin-top: 30px; |
| 108 |
color: #ffffff; |
| 109 |
width: 100%; |
| 110 |
float: left; |
| 111 |
text-align: Center; |
| 112 |
font-size: 20px; |
| 113 |
font-family: "Open Sans"; |
| 114 |
font-weight: 600; |
| 115 |
font-style: normal; |
| 116 |
} |
| 117 |
.cfb_wrapper.layout-4 .cfb-icon-img{ |
| 118 |
font-size:32px!important; |
| 119 |
} |
| 120 |
.cfb_wrapper.layout-4 .cfb-icon-img .fa { |
| 121 |
line-height: 60px; |
| 122 |
|
| 123 |
} |
| 124 |
.cfb_wrapper.layout-4 .cfb-face .cfb-data { |
| 125 |
padding: 8px; |
| 126 |
border: 5px solid white; |
| 127 |
} |
| 128 |
.cfb_wrapper.layout-4 .cfb-inner-data { |
| 129 |
padding: 4px; |
| 130 |
width: 100%; |
| 131 |
} |
| 132 |
.cfb_wrapper.layout-4 .cfb-icon-img { |
| 133 |
position: absolute; |
| 134 |
left: 50%; |
| 135 |
background: rgba(255, 255, 255, 1); |
| 136 |
height: 60px; |
| 137 |
width: 60px; |
| 138 |
bottom: -30px; |
| 139 |
border-radius: 60px; |
| 140 |
transform: translateX(-50%); |
| 141 |
text-align: center; |
| 142 |
display:inline-block; |
| 143 |
} |
| 144 |
.cfb_wrapper.layout-4 .cfb-image { |
| 145 |
width: 100%; |
| 146 |
max-width: 100%; |
| 147 |
float: left; |
| 148 |
position: relative; |
| 149 |
|
| 150 |
} |
| 151 |
.cfb_wrapper.layout-4 .cfb-desc { |
| 152 |
padding: 10px; |
| 153 |
} |
| 154 |
|
| 155 |
|
| 156 |
/* |
| 157 |
layout 5 |
| 158 |
*/ |
| 159 |
.cfb_wrapper.layout-5 { |
| 160 |
color: white; |
| 161 |
} |
| 162 |
.layout-5 .cfb-icon-img { |
| 163 |
margin-bottom: 12px; |
| 164 |
} |
| 165 |
.cfb-data { |
| 166 |
padding: 16px; |
| 167 |
} |
| 168 |
|
| 169 |
|
| 170 |
/* |
| 171 |
* Layout 6 |
| 172 |
*/ |
| 173 |
.cfb_wrapper.layout-6 { |
| 174 |
color: white; |
| 175 |
} |
| 176 |
.layout-6 .cfb-face { |
| 177 |
border-radius: 50%; |
| 178 |
background-color: rgba(34, 199, 42, 1); |
| 179 |
overflow: hidden; |
| 180 |
padding: 5px; |
| 181 |
} |
| 182 |
.cfb_wrapper.layout-6 .cfb-data { |
| 183 |
border: 2px solid white; |
| 184 |
border-radius: 50%; |
| 185 |
} |
| 186 |
.layout-6 .default .cfb-face.front .cfb-data { |
| 187 |
padding: 6px; |
| 188 |
} |
| 189 |
.layout-6 .cfb-title { |
| 190 |
font-size: 22px; |
| 191 |
font-family: "Open Sans"; |
| 192 |
font-weight: 600; |
| 193 |
font-style: normal; |
| 194 |
padding:10px; |
| 195 |
word-break: break-word; |
| 196 |
} |
| 197 |
.cfb_wrapper.layout-6 img { |
| 198 |
top: 0; |
| 199 |
left: 0; |
| 200 |
width: 100%; |
| 201 |
height: 100%; |
| 202 |
display: block; |
| 203 |
} |
| 204 |
.cfb_wrapper.layout-6 .cfb-image { |
| 205 |
position: absolute; |
| 206 |
top: 5px; |
| 207 |
left: 5px; |
| 208 |
right: 5px; |
| 209 |
bottom: 5px; |
| 210 |
display: block; |
| 211 |
border-radius: 50%; |
| 212 |
overflow: hidden; |
| 213 |
} |
| 214 |
.cfb_wrapper.layout-6 .default .cfb-image { |
| 215 |
position: relative; |
| 216 |
top: 0px; |
| 217 |
left: 0px; |
| 218 |
right: 0px; |
| 219 |
bottom: 0px; |
| 220 |
} |
| 221 |
.layout-6 .cfb-content { |
| 222 |
padding: 10px 10px; |
| 223 |
} |
| 224 |
|
| 225 |
.layout-6 .cfb-back-desc p { |
| 226 |
margin-bottom: 2px; |
| 227 |
} |
| 228 |
|
| 229 |
.layout-6 .cfb-link_text { |
| 230 |
padding: 3px 9px; |
| 231 |
} |
| 232 |
|
| 233 |
|
| 234 |
/* |
| 235 |
* Layout 7 |
| 236 |
*/ |
| 237 |
.cfb_wrapper.layout-7 .cfb-face.front { |
| 238 |
color: white; |
| 239 |
} |
| 240 |
.cfb_wrapper.layout-7 .cfb-line { |
| 241 |
position: relative; |
| 242 |
bottom: 0; |
| 243 |
left: 50%; |
| 244 |
-webkit-transform: translateX(-50%); |
| 245 |
-ms-transform: translateX(-50%); |
| 246 |
-moz-transform: translateX(-50%); |
| 247 |
-o-transform: translateX(-50%); |
| 248 |
transform: translateX(-50%); |
| 249 |
background-color: #ffffff; |
| 250 |
width: 100px; |
| 251 |
height: 2px; |
| 252 |
margin-bottom: 5px; |
| 253 |
} |
| 254 |
.layout-7 .cfb-face.back { |
| 255 |
background-size: cover!important; |
| 256 |
} |
| 257 |
|
| 258 |
|
| 259 |
|
| 260 |
/* |
| 261 |
* Layout 8 |
| 262 |
*/ |
| 263 |
|
| 264 |
.layout-8 .cfb-face { |
| 265 |
background-size: cover!important; |
| 266 |
} |
| 267 |
|
| 268 |
|
| 269 |
|
| 270 |
/* |
| 271 |
* Layout 9 |
| 272 |
*/ |
| 273 |
|
| 274 |
.cfb_wrapper.layout-9 .cfb-face.front { |
| 275 |
color: white; |
| 276 |
} |
| 277 |
.cfb_wrapper.layout-9 .cfb-data { |
| 278 |
display: block; |
| 279 |
} |
| 280 |
.cfb_wrapper.layout-9 .cfb-face.back { |
| 281 |
border: 2px solid; |
| 282 |
} |