-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.css
128 lines (122 loc) · 2.37 KB
/
profile.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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
* {
box-sizing: border-box;
padding: 0px;
margin: 0px;
font-family: "Inter", sans-serif;
-webkit-font-smoothing: antialiased;
}
/* --------- NAVIGATION BAR --------- */
nav {
color: black;
display: flex;
flex-direction: row;
align-items: center;
position: fixed;
width: 100%;
/* height: 70px; */
/* background-color: transparent; */
height: 9%;
background-color: white;
top: 0;
z-index: 1;
}
.logo {
margin-left: 5.1%;
padding-top: 0%;
font-size: 25px;
width: 20%;
text-decoration: none;
}
.logo a {
text-decoration: none;
color: inherit;
}
.logo a:visited {
color: inherit;
}
.logo a:hover, .logo a:active {
color: inherit;
}
.searchBar {
width: 40%;
padding-top: 0%;
margin-left: 15%;
}
input[type=text] {
width: 100%;
box-sizing: border-box;
border-radius: 14px;
font-size: 16px;
background-color: black;
padding: 11px 20px 11px 40px;
color: white;
}
ul {
padding-top: 0%;
display: flex;
align-items: center;
font-size: 22px;
font-weight: 700;
margin-left: 0.5%;
margin-right: 0%;
}
ul li {
list-style: none;
text-decoration: none;
margin-left: 40px;
display: flex;
align-items: center;
}
ul li img {
height: 40px;
width: 40px;
}
/* --------- CATEGORY STRIP --------- */
.categories {
display: flex;
justify-content: center;
background-color: white;
padding: 10px 0px;
margin-top: 77px;
}
.categories ul {
display: flex;
gap: 0px;
list-style-type: none;
padding: 0;
margin: 0;
}
.categories li {
display: inline-block;
margin: 5px;
}
.categories li a {
display: inline-block;
padding: 10px 25px;
background-color: rgb(232, 232, 232);
color: black;
text-decoration: none;
border-radius: 10px;
font-size: 16px;
transition: background-color 0.3s;
}
.categories li a:hover {
background-color: darkgrey;
transform: translateY(-3px);
}
/* Custom Scrollbar ------------------------- */
::-webkit-scrollbar {
width: 10px;
height: 10px;
}
::-webkit-scrollbar-track {
border-radius: 2px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
background-color: #ffffff;
border: 1px solid #000000;
}
::-webkit-scrollbar-thumb {
border-radius: 5px;
background: #000000;
border: 1px solid #000000;
}