5: Add In-app Navigation
[examples/angular-tour-of-heroes] / src / app / hero-detail / hero-detail.component.css
1 /* HeroDetailComponent's private CSS styles */
2 label {
3   display: inline-block;
4   width: 3em;
5   margin: .5em 0;
6   color: #607D8B;
7   font-weight: bold;
8 }
9 input {
10   height: 2em;
11   font-size: 1em;
12   padding-left: .4em;
13 }
14 button {
15   margin-top: 20px;
16   font-family: Arial;
17   background-color: #eee;
18   border: none;
19   padding: 5px 10px;
20   border-radius: 4px;
21   cursor: pointer;
22 }
23 button:hover {
24   background-color: #cfd8dc;
25 }
26 button:disabled {
27   background-color: #eee;
28   color: #ccc;
29   cursor: auto;
30 }