-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmainstyle.css
More file actions
67 lines (62 loc) · 996 Bytes
/
mainstyle.css
File metadata and controls
67 lines (62 loc) · 996 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
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{
width: 70;
margin: auto;
}
main{
background-color: rgb(245, 193, 175);
margin: auto;
border:2px solid black;
padding: 5px;
}
h1{
color: blueviolet;
}
p{
background-color: blue;
color: white;
}
.elstyles{
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: greenyellow;
color: darkblue;
}
ul{
text-decoration: none;
}
li{
display: block;
}
a{
text-decoration: none;
}
.sectionstyle{
width: 50%;
background-color: chartreuse;
}
#h1style{
color: black;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
/*Nav menu style*/
ul{
background-color: darkgray;
}
ul>li{
list-style: none;
display: inline;
}
ul>li>a{
text-decoration: none;
color: white;
background-color: green;
margin-left: 4px;
padding: 5px;
}
ul>li>a:hover{
color: green;
background-color: white;
}
.selected{
color: yellow;
background-color: rgb(161, 40, 40);
}