-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolour.css
More file actions
44 lines (40 loc) · 704 Bytes
/
Copy pathcolour.css
File metadata and controls
44 lines (40 loc) · 704 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
*{
margin:0;
padding:0;
}
nav
{
background-color: rgb(6, 5, 7);
color:beige;
height: 7rem;
display: flex;
align-items: center;
justify-content: space-around;
}
.nav-links
{
display: flex;
}
ul li a
{
color: beige;
text-decoration: none;
font-size: 20px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
transition: 0.3s ;
}
ul li{
margin: 20px;
list-style:none;
}
ul li a:hover
{
color: orange;
}
body
{
/*background-image: url("ABES\ EC.jpeg");
background-repeat: no-repeat;*/
background: linear-gradient(yellow,green);
background-repeat: repeat-y;
}