File size: 1,699 Bytes
f5071ca |
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 |
.header {
height: 72px;
width: 100%;
top: 0;
position: fixed;
background-color: #0f171e;
font-size: 17px;
line-height: 24px;
padding: 16px 35px;
display: flex;
z-index: 6;
}
.primeIcon {
height: 50px;
position: relative;
top: 2px;
background-position: left 0;
object-fit: contain;
color: #0f171e;
filter: invert(1);
}
.iconDiv {
left: 0;
}
.navBarDiv {
display: flex;
color: rgba(242, 244, 246, 0.9);
padding-top: 10px;
font-size: 17px;
min-width: 250px;
align-content: space-between;
}
.navLinks {
color: rgba(242, 244, 246, 0.9);
margin: 8px;
}
.inputOuterDiv {
border: 1px solid gray;
width: 220px;
height: 40px;
margin-top: 10px;
cursor: pointer;
}
.inputOuterDiv:hover {
border: 1px solid whitesmoke;
}
.inputBox {
border: none;
outline: none;
background-color: #0f171e;
color: white;
margin-left: 5px;
line-height: 20px;
font-size: 15px;
padding: 0px;
}
.inputBox::placeholder {
color: darkgray;
}
.inputDiv {
padding: 9px;
display: flex;
margin-right: 5px;
}
.searchIcon {
filter: invert(0.8);
}
.searchIcon:hover {
filter: invert(1);
}
.headerAlignEnd {
position: absolute;
right: 100px;
display: flex;
}
.account {
filter: invert(0.7);
width: 30px;
object-fit: contain;
margin-left: 20px;
margin-top: 13px;
}
.account:hover {
filter: invert(1);
cursor: pointer;
}
a {
text-decoration: none;
color: rgba(242, 244, 246, 0.9);
}
a:hover {
.textLink {
color: white;
}
.navLinks {
border-bottom: 2px solid white;
cursor: pointer;
}
}
a:active {
.textLink {
color: white;
}
.navLinks {
border-bottom: 2px solid white;
cursor: pointer;
}
}
|