-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (48 loc) · 919 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
/* Add a black background color to the top navigation */
#topnav {
background-color: #1c1d52;
overflow: hidden;
text-align: right;
}
/* Style the links inside the navigation bar */
#topnav a {
float: right;
color: #f2f2f2;
text-align: right;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
#topnav a:hover {
background-color: #A09DFF;
color: black;
text-align: left;
border-top: 3px solid #3059BC;
border-radius: 5px;
transition: 0.15s;
}
/* Add a color to the active/current link */
#topnav a.active {
background-color: #669cdf;
color: white;
text-align: left;
border: 3px solid #4981A6;
border-radius: 10px
}
#bg {
margin:0px;
background-color: #f7e2b1;
text-align: left;
}
article {
margin: 10px;
}
h1 {
font-size: 30px;
}
.footer {
background-color: #F1F1F1;
text-align: center;
padding: 10px;
}