| 1 |
/** |
| 2 |
* All of the CSS for your public-facing functionality should be |
| 3 |
* included in this file. |
| 4 |
*/ |
| 5 |
/** |
| 6 |
* Environment for all styles (variables, additions, etc). |
| 7 |
*/ |
| 8 |
/*--------------------------------------------------------------*/ |
| 9 |
/*--------------------------------------------------------------*/ |
| 10 |
.pk-coming-soon-container { |
| 11 |
display: -webkit-box; |
| 12 |
display: -ms-flexbox; |
| 13 |
display: flex; |
| 14 |
-webkit-box-orient: vertical; |
| 15 |
-webkit-box-direction: normal; |
| 16 |
-ms-flex-direction: column; |
| 17 |
flex-direction: column; |
| 18 |
-ms-flex-wrap: wrap; |
| 19 |
flex-wrap: wrap; |
| 20 |
height: 100%; |
| 21 |
} |
| 22 |
|
| 23 |
.pk-coming-soon-image { |
| 24 |
position: relative; |
| 25 |
width: 100%; |
| 26 |
} |
| 27 |
|
| 28 |
.pk-coming-soon-image img { |
| 29 |
width: 100%; |
| 30 |
height: auto; |
| 31 |
} |
| 32 |
|
| 33 |
.pk-coming-soon-content { |
| 34 |
display: -webkit-box; |
| 35 |
display: -ms-flexbox; |
| 36 |
display: flex; |
| 37 |
-webkit-box-align: center; |
| 38 |
-ms-flex-align: center; |
| 39 |
align-items: center; |
| 40 |
padding: 40px; |
| 41 |
width: 100%; |
| 42 |
} |
| 43 |
|
| 44 |
@media (min-width: 992px) { |
| 45 |
.pk-coming-soon-page { |
| 46 |
min-height: 100vh; |
| 47 |
} |
| 48 |
.pk-coming-soon-container { |
| 49 |
-webkit-box-orient: horizontal; |
| 50 |
-webkit-box-direction: normal; |
| 51 |
-ms-flex-direction: row; |
| 52 |
flex-direction: row; |
| 53 |
-ms-flex-wrap: nowrap; |
| 54 |
flex-wrap: nowrap; |
| 55 |
min-height: 100vh; |
| 56 |
} |
| 57 |
.pk-coming-soon-image { |
| 58 |
-webkit-box-flex: 0; |
| 59 |
-ms-flex: 0 0 50%; |
| 60 |
flex: 0 0 50%; |
| 61 |
max-width: 50%; |
| 62 |
min-height: 100vh; |
| 63 |
height: 100%; |
| 64 |
} |
| 65 |
.pk-coming-soon-image img { |
| 66 |
position: absolute; |
| 67 |
top: 0; |
| 68 |
left: 0; |
| 69 |
right: 0; |
| 70 |
bottom: 0; |
| 71 |
width: 100%; |
| 72 |
height: 100%; |
| 73 |
-o-object-fit: cover; |
| 74 |
object-fit: cover; |
| 75 |
} |
| 76 |
.pk-coming-soon-content { |
| 77 |
-webkit-box-flex: 0; |
| 78 |
-ms-flex: 0 0 50%; |
| 79 |
flex: 0 0 50%; |
| 80 |
max-width: 50%; |
| 81 |
} |
| 82 |
.pk-coming-soon-content:first-child:last-child { |
| 83 |
-webkit-box-flex: 0; |
| 84 |
-ms-flex: 0 0 100%; |
| 85 |
flex: 0 0 100%; |
| 86 |
max-width: 100%; |
| 87 |
} |
| 88 |
} |
| 89 |
|
| 90 |
.pk-coming-soon-content .entry-content { |
| 91 |
margin: 0 auto; |
| 92 |
max-width: 640px; |
| 93 |
width: 100%; |
| 94 |
} |
| 95 |
|
| 96 |
.pk-coming-soon-content .pk-social-links-items { |
| 97 |
-webkit-box-pack: center; |
| 98 |
-ms-flex-pack: center; |
| 99 |
justify-content: center; |
| 100 |
} |
| 101 |
|