Despite doing this before in many other projects, it seems that I ran out of luck. I wanted the logo to slightly rotate once you hover on the menu button. So, by using this snippet of code:
.menu:hover .logoimage {
transform: rotate(17deg);
}
I expected it to do just that. But it didn't rotate the icon. As a test, I used this code:
.logoimage:hover {
transform: rotate(17deg);
}
and it worked. I decided to look into an answer in stack overflow that mentioned using sibling combinators here. I put +, ~, and > with no success. I'm beginning to think this a structural issue in my HTML code, but I'm still not quite sure yet. Can any of you help me out?
/* Stylesheet for dotmatrixmoe.com
-------------------------------
Programmed by Javier Moe */
/* --------------
Fonts
--------------
*/
@font-face {
font-family: game-over;
src: url(resources/fonts/game-over.regular.ttf);
}
/* ---------------
Classes
---------------- */
.weblogo {
display: flex;
align-items:center;
flex-direction: row;
justify-content: space-between;
width: 100%;
}
.logo {
display: flex;
align-items:center;
width: 20%;
font-size: 2.7vw;
font-family: game-over;
}
.logoimage {
width: 3.2vw;
margin: 0px 12px 0px 8px;
transition: transform 0.2s ease-out;
}
.headerwrapper {
width: 100%;
height: 3.5vh;
background-color: #b1c5d4;
padding: 3.5em 0px 4.5em 0px;
overflow: hidden;
}
.menubuttonbar {
width: 3.5em;
height: 0.54em;
background-color: #686573;
margin: 6px 0;
}
.menu {
display: inline-block;
margin: 0px 1.5em 0px 1.2em;
border: none;
outline: none;
background: none;
}
/* ----------------
Mobile Classes
---------------- */
@media only screen and (max-width: 600px) {
.brandingtext {
font-size: 7.7vw;
display: flex;
font-family: game-over;
justify-content: center;
}
.weblogo {
}
.logoimage {
width: 7.7vw;
}
}
/* ------------------
Property Classes/
Instructions
----------------- */
body {
padding: 0px;
margin: 0px;
}
header {
position: fixed;
width: 100%;
}
.menu:hover .logoimage {
transform: rotate(17deg);
}
<DOCTYPE html>
<!-- Programmed entirely be me, Javier Moe.-->
<!-- Website Metadata -->
<head>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="resources/icons/head.png">
<title>dotmatrixmoe</title>
</head>
<!-- HTML Document -->
<body>
<header>
<div class="headerwrapper">
<div class="weblogo">
<div class="logo">
<img src="https://via.placeholder.com/30x30" class="logoimage">
text
</div>
<div id="menu">
<button onclick=togglemenu class="menu">
<div class="menubuttonbar">
</div>
<div class="menubuttonbar">
</div>
<div class="menubuttonbar">
</div>
</button>
</div>
</div>
</div>
</header>
</body>