| 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: flex; |
| 12 |
flex-direction: column; |
| 13 |
flex-wrap: wrap; |
| 14 |
height: 100%; |
| 15 |
} |
| 16 |
|
| 17 |
.pk-coming-soon-image { |
| 18 |
position: relative; |
| 19 |
width: 100%; |
| 20 |
} |
| 21 |
|
| 22 |
.pk-coming-soon-image img { |
| 23 |
width: 100%; |
| 24 |
height: auto; |
| 25 |
} |
| 26 |
|
| 27 |
.pk-coming-soon-content { |
| 28 |
display: flex; |
| 29 |
align-items: center; |
| 30 |
padding: 40px; |
| 31 |
width: 100%; |
| 32 |
} |
| 33 |
|
| 34 |
@media (min-width: 992px) { |
| 35 |
.pk-coming-soon-page { |
| 36 |
min-height: 100vh; |
| 37 |
} |
| 38 |
.pk-coming-soon-container { |
| 39 |
flex-direction: row; |
| 40 |
flex-wrap: nowrap; |
| 41 |
min-height: 100vh; |
| 42 |
} |
| 43 |
.pk-coming-soon-image { |
| 44 |
flex: 0 0 50%; |
| 45 |
max-width: 50%; |
| 46 |
min-height: 100vh; |
| 47 |
height: 100%; |
| 48 |
} |
| 49 |
.pk-coming-soon-image img { |
| 50 |
position: absolute; |
| 51 |
top: 0; |
| 52 |
left: 0; |
| 53 |
right: 0; |
| 54 |
bottom: 0; |
| 55 |
width: 100%; |
| 56 |
height: 100%; |
| 57 |
-o-object-fit: cover; |
| 58 |
object-fit: cover; |
| 59 |
} |
| 60 |
.pk-coming-soon-content { |
| 61 |
flex: 0 0 50%; |
| 62 |
max-width: 50%; |
| 63 |
} |
| 64 |
.pk-coming-soon-content:first-child:last-child { |
| 65 |
flex: 0 0 100%; |
| 66 |
max-width: 100%; |
| 67 |
} |
| 68 |
} |
| 69 |
|
| 70 |
.pk-coming-soon-content .entry-content { |
| 71 |
margin: 0 auto; |
| 72 |
max-width: 640px; |
| 73 |
width: 100%; |
| 74 |
} |
| 75 |
|
| 76 |
.pk-coming-soon-content .pk-social-links-items { |
| 77 |
justify-content: center; |
| 78 |
} |
| 79 |
|