Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 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;
  16. }
  17.  
  18. .profile img {
  19. display: block;
  20. padding: 10px;
  21. border: 2px solid #34495e;
  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. .info h2{
  37. margin: 0;
  38. padding: 10px;
  39.  
  40. font-weight: normal;
  41. font-size: 12px;
  42. color: #ffffff;
  43. background: #34495e !important;
  44. border-radius: 4px;
  45. }
  46.  
  47. .info div.fact{
  48. padding: 10px;
  49. background: white;
  50. }
  51.  
  52. .fact:nth-child(odd) div{
  53. background: #ecf0f1;
  54. }
  55.  
  56. .fact::after {
  57. content: "";
  58. display: table;
  59. clear: both;
  60. }
  61.  
  62. .info .fact .title {
  63. float: left;
  64. width: 120px;
  65. text-align: right;
  66. color: #7f8c8d;
  67. }
  68.  
  69. .info .fact .value {
  70. margin-left: 140px;
  71. color: #34495e;
  72. }
  73.  
  74. .albums {
  75. margin-top: 5px, !important;
  76. }
  77.  
  78. .albums img, img+#mishka {
  79. float: left, !important;
  80. margin-right: 5px, !important;
  81. }
  82.  
  83. .albums img:last-child {
  84. margin-right: 0;
  85. }
  86.  
  87. span.button {
  88. display: block;
  89. height: 30px;
  90. margin: 5px 0;
  91.  
  92. line-height: 30px;
  93. text-align: center;
  94. color: #ffffff;
  95. border-radius: 4px;
  96. }
  97.  
  98. .button.stroke {
  99. background: #3498db;
  100. }
  101.  
  102. .button.feed {
  103. background: #2ecc71;
  104. }
  105.  
  106. .button.startle {
  107. background: #e74c3c;
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement