diff options
-rw-r--r-- | index.html | 5 | ||||
-rw-r--r-- | style.css | 6 |
2 files changed, 11 insertions, 0 deletions
@@ -15,6 +15,11 @@ ng-repeat="step in steps"> {{step.name}} </div> + <div class="details" + ng-show="selected"> + <h3>{{step.name}}</h3> + <em>State:</em> {{step.data.state}} + </div> </div> </body> </html> @@ -77,3 +77,9 @@ h1>span { top: 45%; } +.detail { + background: #eee; + display: block; + padding: 1em; + border-radius: 0.5em; +} |