Guest User

Untitled

a guest
Oct 16th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.33 KB | None | 0 0
  1. @charset "utf-8";
  2. /**
  3.  * Gastenboek Facebook style.
  4.  * @author Fabian M.
  5.  */
  6.  
  7. /**
  8.  * The body styling. Nothing special.
  9.  * <note>This can be deleted.</note>
  10.  */
  11. body {
  12.     background: white;
  13. }
  14.  
  15. /**
  16.  * Styling for the urls.
  17.  * <note>This is for every url in the page.</note>
  18.  */
  19. a {
  20.     color: #3B5998;
  21.     outline: none;
  22. }
  23.  
  24. a:hover{
  25.     text-decoration: underline;
  26. }
  27.  
  28. /**
  29.  * Content of the message.
  30.  * <note>This is actually the container of the message which contains the date and text.</note>
  31.  */
  32. .messageContent {
  33.     padding-top: 24px;
  34. }
  35.  
  36.  
  37.  
  38. /**
  39.  * Styling for the message date.
  40.  * <note>In this case, it's the facebook bar.</note>
  41.  */
  42. .messageDate {
  43.     font-size: 11px;
  44.     font-weight: bold;
  45.     color: white;
  46.     padding: 3px 6px;
  47.     overflow: hidden;
  48.     border: 1px solid #3B5998;
  49.     background: #6D84B4;
  50. }
  51.  
  52.  
  53. /**
  54.  * This div holds the message.
  55.  */
  56. .messageContentMsg {
  57.     font-size: 0.85em;
  58.     color: #1A1A1A;
  59.     background: #FAFAFC;
  60.     border: 1px solid #E9E9E9;
  61.     padding: 10px;
  62.     overflow: hidden;
  63.     margin-top: 3px;
  64. }
  65.  
  66. /**
  67.  * This is the container of all messages; The guestbook.
  68.  */
  69. #messagesBlock {
  70.     font-size: 0.85em;
  71.     color: #3B5998;
  72.     text-decoration: none;
  73.     background: #F2F2F2;
  74.     border: 1px solid #E9E9E9;
  75.     padding: 10px;
  76.     overflow: hidden;
  77. }
Add Comment
Please, Sign In to add comment