-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (39 loc) · 778 Bytes
/
style.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
/*
Testing the comment feature on css file
Can do multiple lines at once
*/
*{text-align: center;}
hr{
width: 50%;
}
h2, p{
font-style: italic; color: blue;
}
q.red{background-color: red;color: black;}
q.blue{background-color: cyan;color: red;}
h2 {font-variant: small-caps;}
body {font-family: Courier, monospace;}
h1{border: thin dotted blue;}
h2{border: 10px solid;}
.eggplant {background-color: rgb(52%, 20%, 45%);}
.white{color: white;}
.orange-background{background-color: orange;}
.black{color: black; background-color: orange;}
#Obama-Quote{
background-color: yellow; color: crimson;
}
/*
.red{
background-color: aqua;
}
.white{
background-color: green;
}
.blue{
background-color: red;
}
*/
/*.orange{
color: darkorange;
}
*/