campusrec.shop Open in urlscan Pro
23.227.38.65  Public Scan

Submitted URL: http://campusrec.shop/
Effective URL: https://campusrec.shop/
Submission: On November 13 via api from US — Scanned from US

Form analysis 3 forms found in the DOM

POST /cart

<form action="/cart" method="post" class="relative overflow-y-auto flex-auto" novalidate="">
  <div class="grid grid-cols-1 gap-gutter bg-border">
    <template x-for="(item, index) in state.items" :key="item.key">
      <div class="flex py-4 section-x-padding transition bg-scheme-background" :class="{ 'opacity-50 cursor-wait': item.updating }" :data-cart-item-index="(index + 1)" :data-cart-item-key="item.key" data-cart-row="">
        <template x-if="!(item.featured_image.url === null)">
          <div class="flex-shrink-0 w-10 md:w-20 mr-4">
            <a :href="item.url" class="block" aria-hidden="true" tabindex="-1">
                      <img class="w-full text-transparent" :src="getSizedImageUrl(item.featured_image.url, '110x')" :srcset="getCartImgSrcset(item.featured_image.url)" :width="item.featured_image.width" :height="item.featured_image.height" :alt="item.product_title" sizes="(min-width: 48em) 5rem, 3.5rem">
                      <pre x-text="item.featured_image.src"></pre>
                    </a>
          </div>
        </template>
        <div class="flex-auto">
          <a class="f--heading font-size--m md--up--font-size--l color--active-text" :href="item.url" x-text="item.product_title"></a>
          <template x-if="item.variant_title">
            <p class="text-sm" x-text="item.variant_title"></p>
          </template>
          <template x-if="item.selling_plan_allocation">
            <p class="text-sm" x-text="item.selling_plan_allocation.selling_plan.name"></p>
          </template>
          <template x-for="property in flatProperties(item.properties)" :key="property.name">
            <p class="text-sm">
              <span x-text="property.name"></span>: <span x-text="property.value"></span>
            </p>
          </template>
          <template x-if="item.line_level_discount_allocations.length">
            <ul class="lg:hidden mt-1 text-sm text-scheme-accent" aria-label="Discount">
              <template x-for="allocation in item.line_level_discount_allocations">
                <li class="">
                  <span x-text="allocation.discount_application.title"></span>
                  <template x-if="allocation.amount > 0">
                    <span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
                  </template>
                </li>
              </template>
            </ul>
          </template>
          <p class="text-sm my-2" x-show="errorMessages.hasOwnProperty(item.key)" x-transition:enter="transition ease duration-300" x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100"
            x-transition:leave="transition ease duration-300" x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0" style="display: none;">
            <span class="cart-item-error-text text-scheme-accent" x-text="errorMessages[item.key]"></span>
          </p>
          <div class="flex mt-1 lg:mt-2 items-center">
            <button class="w-6 p-1" data-qty-adjust="minus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Remove one ' + item.title">
              <svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-minus" viewBox="0 0 24 24">
                <path fill-rule="evenodd" d="M20 11v2H4v-2z"></path>
              </svg>
            </button>
            <input type="text" name="updates[]" class="min-w-0 w-6 py-1 text-center text-sm border-b-text border-current bg-transparent" min="1" aria-label="Quantity" data-qty-input="" pattern="[0-9]*" data-qty-adjust="set"
              @keyup.debounce.1000ms="keyupOnInput($event)" @change="qtyAdjust($event, item)" x-model.number="item.quantity" autocomplete="off">
            <button class="w-6 p-1" data-qty-adjust="plus" @click.prevent="qtyAdjust($event, item)" :aria-label="'Add one ' + item.title">
              <svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-plus" viewBox="0 0 24 24">
                <path fill-rule="evenodd" d="M20 11v2h-7v7h-2v-7H4v-2h7V4h2v7z"></path>
              </svg>
            </button>
          </div>
          <button class="none lg:inline-block mt-1 lg:mt-2 text-sm" data-qty-adjust="remove" @click.prevent="qtyAdjust($event, item)">
            <small>Remove </small>
            <span class="visually-hidden" x-text="item.title"></span>
          </button>
        </div>
        <div class="ml-1 text-right">
          <template x-if="item.line_level_discount_allocations.length">
            <div>
              <span class="visually-hidden">Regular price</span>
              <del class="line-through" x-html="formatMoney(item.original_price)"></del>
              <span class="visually-hidden">Sale price</span>
              <span class="" x-html="formatMoney(item.final_line_price)"></span>
            </div>
          </template>
          <template x-if="!item.line_level_discount_allocations.length">
            <span class="" x-html="formatMoney(item.final_line_price)"></span>
          </template>
          <template x-if="item.unit_price_measurement">
            <div class="text-xs">
              <span x-html="formatMoney(item.unit_price)"></span> / <span x-text="item.unit_price_measurement.reference_value"></span>
              <span x-text="item.unit_price_measurement.reference_unit"></span>
            </div>
          </template>
          <template x-if="item.line_level_discount_allocations.length">
            <ul class="hidden lg:block mt-1 text-sm text-scheme-accent" aria-label="Discount">
              <template x-for="allocation in item.line_level_discount_allocations">
                <li class="">
                  <span x-text="allocation.discount_application.title"></span>
                  <template x-if="allocation.amount > 0">
                    <span class="whitespace-nowrap">−<span x-html="formatMoney(allocation.amount)"></span></span>
                  </template>
                </li>
              </template>
            </ul>
          </template>
        </div>
      </div>
    </template>
  </div>
  <div class="border-t-grid border-grid-color py-4 section-x-padding">
    <label for="CartSpecialInstructions" class="text-sm"> Name your favorite player </label>
    <textarea name="note" id="CartSpecialInstructions" class="block mt-1 p-2 w-full border-text border-current text-sm bg-transparent" :class="{ 'opacity-50 cursor-wait' : noteUpdating }" x-text="state.note"
      @keyup.debounce.1000ms="keyupOnInput($event)" @change="updateNote($event)">              </textarea>
  </div>
  <div class="bottom-0 py-4 section-x-padding bg-scheme-background border-t-grid border-grid-color">
    <div :class="{ 'opacity-50  cursor-wait': updating }">
      <template x-if="state.cart_level_discount_applications.length" x-for="application in state.cart_level_discount_applications">
        <p class="flex justify-between text-scheme-accent">
          <span class="visually-hidden">Discount</span>
          <span x-text="application.title"></span>
          <span class="ml-2" x-html="formatMoney(application.total_allocated_amount)"></span>
        </p>
      </template>
      <p class="flex justify-between">
        <span>Subtotal</span>
        <span class="ml-2" x-html="formatMoney(state.total_price)"></span>
      </p>
      <p class="my-2 md:my-4 text-sm accent-links-scheme text-right"> Taxes and <a href="/policies/shipping-policy">shipping</a> calculated at checkout </p>
      <div class="text-right">
        <div>
          <input type="submit" name="checkout" class="cursor-pointer py-2 px-4 w-full  bg-scheme-text text-scheme-text-overlay hover:bg-scheme-accent hover:text-scheme-accent-overlay border-scheme-text hover:border-scheme-accent border-text"
            :disabled="updating" value="Continue">
        </div>
        <div class="w-full md:mt-2 additional-checkout-buttons ">
          <div class="dynamic-checkout__content" id="dynamic-checkout-cart" data-shopify="dynamic-checkout-cart"></div>
        </div>
      </div>
    </div>
  </div>
