-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfsdday6.css
More file actions
48 lines (47 loc) · 951 Bytes
/
Copy pathfsdday6.css
File metadata and controls
48 lines (47 loc) · 951 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
/* .main-heading{
color:chartreuse;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
} */
.menu-list{
list-style-type:none;
display:inline-flex;
}
.menu-item{
padding:10px;
margin:10px;
}
.menu-nav{
height:80px;
width:100%;
background-color: rgb(7, 7, 155);
}
/* ul tag, li tag and anchor tag */
ul li a{
color:aliceblue;
font-size:20px;
font-weight:500;
text-decoration: none;
}
.items{
display: inline-flex;
position:absolute;
right:0px;
}
ul li a:hover{
color: rgb(230, 255, 69);
border: 2px solid #fff;
}
ul li:hover{
background-color: rgba(0, 255, 255, 0.694);
}
.active{
background-color:rgba(44, 255, 220, 0.726);
color:antiquewhite;
}
.input-box{
height:30px;
width:200px;
border: 2px solid rgba(51, 4, 53, 0.655);
border-radius: 10px;
background-color: rgb(255, 184, 207);
}