Hard code some data in the Python

This commit adds some stubbed data for the pages. The structure of the data
is just a proposal, but it gives the templates something to work with for now.
This commit is contained in:
Chris Hill-Scott
2015-12-10 16:48:07 +00:00
parent b46872d2b9
commit 1f39a0fe61
5 changed files with 101 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
.placeholder {
display: inline;
background: $light-blue;
color: $white;
padding: 0 5px;
box-shadow: inset 0 0 0 2px $panel-colour;
}

View File

@@ -0,0 +1,41 @@
.sms-message {
position: relative;
margin: 0 0 $gutter 0;
&:before {
content: '';
position: absolute;
z-index: 10;
bottom: -12px;
right: 5px;
width: 20px;
height: 25px;
border-radius: 100%;
background: $panel-colour;
}
&:after {
content: '';
position: absolute;
z-index: 20;
bottom: -15px;
right: -5px;
border-radius: 100%;
width: 20px;
height: 20px;
background: $white;
}
&-wrapper {
box-sizing: border-box;
position: relative;
z-index: 30;
width: 100%;
height: 100%;
padding: $gutter/2;
background: $panel-colour;
border-radius: 5px;
}
}