position delete person button
[angular-drzb] / app / css / app.css
1 /* app css stylesheet */
2
3 .menu {
4   list-style: none;
5   border-bottom: 0.1em solid black;
6   margin-bottom: 2em;
7   padding: 0 0 0.5em;
8 }
9
10 .menu:before {
11   content: "[";
12 }
13
14 .menu:after {
15   content: "]";
16 }
17
18 .menu > li {
19   display: inline;
20 }
21
22 .menu > li:before {
23   content: "|";
24   padding-right: 0.3em;
25 }
26
27 .menu > li:nth-child(1):before {
28   content: "";
29   padding: 0;
30 }
31
32
33 /* validation hints */
34
35 input.ng-invalid,
36 input.ng-invalid-required {
37         border: 1px solid red;
38 }
39
40 /*
41 input.ng-valid-required {
42         border: 1px solid green;
43 }
44 */
45
46 /* delete person button */
47 div.controls-row > a.btn-danger {
48         margin-top: 25px;
49         margin-left: 2em;
50 }
51
52 /* Twitter bootstrap specific */
53
54 div.controls > input {
55         width: 100%; /* match outher span class */
56 }
57
58 div.my-input {
59         margin-left: 0;
60 }