</form>

GET /search

<form class="my-6 section-x-padding" action="/search" method="get" role="search">
  <div class="flex w-full max-w-xs items-end">
    <label for="sections--21345827389721__sidebar-search" class="visually-hidden">Search</label>
    <input class="min-w-0 flex-auto bg-transparent border-current border-b-text placeholder-current py-1.5" id="sections--21345827389721__sidebar-search" type="text" name="q" placeholder="Search">
    <button class="px-1" type="submit">
      <span class="inline-block w-5 h-5"><svg aria-hidden="true" focusable="false" role="presentation" class="icon fill-current icon-search" viewBox="0 0 24 24">
          <path fill-rule="evenodd"
            d="M10.533 17.438a6.968 6.968 0 01-6.96-6.96 6.968 6.968 0 016.96-6.96 6.968 6.968 0 016.96 6.96 6.968 6.968 0 01-6.96 6.96zm6.949-1.314a8.917 8.917 0 002.01-5.646c0-4.941-4.02-8.96-8.96-8.96-4.94 0-8.96 4.019-8.96 8.96 0 4.94 4.02 8.96 8.96 8.96 2.082 0 3.996-.72 5.52-1.916l4.962 4.96 1.415-1.413-4.947-4.945z">
          </path>
        </svg></span>
      <span class="visually-hidden">Submit</span>
    </button>
  </div>
