/* FollowList Styles */

/* overall styles */

body {
  background-color: #F1F1F1; /* off-white */
}

h1 {
  font-variant: small-caps;
  margin: 0 0 0.5em 0;
}

a {
  color: #191F66;
  text-decoration: none;
}

a:hover {
  color: #2732B6;
}

a img {
  border: 0;
}

ul {
  list-style-type: none;
}

/*outter header & footer are _outside_ of #container */

#outter_header {
  /*border: 1px dotted red;*/
}

#outter_footer {
  /*border: 1px dotted blue;*/
  text-align: center;
  font-size: 0.7em;
}

/* everything below here is the main #container and its contents */

#container {
  margin: auto;
  background-color: white;
  border: 1px solid;
  border-color: #ccc #666 #666 #ccc;
  border-width: 1px 2px 2px 1px;
  padding: 1em;
  -moz-border-radius: 0.2em;
  -webkit-border-radius: 0.2em;
  width: 700px; /* fixed width */
}

#header {
  /*border: 1px solid red;*/
}

#header h1 {
  width: 392px;
  height: 92px;
  background-image: url("/images/logo.gif");
}

h1 span {
  display: none; /* hide text, show image instead */
}

#footer {
  /*border: 1px solid blue;*/
}

/* everything below here is [#container > ] #content and its contents */

#content {
}

form#list {
  padding: 0.2em;
}

form#list input {
  border: 2px solid black;
  width: 20em;
  height: 1.2em;
  font-size: 2em;
  padding: 0.2em;
  margin: 0.2em 0 0.2em 0;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
}

form#list input.button {
  height: 1.7em;
}

form#list input#profile_to_add {
  width: 14em;
}

form#list input#add_profile_button {
  width: 5.5em;
  margin-left: 0.5em;
}

form#list div#profiles {
  padding-left: 1em;
}

/* submit buttons are apparently a little bit smaller? */
/* TODO make this an ID or something because not everything supports this kindof CSS query */
form#list input[type=submit] {
  width: 20.5em;
}

form#list span.message {
  font-style: italic;
}

#list ul li {
}

.twitter_profile {
  margin-bottom: 0.2em;
  position: relative;
}

.twitter_profile span.name {
  vertical-align: top;
  display: inline-block; /* required for vertical align to work */
  font-weight: bold;
}

.twitter_profile span.description {
  position: absolute;
  left: 4.5em;
  top: 1.5em;
  font-size: 0.8em;
}

.twitter_profile img {
  width: 48px;
  height: 48px;
}

/* on any page but the home page */
div#list .twitter_profile a.remove {
  display: none;
}

/* only when in a form, ie. only on the home page (not on the /:slug pages) */
form#list .twitter_profile a.remove {
  display: inline;
  font-weight: normal;
  font-size: 0.7em;
  opacity: 0.5;
  padding-left: 0.5em;
}

#sharing_info p {
  font-size: 1.5em;
}

#sharing_info span {
  font-weight: bold;
  color: blue;
}

#sharing_info #slug_link {
  /* DRY this up in a .class */
  border: 2px solid black;
  padding: 0.3em 0.5em 0.3em 0.5em;
  margin: 0.2em 0 0.2em 0;
  -moz-border-radius: 0.5em;
  -webkit-border-radius: 0.5em;
}

#sharing_info #tweet_link {
  border-bottom: 1px solid;
  font-weight: bold;
  margin-left: 1em;
}

