My Website
1body {
2 margin-left: 20%;
3 margin-right: 20%;
4 margin-top: 50px;
5 font-family: Arial, Helvetica, sans-serif;
6}
7
8.header
9{
10 color: rgb(68, 68, 68);
11 font-family:Arial;
12 font-size:70px;
13 margin-right: 13%;
14 font-weight: bold;
15 text-decoration: none;
16}
17
18.headerselected
19{
20 color: rgb(68, 68, 68);
21 font-family:Arial;
22 font-size:70px;
23 margin-right: 13%;
24 font-weight: bold;
25 text-decoration: underline;
26}
27
28.subheader
29{
30 color: rgb(68, 68, 68);
31 font-family:Arial;
32 font-size:50px;
33 font-weight: bold;
34 margin-top: 60px;
35 margin-bottom: 30px;
36 text-decoration: none;
37}
38
39.content
40{
41 color: rgb(68, 68, 68);
42 font-family:Arial;
43 font-size:25px;
44 font-weight: normal;
45 margin-top: 50px;
46 text-decoration: none;
47}
48
49.imagewithtext
50{
51 float: left;
52 padding-right: 40px;
53}
54
55a:link
56{
57 color: rgb(68, 68, 68);
58}
59a:visited
60{
61 color: rgb(68, 68, 68);
62 text-decoration: none;
63}
64
65@media only screen and (max-width: 800px) {
66 body {
67 margin-left: 40px;
68 margin-right: 40px;
69 }
70 }