-
Notifications
You must be signed in to change notification settings - Fork 0
/
Style.css
67 lines (57 loc) · 983 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
57
58
59
60
61
62
63
64
65
66
67
body
{
background-color: #272727;
color: wheat;
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
line-height: 1.6em;
margin: 0;
}
.Container
{
width: 60%;
margin:auto;
overflow: hidden;
}
#MainHeader
{
text-align: center;
}
#NavigationMenu
{
background-image: url('BackGroundMenu.JPG')
}
#NavigationMenu ul /*unorder list */
{
padding: 0;
text-align: center;
list-style: none;
}
#NavigationMenu li /*list item*/
{
display: inline;
font-size: 20px;
}
#NavigationMenu li:nth-child(1) /*list item*/
{
text-decoration: underline;
}
#NavigationMenu a
{
text-decoration: none; /*this is to erase underline*/
font-size: 18 px;
padding-right: 15px;
color: black;
}
#NavigationMenu a:hover
{
color: rgb(143, 143, 143);
}
#MainBody
{
text-align: left;
}
h1
{
font-family: 'Times New Roman', Times, serif;
}