Initial commit

This commit is contained in:
2023-11-19 10:42:13 +01:00
parent 3586127c15
commit 77e68a05a2
26 changed files with 1757 additions and 7 deletions

36
spec/fixtures/assets/css/style.css vendored Normal file
View File

@ -0,0 +1,36 @@
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
background-color: #f5f5f5;
}
.footer .container .text-muted {
margin: 20px 0;
}
#brandServiceList li>a {
background-color:#fff !important;
}
a.outlink {
text-decoration: none;
font-color: #000;
}
.list-nobullet {
list-style-type: none;
}
#logo {
display: inline-block;
height: 100px;
}

4
spec/fixtures/assets/js/script.js vendored Normal file
View File

@ -0,0 +1,4 @@
var sampleFunction = function() {
console.log('This is sample.');
};
sampleFunction();