diff options
| author | Aaron Parecki <aaron@parecki.com> | 2014-09-07 11:48:52 -0700 | 
|---|---|---|
| committer | Aaron Parecki <aaron@parecki.com> | 2014-09-07 11:48:52 -0700 | 
| commit | cf8ecf1fc9942dc00f0a5a11b313f8babbc9c3cd (patch) | |
| tree | af6a3e99b19383ea5642f530451ff450072a9345 /public | |
| parent | 9cfa0ff2c18e25a9c00d80624e6abea487bd9136 (diff) | |
adds bookmark posting interface with bookmarklet. now any URL can auto-login given a login token.
Diffstat (limited to 'public')
| -rw-r--r-- | public/css/style.css | 81 | 
1 files changed, 81 insertions, 0 deletions
| diff --git a/public/css/style.css b/public/css/style.css index 7872e7e..7cb152c 100644 --- a/public/css/style.css +++ b/public/css/style.css @@ -109,3 +109,84 @@ body {    word-break: break-all;    word-wrap: break-word;  } + + + + +  /* new posts */ + +  #syndication-container ul { +    list-style-type: none; +    margin: 0; +    padding: 10px; +  } +  #syndication-container li { +    padding: 0; +    margin-bottom: 6px; +  } +  #syndication-container button { +    max-width: 240px; +    text-shadow: none; +  } +  #syndication-container button img { +    float: left; +    margin-left: 10px; +  } +   +  #last_response_date { +    font-size: 80%; +    font-weight: normal; +  } + +  #btn_post { +    margin-bottom: 10px; +  } + +  @media all and (max-width: 480px) { +    #note_location_img_wide { +      display: none; +    } +    #note_location_img_small { +      display: block; +    } +  } +  @media all and (min-width: 480px) { +    #note_location_img_wide { +      display: block; +    } +    #note_location_img_small { +      display: none; +    } +  } + +  .img-visible { +    -webkit-border-bottom-right-radius: 0; +    -webkit-border-bottom-left-radius: 0; +    -moz-border-radius-bottomright: 0; +    -moz-border-radius-bottomleft: 0; +    border-bottom-right-radius: 0; +    border-bottom-left-radius: 0; +  } + +  #note_location_img img { +    margin-top: -1px; +    border: 1px solid #ccc; +    -webkit-border-bottom-right-radius: 4px; +    -webkit-border-bottom-left-radius: 4px; +    -moz-border-radius-bottomright: 4px; +    -moz-border-radius-bottomleft: 4px; +    border-bottom-right-radius: 4px; +    border-bottom-left-radius: 4px; +  } + +  .callout { +    border-left: 4px #5bc0de solid; +    background-color: #f4f8fa; +    padding: 20px; +    margin-top: 10px; +  } +  .callout table { +    margin-bottom: 0; +  } + + | 
