-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpseudo.css
62 lines (55 loc) · 867 Bytes
/
pseudo.css
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
53
54
55
56
57
58
59
60
61
62
/* a:link{
color: rgb(8, 240, 39);
text-decoration: none;
}
a:hover{
color: red;
font-size: 1.1em;
}
a:active{
font-size: 1.1em;
color: blue;
}
a:visited{
color: blueviolet;
}
li:nth-child(2n+1){
background-color: yellow;
}
#greeting p{
background-color: aqua;
padding: 10px;
display: none;
}
#greeting:hover p{
display: block;
} */
h1::first-letter{
font-size: 2em;
font-style: italic;
}
P::first-line{
background-color: rgb(80, 42, 252);
}
p::selection{
color: rgb(14, 136, 14);
background-color: rgba(46, 46, 46, 0.459);
}
/* #fruit li::before{
content: "v";
color: aqua;
} */
#apple::after{
content: "🍎 ";
}
#banana::after{
content: "🍌 ";
}
#orange::after{
content: "🍊 " ;
}
#fruit li::marker{
content: "✔️ ";
font-size: 1.2em;
color: aqua;
}