4: Add Services
[examples/angular-tour-of-heroes] / src / app / messages / messages.component.css
1 /* MessagesComponent's private CSS styles */
2 h2 {
3   color: red;
4   font-family: Arial, Helvetica, sans-serif;
5   font-weight: lighter;
6 }
7 body {
8   margin: 2em;
9 }
10 body, input[text], button {
11   color: crimson;
12   font-family: Cambria, Georgia;
13 }
14
15 button.clear {
16   font-family: Arial;
17   background-color: #eee;
18   border: none;
19   padding: 5px 10px;
20   border-radius: 4px;
21   cursor: pointer;
22   cursor: hand;
23 }
24 button:hover {
25   background-color: #cfd8dc;
26 }
27 button:disabled {
28   background-color: #eee;
29   color: #aaa;
30   cursor: auto;
31 }
32 button.clear {
33   color: #333;
34   margin-bottom: 12px;
35 }