this repo has no description
1* {
2 font-family: Arial, Helvetica, sans-serif;
3}
4
5body {
6 background-color: cadetblue;
7 background-image: url("background.webp");
8 background-attachment: fixed;
9 background-repeat: no-repeat;
10 background-position: center;
11 background-size: cover;
12}
13
14p {
15 color: darkturquoise;
16 background-color: red;
17}
18
19/* ID Selector */
20#top {
21 font-size: 200px;
22}
23
24/* Class Selector */
25.center {
26 margin-left: auto;
27 margin-right: auto;
28}
29
30/* grab p thats inside two divs */
31div div p {
32 background-color: transparent;
33 text-align: right;
34}
35
36p:first-child {
37 color: blue;
38}
39p:nth-child(2) {
40 color: green;
41}
42
43table tr:nth-child(even) {
44 background-color: rgba(0, 255, 255, 0.422);
45}
46table tr:nth-child(odd) {
47 background-color: rgba(255, 0, 0, 0.424);
48}
49th {
50 background-color: rgba(255, 255, 255, 0.625);
51}
52
53div {
54 padding: 50px;
55 margin: 20px;
56}
57
58h1,
59h2,
60h3,
61h4,
62h5,
63h6 {
64 text-align: center;
65 font-style: italic;
66}
67
68img {
69 border-radius: 10px;
70}
71
72a {
73 font-style: italic;
74 color: bisque;
75}
76a:visited {
77 font-style: italic;
78 color: coral;
79}