home.blade.php 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @extends('layouts.blank')
  2. @section('content')
  3. <div class="d-flex w-100 h-100 bg-primary-alt mx-auto flex-column align-items-center justify-content-center">
  4. <div class="text-light">
  5. <p class="text-center display-4">
  6. Join Pixelfed
  7. </p>
  8. <p class="text-center lead py-4">To join Pixelfed, you need to pick an instance. <br>You can find a list of instances on the sites below.</p>
  9. <p class="text-center">
  10. <a class="btn btn-outline-light btn-lg font-weight-bold mr-3 px-5 py-3" rel="nofollow noreferrer noopener" href="https://the-federation.info/pixelfed">the-federation.info/pixelfed</a>
  11. <a class="btn btn-outline-light btn-lg font-weight-bold px-5 py-3" rel="nofollow noreferrer noopener" href="https://fediverse.network/pixelfed">fediverse.network/pixelfed</a>
  12. </p>
  13. </div>
  14. </div>
  15. @endsection
  16. @push('styles')
  17. <style type="text/css">
  18. html,
  19. body {
  20. height: 100%;
  21. }
  22. body {
  23. display: -ms-flexbox;
  24. display: flex;
  25. }
  26. .section {
  27. min-height: 40vh;
  28. }
  29. .bg-primary-alt {
  30. background: #00d2ff; /* fallback for old browsers */
  31. background: -webkit-linear-gradient(to left, #3a7bd5, #00d2ff); /* Chrome 10-25, Safari 5.1-6 */
  32. background: linear-gradient(to left, #3a7bd5, #00d2ff); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  33. /* change the calc height to a percentage height to get alternate responsive behavior*/
  34. }
  35. </style>
  36. @endpush