mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-21 04:09:55 +09:00
- 2022년 3월 개발팀 결정사항 적용 - 모듈 등 서드파티 자료 개발시 composer를 사용하면 상위 경로에 있는 코어의 composer.json을 수정하고, 코어의 vendor 디렉토리를 건드리는 것이 기본값임 - 이를 방지하기 위해 코어의 composer.json과 vendor를 common 디렉토리 안으로 이동하여, 모듈 경로에서 상위 폴더로 인식하지 않도록 함
105 lines
1.1 KiB
CSS
105 lines
1.1 KiB
CSS
* {
|
|
color: blue;
|
|
}
|
|
E {
|
|
color: blue;
|
|
}
|
|
E[foo] {
|
|
color: blue;
|
|
}
|
|
[foo] {
|
|
color: blue;
|
|
}
|
|
[foo] .helloWorld {
|
|
color: blue;
|
|
}
|
|
[foo].helloWorld {
|
|
color: blue;
|
|
}
|
|
E[foo="barbar"] {
|
|
color: blue;
|
|
}
|
|
E[foo~="hello#$@%@$#^"] {
|
|
color: blue;
|
|
}
|
|
E[foo^="color: green;"] {
|
|
color: blue;
|
|
}
|
|
E[foo$="239023"] {
|
|
color: blue;
|
|
}
|
|
E[foo*="29302"] {
|
|
color: blue;
|
|
}
|
|
E[foo|="239032"] {
|
|
color: blue;
|
|
}
|
|
E:root {
|
|
color: blue;
|
|
}
|
|
E:nth-child(odd) {
|
|
color: blue;
|
|
}
|
|
E:nth-child(2n+1) {
|
|
color: blue;
|
|
}
|
|
E:nth-child(5) {
|
|
color: blue;
|
|
}
|
|
E:nth-last-child(-n+2) {
|
|
color: blue;
|
|
}
|
|
E:nth-of-type(2n) {
|
|
color: blue;
|
|
}
|
|
E:nth-last-of-type(n) {
|
|
color: blue;
|
|
}
|
|
E:first-child {
|
|
color: blue;
|
|
}
|
|
E:last-child {
|
|
color: blue;
|
|
}
|
|
E:first-of-type {
|
|
color: blue;
|
|
}
|
|
E:last-of-type {
|
|
color: blue;
|
|
}
|
|
E:only-child {
|
|
color: blue;
|
|
}
|
|
E:only-of-type {
|
|
color: blue;
|
|
}
|
|
E:empty {
|
|
color: blue;
|
|
}
|
|
E:lang(en) {
|
|
color: blue;
|
|
}
|
|
E::first-line {
|
|
color: blue;
|
|
}
|
|
E::before {
|
|
color: blue;
|
|
}
|
|
E#id {
|
|
color: blue;
|
|
}
|
|
E:not(:link) {
|
|
color: blue;
|
|
}
|
|
E F {
|
|
color: blue;
|
|
}
|
|
E > F {
|
|
color: blue;
|
|
}
|
|
E + F {
|
|
color: blue;
|
|
}
|
|
E ~ F {
|
|
color: blue;
|
|
}
|