Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. html,
  2. body {
  3. margin: 0;
  4. padding: 0;
  5. }
  6.  
  7. body {
  8. width: 550px;
  9. height: 300px;
  10. font-size: 12px;
  11. font-family: Tahoma, Arial, sans-serif;
  12. }
  13.  
  14. .profile {
  15. padding: 5px 10px !important;
  16. }
  17.  
  18. .profile fact img {
  19. display: block ;
  20. padding: 10px;
  21. border: 2px solid #34495e !important;
  22. border-radius: 8px;
  23. }
  24.  
  25. .profile .photo {
  26. float: left;
  27. width: 152px;
  28. }
  29.  
  30. .profile .info {
  31. float: left;
  32. width: 368px;
  33. margin-left: 10px;
  34. }
  35.  
  36. h2 {
  37. margin: 0 !important;
  38. padding: 10px !important;
  39. font-weight: normal !important;
  40. font-size: 12px !important;
  41. color: #ffffff !important;
  42. background: #34495e !important;
  43. border-radius: 4px !important;
  44. }
  45.  
  46. div .info .fact {
  47. padding: 10px;
  48. background: white;
  49. }
  50.  
  51. div .fact:nth-child(odd){
  52. background: #ecf0f1;
  53. }
  54.  
  55. div .fact::after {
  56. content: "";
  57. display: table;
  58. clear: both;
  59. }
  60.  
  61. div .fact .title {
  62. float: left;
  63. width: 120px;
  64. text-align: right;
  65. color: #7f8c8d;
  66. }
  67.  
  68. div .fact .value {
  69. margin-left: 140px;
  70. color: #34495e;
  71. }
  72.  
  73. .albums img {
  74. margin-top: 5px;
  75. }
  76.  
  77. .albums img:first-child {
  78. float: left;
  79. margin-right: 5px ;
  80. }
  81.  
  82. .albums img:last-child {
  83. margin-right: 0;
  84. }
  85.  
  86. .photo .button {
  87. display: block;
  88. height: 30px;
  89. margin: 5px 0;
  90. line-height: 30px;
  91. text-align: center;
  92. color: #ffffff;
  93. border-radius: 4px;
  94. }
  95.  
  96. .photo .stroke {
  97. background: #3498db;
  98. }
  99.  
  100. .photo .feed {
  101. background: #2ecc71;
  102. }
  103. .photo .startle {
  104. background: #e74c3c;
  105. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement