-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (102 loc) · 2.29 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url(http://fonts.googleapis.com/css?family=Droid+Sans|Droid+Serif:400,400italic);
body {
padding: 2em;
margin: 0;
border-top: 3px black solid;
font-family: "Droid Sans", sans-serif;
font-size: 16px;
}
h1 {
font-family: "Droid Serif", serif;
font-weight: 100;
font-size: 4em;
line-height: .7em;
}
h1 .subtitle {
font-size: .3em;
font-style: italic;
}
.d-list-item-label, .d-list-item-right-text {
font-weight: normal;
color: black;
}
[aria-selectable="true"] .d-list-item[aria-selected="true"]:before,
[aria-multiselectable="true"] .d-list-item[aria-selected="true"]:before,
[aria-selectable="true"] .d-list-item:before,
[aria-multiselectable="true"] .d-list-item:before {
content:"";
}
[aria-selectable="true"] .d-list-item,
[aria-multiselectable="true"] .d-list-item {
background-color:#fafafa;
margin: 3px 0;
}
.d-list-item:hover {
cursor: pointer;
background-color:#f0f0f0;
}
[aria-selectable="true"] .d-list-item[aria-selected="true"],
[aria-multiselectable="true"] .d-list-item[aria-selected="true"] {
background-color:#e5e5e5;
color: #111;
}
input {
padding: .5em .6em;
display: inline-block;
border: 1px solid #ccc;
box-shadow: inset 0 1px 3px #ddd;
border-radius: 4px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*:focus {
outline:0; !important
}
.d-list-item {
border:none;
}
[aria-selected="true"] {
color:#ccc;
}
button {
padding: .5em 1em;
color: rgba(0,0,0,.8);
border: 0 rgba(0,0,0,0);
background-color: #E6E6E6;
border-radius: 2px;
}
button:hover {
cursor: pointer;
}
button.remove {
background-color: rgb(202, 60, 60);
color: white;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
button.save {
background-color: rgb(28, 184, 65);
color: white;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
button.add {
color: white;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
background: rgb(66, 184, 221)
}
.actions {
padding: 1em 0
}
.d-list-container {
height:auto;
}
button[disabled] {
opacity: .4;
cursor: not-allowed;
box-shadow: none;
}
[ng-cloak] {
/* workaround for getting ng-cloak directive to work when angular is
* loaded through AMD */
display:none !important;
}