27 lines
433 B
CSS
27 lines
433 B
CSS
/* size and position of the sidebar */
|
|
.sidebar {
|
|
width: 150px;
|
|
position: relative;
|
|
float: left;
|
|
margin-top: 10px;
|
|
bottom: 0;
|
|
opacity: 95%;
|
|
/* background: rgba(34, 129, 247, 0.8); */
|
|
}
|
|
|
|
.nav a {
|
|
font-size: 1em;
|
|
}
|
|
|
|
/* show curso position on link */
|
|
.nav a:hover:not(.active) {
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
/* show content beneath sidebar */
|
|
.content {
|
|
position: relative;
|
|
float: right;
|
|
margin-top: 10px;
|
|
}
|