forked from Bibhushan17/Vetinary-Shop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomestyle.css
More file actions
70 lines (63 loc) · 1.08 KB
/
Copy pathhomestyle.css
File metadata and controls
70 lines (63 loc) · 1.08 KB
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
68
69
70
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body
{
background-color:#D5E6EF;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 10px;
}
a{
text-decoration: none;
}
li{
list-style:none;
}
.navbar
{
display: flex;
align-items: center;
justify-content: space-between;
padding: 1%;
background-color: rgb(255, 255, 255);
box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 9999;
}
.nav-links a
{
color: rgb(0, 0, 0); /* defines text color */
margin: 5%;
}
.nav-links li a:hover
{
background-color: #f0eeff;
/* background-image: linear-gradient(90deg,rgb(217, 155, 155), rgb(69, 183, 237)); */
/* color: #D5E6EF; */
}
.logo
{
height: auto;
width: auto;
margin-left: 2%;
}
.menu
{
margin-right: 2%;
display: flex;
float: right;
gap: 1em;
font-size: 1.5em;
}
.nav-links .menu
{
margin-right: 3%;
}
menu li{
padding: 0px 0px;
}