I'm having trouble with my text-decoration in main.css. I've tried changing the placement of tags and adding the tag several times, but it still doesn't work. Adding !important didn't solve the issue either. I'm unsure of what else to do. Thank you so much in advance!
Below is the CSS code:
body {
background: #2c2c2c;
}
aside {
float: left;
background: #181818;
width: 20%;
padding: 2.5%;
height: 100vh;
color: #fff;
border-right: 5px solid #4d4d4d;
}
aside img {
width: 80px;
float: left;
}
aside .logo {
font-size: 40px;
margin-left: 10px;
font-weight: bold;
position: relative;
top: -5px;
}
aside h3 {
margin-top: 50px;
font-size: 28px;
}
...
And here is the HTML code:
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
...