48 lines
834 B
CSS
Executable File
48 lines
834 B
CSS
Executable File
body {
|
|
border: 2px solid rgba(167, 47, 20, 1);
|
|
/* border-radius: 25px; */
|
|
margin: 20px 200px;
|
|
}
|
|
|
|
img.pfp {
|
|
border: 2px solid rgba(167, 47, 20, 1);
|
|
max-width: 150px;
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
.sidenav {
|
|
height: 100%;
|
|
width: 160px;
|
|
position: fixed;
|
|
z-index: 1;
|
|
top: 20;
|
|
left: 200;
|
|
overflow-x: hidden;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.sidenav a {
|
|
padding: 6px 8px 6px 16px;
|
|
text-decoration: none;
|
|
font-size: 25px;
|
|
color: #818181;
|
|
display: block;
|
|
}
|
|
|
|
.sidenav a:hover {
|
|
color: #f1f1f1;
|
|
}
|
|
|
|
.main {
|
|
margin-left: 160px; /* Same as the width of the sidenav */
|
|
font-size: 28px; /* Increased text to enable scrolling */
|
|
padding: 0px 10px;
|
|
min-height: 20em;
|
|
}
|
|
|
|
@media screen and (max-height: 450px) {
|
|
.sidenav {padding-top: 15px;}
|
|
.sidenav a {font-size: 18px;}
|
|
} |