ducky/web
2015-07-07
Parent:99a43a6d1d30
ducky/web/src/styles/base/_lists.scss
Implement subscriptions. Create a Subscription model and a Subscriptions collection, and attach them to the app context. Add a helper to our Profile model to retrieve the Subscription of that model. Still not sure this should be on the Profile--wouldn't it be better on the Me model? Isn't that generally where we would need it?
1 ul,
2 ol {
3 list-style-type: none;
4 margin: 0;
5 padding: 0;
7 &%default-ul {
8 list-style-type: disc;
9 margin-bottom: $small-spacing;
10 padding-left: $base-spacing;
11 }
13 &%default-ol {
14 list-style-type: decimal;
15 margin-bottom: $small-spacing;
16 padding-left: $base-spacing;
17 }
18 }
20 dl {
21 margin-bottom: $small-spacing;
23 dt {
24 font-weight: bold;
25 margin-top: $small-spacing;
26 }
28 dd {
29 margin: 0;
30 }
31 }