style.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*body{
  2. /* background-color: aqua; */
  3. }
  4. img{
  5. /* background-clip: padding-box;
  6. background: #fff;
  7. border: black;
  8. border-width: 100px;
  9. border-style: dashed;
  10. vertical-align:bottom;
  11. } */
  12. /* .col {
  13. background: #f0f0f0; /* Цвет фона */
  14. width: 230px; /* Ширина блока */
  15. padding: 10px; /* Поля */
  16. font-size: 1.5em; /* Размер шрифта */
  17. word-wrap: break-all; /* Перенос слов */
  18. line-height: 10em;
  19. }
  20. blockquote {
  21. margin: 0;
  22. }
  23. blockquote p {
  24. padding: 15px;
  25. background: #eee;
  26. border-radius: 5px;
  27. }
  28. blockquote p::before {
  29. content: '\201C';
  30. }
  31. blockquote p::after {
  32. content: '\201D';
  33. }
  34. a[href^='https://'] {
  35. color: red;
  36. font-size: 30px;
  37. }*/
  38. .holder:last-of-type{
  39. color:black;
  40. }
  41. .bg{
  42. display:block;
  43. text-align: center;
  44. /* width: 500px;
  45. height: 400px;
  46. background-image: url("img/1.jpg") ; */
  47. width: 500px;
  48. height: 500px;
  49. background-color: green;
  50. background-image: url("img/1.jpg"),url("img/2.png"),url("img/3.png"),url("img/4.png"),url("img/5.png");
  51. background-size:300px,150px,40px,40px,40px;
  52. background-repeat: no-repeat,repeat-x, repeat-x,repeat-y, repeat-y;
  53. background-position: center,bottom,top,left, right;
  54. }