1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /* Приоритет третьего порядка для цитаты*/
- blockquote {
- color: red;
- }
- a[href^="https"] {
- color: red;
- }
- .list > li:last-child a {
- background: green;
- }
- ul + p {
- font-size: 26px;
- }
- .text-box > h3:first-child {
- color: pink;
- }
- #greycol {
- color: gray;
- }
- div :nth-child(7) {
- color: green;
- }
- .text-box div > p {
- color: red;
- }
- p[class|="yellow"] {
- color: yellow;
- }
- .bg-box {
- height: 378px;
- width: 669px;
- background-color: green;
- background-image: url(../img/pole-zelen-trava-dom-derevya.jpeg), url(../img/lamp-png-0.png), url(../img/grass-png-images-pictures-transparent-28.png),
- url(../img/hedgehog.png), url(../img/donut-clip-art-4.png);
- background-position: center, top, bottom, left, right;
- background-size: 50%, 25px, 20%, 25px, 25px;
- background-repeat: no-repeat, repeat-x, repeat-x, repeat-y, repeat-y;
- }
|