Skip to content

Commit

Permalink
pages added
Browse files Browse the repository at this point in the history
  • Loading branch information
mtomas-ch committed Sep 20, 2024
1 parent fb53335 commit c81ea67
Show file tree
Hide file tree
Showing 24 changed files with 2,527 additions and 10 deletions.
Binary file added app/assets/images/crown_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added app/assets/images/search_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
119 changes: 119 additions & 0 deletions app/assets/sass/application.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,122 @@
//

// Add extra styles here
.account-banner {
text-align: right;
font-size: 16px;
font-family: 'proxima_nova', Arial, sans-serif;
font-weight: 400;
text-transform: none;
z-index: 60;
clear: none;
background: transparent;
vertical-align: middle;
}

.blue-banner {
font-size: 16px;
text-align: left;
background-color: #376EB3;
color: #FFFFFF;
padding: 5px;
}

.blue-banner a {
color: white;
margin: 30px;
}

.idv_warning_box {
background-color: #FDF2D5;
border-style: solid;
border-color: #F5C25C;
padding: 10px 10px 0px 10px;
margin: -20px 0px 45px;
}

.grey-box {
background-color: #DFE1E1;
padding: 10px 10px 5px 10px;
}


.tabs {
background-color: white !important;
}


.tabs li a {
padding: 16px;
font-size: 16px;
color: #1D70B8 !important;
font-weight: normal !important;
}

.tabs li a:hover {
text-decoration: underline;
}

// .search_button {
// background-image: url("/public/images/search_icon.png");
// background-size: cover;
// background-position: center;
// padding: 25px 25px;
// border: none;
// color: white;
// background-color: #275CA0;
// float: left;
// border-left: none;
// }

// .search_input {
// padding: 12px;
// font-size: 19px;
// border: 2px solid black;
// float: left;
// width: 90%;
// }



.input-group {
border-collapse: separate;
display: table;
position: relative;
width:100%;
padding-left: 100px;
}


.input-group>div {
display: table-cell;
}

.input-group>div:first-child {
width: 100%;
}

.search_input {
position: relative;
z-index: 2;
width: 100%;
font-size: .875rem;
line-height: 1.5;
height: 45px;
font-size: 19px;
border: 2px solid black;
}

.search_button {
border: 0;
padding: .375rem .75rem;
text-align: center;
white-space: nowrap;
position: absolute;
width: 50px;
height: 50px;
background-image: url("/public/images/search_icon.png");
background-size: cover;
background-position: center;
color: white;
background-color: #275CA0;
}
2 changes: 1 addition & 1 deletion app/config.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"serviceName": "Service name goes here"
"serviceName": "Find and update company information"
}
3 changes: 3 additions & 0 deletions app/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@ const govukPrototypeKit = require('govuk-prototype-kit')
const router = govukPrototypeKit.requests.setupRouter()

// Add your routes here


router.use('/', require('./routes/v1-routes.js'))
Loading

0 comments on commit c81ea67

Please sign in to comment.