</form>

POST /contact#Contact-sections--21345827291417__footer

<form method="post" action="/contact#Contact-sections--21345827291417__footer" id="Contact-sections--21345827291417__footer" accept-charset="UTF-8" class="contact-form"><input type="hidden" name="form_type" value="customer"><input type="hidden"
    name="utf8" value="✓">
  <input type="hidden" name="contact[tags]" value="newsletter">
  <div class="lg:ml-4 lg:flex items-end">
    <label class="visually-hidden" for="Email-sections--21345827291417__footer">Email address</label>
    <input type="email" class="placeholder-current font-body border-b-text border-current w-full block bg-transparent pb-1" name="contact[email]" id="Email-sections--21345827291417__footer" value="" placeholder="Email address" autocorrect="off"
      autocapitalize="off">
    <button class="mt-2 lg:mt-0 lg:ml-2 pb-1 font-body align-top inline-flex items-center justify-center hover:text-scheme-accent border-b-text border-scheme-text  hover:border-scheme-accent pb-1" type="submit" name="commit" id="Subscribe">
      <span class=" whitespace-nowrap">Subscribe&nbsp;→</span>
    </button>
  </div>
</form>

Text Content

YOUR CART - 0 ITEMS

Close

Your cart is currently empty. Let&#39;s fix that.

Enable cookies to use the shopping cart

:

−




Remove
Regular price Sale price
/
−

Name your favorite player

Discount

Subtotal

Taxes and shipping calculated at checkout




Close
Menu
Close
 * Shop
 * Contact
 * Got Clout?

Search Submit
Skip to content
 * Shop
 * Contact
 * Got Clout?




Cart (0)
Menu




Cart (0)


VINTAGE BOOTLEGS

 * It's Personal Bootleg Tee
   
   It's Personal Bootleg Tee
   
   $32.00
 * Cats Coach Bootleg Tee
   
   Cats Coach Bootleg Tee
   
   from $32.00

Bear Down, Arizona Bear Down, Red and Blue Bear Down, Arizona Hit 'Em Hard, Let
'Em Know Who's Who; Bear Down, Arizona Bear Down, Red and Blue Go, Go, Wildcats,
Go; Arizona, Bear Down Bear Down, Arizona Bear Down, Red and Blue Bear Down,
Arizona Hit 'Em Hard, Let 'Em Know Who's Who; Bear Down, Arizona Bear Down, Red
and Blue Go, Go, Wildcats, Go; Arizona, Bear Down Bear Down, Arizona Bear Down,
Red and Blue Bear Down, Arizona Hit 'Em Hard, Let 'Em Know Who's Who; Bear Down,
Arizona Bear Down, Red and Blue Go, Go, Wildcats, Go; Arizona, Bear Down Bear
Down, Arizona Bear Down, Red and Blue Bear Down, Arizona Hit 'Em Hard, Let 'Em
Know Who's Who; Bear Down, Arizona Bear Down, Red and Blue Go, Go, Wildcats, Go;
Arizona, Bear Down


COVER THE SPREAD

 * Winners Cover Hoodie
   
   Winners Cover Hoodie
   
   $85.00
 * Winners Cover T-Shirt - Navy
   
   Winners Cover T-Shirt - Navy
   
   $32.00
 * Winners Cover T-Shirt - Red
   
   Winners Cover T-Shirt - Red
   
   $32.00
 * Winners Cover Can Cooler
   
   Winners Cover Can Cooler
   
   $6.00
 * 

Hop on the bandwagon.

Email address Subscribe →

Campus Rec. was started as a way to show support for our favorite teams without
all the serious stuff. Modern ideas, inside references, and a more casual
approach to fandom. Hop on the bandwagon.

 * Terms
 * Privacy
 * Shipping
 * Returns

© 2023, Campus Rec..

Powered by pure fandom.


PAYMENT METHODS

 * American Express
 * Apple Pay
 * Diners Club
 * Discover
 * Meta Pay
 * Google Pay
 * Mastercard
 * PayPal
 * Shop Pay
 * Venmo
 * Visa


 * Choosing a selection results in a full page refresh.
 * Press the space key then arrow keys to make a selection.