Skip to content
Snippets Groups Projects
Select Git revision
  • 9210707efd51ce5d9aa77023bbfb7105fca5f640
  • 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

templatingstyle.css

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    templatingstyle.css 1.58 KiB
    /* Header */
    .headerBar {
        border-bottom: 2px rgb(230, 230, 230) solid;
        margin-bottom: 20px;
        display: flex;
        background: blueviolet;
    }
    /* Navbar Links */
    .navBar {
        margin-top: 50px;
        margin-left: auto;
        margin-right:20px;
        text-align: right;
    }
    .work{
        color: rgb(255, 255, 255);
    }
    .navBar ul {
        list-style: none;
        display: flex;
        margin-left: 100px;
    }
    .navBar a {
        border-left: 2px rgb(185, 185, 185) solid;
        padding: 10px 40px;
        text-decoration: none;
        color:rgb(87, 86, 86);
        white-space: nowrap;
        overflow: hidden;
        float: right;
    }
    .navBar a:hover {
        background-color: rgb(209, 209, 209);
    }
    .navBar li{
        margin-left: 10px;
        margin-right: 10px;
        color: rgb(255, 255, 255);
    }
    .navListLast {
        border-right: 2px rgb(185, 185, 185) solid;
        margin-right:40px;
    }
    
    /* Navbar Logo */
    .Logo {
        margin-left:10px;
        padding: 20px;
        width: fit-content;
    }
    .Logo img {
        width: 120px;
        margin-left:15px;
    }
    
    /* Footer */
    footer {
        margin-top:auto;
        display: flex;
        justify-content: center;
        background: blueviolet;
        border-top: 2px rgb(230, 230, 230) solid;
    }
    .footerBar{
    
        text-align: left;
        display: flex;
    
        color: rgb(255, 255, 255);
        padding-left: 30px;
    }
    .footerBar ul {
        list-style: none;
        display: flex;
    }
    .copyright{
        text-align: left;
        display: flex;
    }
    .containerFooter{
        display: flex;
        flex-direction: row;
    }
    .leftFooter{
        flex:1;
        color: rgb(255, 255,255);
    }
    .centerFooter{
        flex: 1;
        color: rgb(255, 255,255);
    }
    .rightFooter{
        flex:1;
        color: rgb(255, 255, 255);
    }