-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathelements.css
More file actions
39 lines (39 loc) · 588 Bytes
/
elements.css
File metadata and controls
39 lines (39 loc) · 588 Bytes
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
body{
margin:0;
background-color: black;
}
h1{
color: aquamarine;
text-align: center;
}
h4{
color: orange;
text-align: center;
}
a{
text-decoration: none;
color: brown;
}
a:hover{
color:aquamarine;
}
blockquote{
color: aquamarine;
text-align: center;
font-size: 1.35rem;
font-family: 'Lobster', cursive;
}
/*Pseudo elements starts*/
blockquote::before{
content: open-quote;
color: orange;
}
blockquote::after{
content: close-quote;
color: orange;
}
/*Pseudo elements ends*/
p{
color: aquamarine;
padding: 20px;
}