Advertisement
Radogor

Испытание: взломанный котопрофайл [18/18]

Mar 3rd, 2016
3,773
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.53 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.     font-weight: normal;
  40.     font-size: 12px;
  41.     color: #ffffff;
  42.     background: #34495e !important;
  43.     border-radius: 4px;
  44. }
  45.  
  46. .profile .info .fact {
  47.     padding: 10px;
  48.     background: white;
  49. }
  50.  
  51. .profile .info .fact:nth-child(odd) {
  52.     background: #ecf0f1;
  53. }
  54.  
  55. .fact::after {
  56.     content: "";
  57.     display: table;
  58.     clear: both;
  59. }
  60.  
  61. .profile .info .fact .title {
  62.     float: left;
  63.     width: 120px;
  64.     text-align: right;
  65.     color: #7f8c8d;
  66. }
  67.  
  68. .profile .info .fact .value {
  69.     margin-left: 140px;
  70.     color: #34495e;
  71. }
  72.  
  73. .albums {
  74.     margin-top: 5px;
  75. }
  76.  
  77. #miska, .albums img {
  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.  
  104. .photo .startle {
  105.     background: #e74c3c;
  106. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement