1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
._input__exportName {
color: green;
}
._input__exportName:hover {
color: red;
}
._input__\:\:\:\: {
color: rebeccapurple;
}
._input__\31 a2b3c {
color: gainsboro;
}
._input__\32 {
color: aqua;
}
._input__𝌆 {
color: fuchsia;
}
._input__u-m\00002b {
color: maroon;
}
#_input__u-m\+ {
color: navy;
}
@media (max-width: 520px) {
/* selector doubled to increase specificity */
._input__exportName._input__exportName {
color: darkgreen;
}
._input__newExport {
color: blue;
}
}
:export {
2: _input__2;
exportName: _input__exportName;
::::: _input__::::;
1a2b3c: _input__1a2b3c;
𝌆: _input__𝌆;
u-m+: _input__u-m+;
newExport: _input__newExport;
}
|