mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The directory contains code authored in a style that makes it transpilable to dart. As such, these are not idiomatic examples of Angular 2 usage. The main purpose of this directory is to enable experimentation with Angular within the angular/angular repository. Closes #4342 Closes #4639
57 lines
680 B
CSS
57 lines
680 B
CSS
body {
|
|
background:#eee;
|
|
color:black;
|
|
}
|
|
|
|
.inbox-list,
|
|
.inbox-list li {
|
|
list-style:none;
|
|
padding:0;
|
|
margin:0;
|
|
}
|
|
|
|
.inbox-list a {
|
|
padding:5px;
|
|
display:block;
|
|
}
|
|
|
|
inbox, drafts, inbox-side-menu {
|
|
display:block;
|
|
}
|
|
|
|
inbox-side-menu .link {
|
|
display:block;
|
|
text-align:center;
|
|
padding:1em;
|
|
}
|
|
|
|
inbox-side-menu .link.active {
|
|
background:white;
|
|
}
|
|
|
|
inbox-side-menu .link:hover {
|
|
background:#eee;
|
|
}
|
|
|
|
inbox-side-menu {
|
|
position:fixed;
|
|
left:0;
|
|
top:0;
|
|
bottom:0;
|
|
width:200px;
|
|
background:#ddd;
|
|
}
|
|
|
|
inbox-side-menu a {
|
|
display: block;
|
|
}
|
|
|
|
inbox, drafts, inbox-detail {
|
|
padding:1em;
|
|
margin-left:200px;
|
|
}
|
|
|
|
inbox-detail {
|
|
display:block;
|
|
margin-left:200px;
|
|
}
|