Skip to content
Snippets Groups Projects
Select Git revision
  • 50881e91ed98877110062b9d8d0d10eee9ad8512
  • main default protected
  • Gabes-testing-branch
  • 81-as-a-child-i-want-a-very-flashy-and-modern-looking-webpage-that-will-draw-me-in-and-keep-me
  • locationApporvalFormValidationUpdate
  • 74-as-a-user-i-want-to-see-a-page-of-local-authorities-so-that-i-can-easily-source-contact-details
  • businesses
  • 77-as-a-user-i-want-to-be-able-to-use-the-application-on-any-device-e-g-iphone-ipad-laptop
  • 69-as-a-user-i-would-like-a-town-specific-page-which-shows-all-trails-for-that-town-so-that-i-can
  • 80-as-a-convenience-enthusiast-i-want-a-drop-down-menu-to-be-able-to-quickly-scan-qr-codes-i-find
  • 82-as-a-site-admininstrator-i-want-to-be-able-to-review-submited-trail-checkpoints-by-bussiness
  • 68-as-a-user-i-would-like-to-see-a-map-containing-all-landmarks-for-a-trail-and-a-suggested-path
  • 70-as-a-repeat-trail-visitor-i-want-to-be-able-to-create-an-account-so-i-can-save-and-review-my
  • towns
  • DTFrontEnd
  • 52-as-a-user-i-would-like-to-see-a-map-of-the-landmarks-so-that-i-can-figure-out-where-to-go
  • 73-as-a-qr-scanning-connoisseur-i-want-to-unlock-stickers-after-scanning-a-qr-code-to-feel-a-sense
  • QRCodes
  • consumers
  • foreignkeys
  • cleanup
21 results

build.gradle

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    style.css 2.57 KiB
    /* fonts obtained from and used by https://members.tramshedtech.co.uk/ */
    
    @font-face {
      font-family: CircularXX;
      src: url(/static/fonts/CircularXX-Book.woff2) format("woff2");
      src: url(/static/fonts/CircularXX-Book.woff) format("woff");
      font-weight: 400;
      font-style: normal
    }
    
    @font-face {
      font-family: CircularXX;
      src: url(/static/fonts/CircularXX-Medium.woff2) format("woff2");
      src: url(/static/fonts/CircularXX-Medium.woff) format("woff");
      font-weight: 500;
      font-style: normal
    }
    
    @font-face {
      font-family: CircularXX;
      src: url(/static/fonts/CircularXX-Bold.woff2) format("woff2");
      src: url(/static/fonts/CircularXX-Bold.woff) format("woff");
      font-weight: 700;
      font-style: normal
    }
    
    body {
      margin: 0;
      font-family: CircularXX,sans-serif;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      color: #111;
      text-align: left;
      background-color: #f5f5f5
    }
    
    h1
    { color: blue;}
    
    nav li {
      display: inline;
      border-right: 1px solid #bbb;
      float:left;
      border-top-right-radius: 1000%;
      border-bottom-right-radius: 1000%;
    }
    
    nav li:last-child {
      color: red;
    background-color: red;
      border-right: none;
      border-top-left-radius: 1000%;
      border-bottom-left-radius: 1000%;
    }
    nav ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
      overflow: hidden;
      background-color: #333;
    }
    
    
    nav li a {
      display: block;
      color: white;
      text-align: center;
      padding: 14px 16px;
      text-decoration: none;
    }
    
    
    nav li a:hover {
      border-bottom-right-radius: 1000%;
      border-top-right-radius: 1000%;
      border-top-left-radius: -1000%;
      border-radius: 1000;
      background-color: #111;
    }
    
    nav li a:hover:last-child {
      border-bottom-right-radius: 1000%;
      border-top-right-radius: 1000%;
      border-top-left-radius: 1000%;
      border-radius: 50%;
    
      background-color: #111;
    }
    
    .workspace-item {
      background-color: #fff;
      border-radius: 0.5rem;
      box-shadow: 0 2px 2px 0 rgb(17 17 17 / 5%);
      padding: 1.5rem;
      margin: 0.75rem;
      display: flex;
    }
    
    .workspace-item .image-col {
      width: 200px;
    }
    
    .workspace-item .image-col .image {
      max-width: 100%;
    }
    
    .workspace-item .main-col {
      flex: 1 0;
      margin-left: 1rem;
    }
    
    .workspace-item .title {
      color: inherit;
      display: inline-block;
      font-size: 1.25rem;
      margin-bottom: 1rem;
      font-weight: 600;
      line-height: 1.2;
    }
    
    .workspace-item .meta {
      color: #666;
    }
    
    .workspace-item .dot {
      color: #666;
      font-weight: 700;
    }
    
    #map {
      height: 600px;
    }
    
    #map .popup {
      font-family: CircularXX,sans-serif;
      font-size: 0.8rem;
      font-weight: 400;
      line-height: 1.5;
    }
    
    #map .popup-title {
      color: inherit;
      font-size: 1rem;
      font-weight: 500;
    }