ducky/web

Paddy 2015-07-07 Parent:99a43a6d1d30

19:6b7037b4cbe7 Go to Latest

ducky/web/src/styles/base/_lists.scss

Update to hosted URL, use oauth-refresh in profiles. When syncing the profiles, use our oauth-refresh sync helper, so it won't fail because of an expired OAuth token. Also, update our URL to use the nginx-fronted URL.

History
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 }