-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
92 lines (87 loc) · 1.6 KB
/
stylesheet.css
File metadata and controls
92 lines (87 loc) · 1.6 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
body{
margin: 0;
background-image: url("/images/myntra-bg.jpg");
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
background-position: center;
}
.navbar{
display: flex;
align-items: center;
background-color: hsl(0, 0%, 100%);
padding: 1.5vh 3vw;
position: sticky;
top: 0;
z-index: 10;
width: 100%;
height: 6vh;
box-shadow: black 1em 0.4em 1em;
gap: 2vw;
box-sizing: border-box;
justify-content: space-between;
}
.nav-links{
list-style: none;
display: flex;
margin-left: 2vw;
/*padding: 0;*/
gap: 2vw;
}
.nav-links a{
text-decoration: none;
color: hsl(230, 22%, 20%);
font-weight: bold;
}
.logo{
}
.logo img{
width: 6vw;
height: 4vh;
border-radius: 20%;
}
.nav-links{
}
.nav-search{
display: flex;
align-items: center;
justify-content: center;
margin: 0;
padding: 0;
gap: 0;
}
.nav-search button{
background: white;
border: 0.01em solid hsl(230, 22%, 20%);
border-right: none;
padding: 0;
margin: 0;
width: 2vw;
height: 2vh;
display: flex;
}
.nav-search button img{
/*background-image: url("/hack/images/search-icon.png");*/
/*border-right: 0;*/
padding: 0;
background: white;
}
.nav-search input{
height: 1.69vh;
width: 20vw;
border: 0.01em solid hsl(230, 22%, 20%);
border-left: none;
}
.icons{
display: flex;
align-items: center;
justify-content: center;
}
.icons img{
width: 100%;
height: 3vh;
}
/*#profile-icon{*/
/* width: 100%;*/
/* height: 3vh;*/
/*}*/