dev #1

Merged
keyemail merged 3 commits from dev into master 2024-06-06 17:54:27 +00:00
Showing only changes of commit 4df2e87590 - Show all commits

View file

@ -89,19 +89,18 @@ nav {
color: white; color: white;
font-family: 'Rubik', sans-serif; font-family: 'Rubik', sans-serif;
font-weight: 500; font-weight: 500;
}
nav h1{ h1{
width: fit-content; width: fit-content;
z-index: 10; z-index: 10;
} }
nav ul { ul {
list-style: none; list-style: none;
float: right; float: right;
} }
nav ul li{ ul li{
display: inline; display: inline;
cursor: pointer; cursor: pointer;
margin-left: 10px; margin-left: 10px;
@ -109,16 +108,16 @@ nav ul li{
transition: color 0.3s; transition: color 0.3s;
} }
nav ul a { ul a {
text-decoration: none; text-decoration: none;
color: inherit; color: inherit;
} }
nav ul li:hover{ ul li:hover{
color: #8ee8fc; color: #8ee8fc;
} }
nav i { i {
float: right; float: right;
font-size: 35px; font-size: 35px;
cursor: pointer; cursor: pointer;
@ -126,9 +125,10 @@ nav i {
z-index: 10; z-index: 10;
} }
nav i:hover { i:hover {
color: #74d2f1; color: #74d2f1;
} }
}
#mobileNav { #mobileNav {
position: absolute; position: absolute;
@ -138,23 +138,22 @@ nav i:hover {
left: 0; left: 0;
top: 0; top: 0;
z-index: 9; z-index: 9;
}
#mobileNav i { i {
float: right; float: right;
font-size: 35px; font-size: 35px;
cursor: pointer; cursor: pointer;
transition: 0.3s color; transition: 0.3s color;
} }
#mobileNav div { div {
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
height: 100%; height: 100%;
} }
#mobileNav div li { div li {
cursor: pointer; cursor: pointer;
margin-left: 10px; margin-left: 10px;
font-weight: 400; font-weight: 400;
@ -165,13 +164,15 @@ nav i:hover {
margin: 10px; margin: 10px;
} }
#mobileNav div a { div a {
color: white; color: white;
text-decoration: none; text-decoration: none;
transition: 0.3s color; transition: 0.3s color;
} }
#mobileNav div a:hover {
div a:hover {
color: #74d2f1; color: #74d2f1;
} }
}
</style> </style>