Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
bower_components
node_modules
sass/.sass-cache
25 changes: 25 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"name": "betterdigitalservices.github.io",
"version": "0.0.1",
"homepage": "https://github.com/laurisvan/betterdigitalservices.github.io",
"authors": [
"Lauri Svan <lauri.svan@sc5.io>"
],
"description": "",
"main": "",
"moduleType": [
"globals"
],
"license": "MIT",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"bootstrap": "~4.0.0-alpha"
}
}
Empty file added css/content.css
Empty file.
2 changes: 2 additions & 0 deletions css/footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
footer {
box-shadow: 0px -10px 10px rgba(32, 59, 106, 0.2); }
30 changes: 30 additions & 0 deletions css/header.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
header {
box-shadow: 0px 10px 10px rgba(32, 59, 106, 0.2);
filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=10, Color='#203B6A');
font-family: Campton;
font-weight: bold;
font-size: 13px;
line-height: 25.6px;
letter-spacing: 1.56px;
text-transform: uppercase;
color: #203B6A;
vertical-align: bottom; }
header nav {
display: inline; }
header ul {
padding: 0;
display: inline;
list-style-type: none; }
header li {
display: inline; }
header a {
color: inherit; }
header .competition-entry-cfa {
display: inline-block;
float: right;
height: 100%;
background: #203B6A;
font-size: 16px;
line-height: 20.6px;
letter-spacing: 1.92px;
color: #FFFFFF; }
Loading