Hi there,
Working on my first story for a class project and I was wondering how to remove the default 1px border on the SugarCube 2 menu buttons. The borders are taking away from the minimal aesthetic I'm going for, but I really need to keep the back/forward buttons and save buttons as the content of my story will be getting marked.
For the menu bar, I have this going on in my Stylesheet:
#ui-bar {
background-color: rgba(0,0,0,0.3);
width: 250px;
padding: 2em .58em 0 1.5em;
border: none;
}
#menu li a {
color: #fff;
text-decoration: none;
background:rgba(0,0,0,0.5);
transition: .6s background;
border: none;
}
#menu li a:hover {
background: rgba(0,0,0,0.9);
color: white;
text-decoration: bold;
}
Thank you so much in advance!!