fredboniface.co.uk/style/new_menu.css

83 lines
1.3 KiB
CSS
Raw Normal View History

2022-10-19 11:51:07 +01:00
#menubar {
2022-10-18 11:55:11 +01:00
background-color: darkslategrey;
color: azure;
position: fixed;
top: 0;
left: 0;
width: 100%;
2022-10-18 12:15:58 +01:00
height: 40px;
}
2022-10-19 11:51:07 +01:00
#menubar_logo img {
2022-10-19 11:53:53 +01:00
max-height: 20px;
2022-10-19 11:51:07 +01:00
padding: 10px;
2022-10-18 12:15:58 +01:00
}
2022-10-19 11:51:07 +01:00
#menubar_hamburger {
2022-10-18 12:15:58 +01:00
position: absolute;
top: 2px;
right: 0;
padding: 5px;
}
2022-10-19 11:51:07 +01:00
#sidebar_open_short {
2022-10-18 13:00:41 +01:00
display: block;
font-size: larger;
2022-10-19 11:51:07 +01:00
background-color: transparent;
2022-10-18 13:00:41 +01:00
color: azure;
border: none;
border-radius: 2px;
}
2022-10-19 11:51:07 +01:00
#sidebar_close_short {
2022-10-18 13:00:41 +01:00
display: none;
2022-10-18 12:15:58 +01:00
font-size: larger;
2022-10-19 11:51:07 +01:00
background-color: transparent;
2022-10-18 12:15:58 +01:00
color: azure;
border: none;
border-radius: 2px;
}
2022-10-19 11:51:07 +01:00
#sidebar {
2022-10-18 12:15:58 +01:00
position: fixed;
top: 40px;
right: 0;
margin: auto;
2022-10-18 13:12:07 +01:00
height: 100%;
display: block;
2022-10-18 12:15:58 +01:00
max-width: 60%;
2022-10-18 13:12:07 +01:00
width: 0;
2022-10-18 12:15:58 +01:00
background-color: darkslategrey;
2022-10-18 13:12:07 +01:00
transition: 0.7s;
2022-10-18 12:15:58 +01:00
}
2022-10-19 11:51:07 +01:00
#sidebar a {
2022-10-18 12:48:35 +01:00
padding: 8px 8px 8px 8px;
margin-left: 20px;
margin-top: 10px;
font-family: sans-serif;
font-weight: 300;
text-decoration: none;
text-align: right;
font-size: 25px;
color: cyan;
display: block;
}
2022-10-18 12:15:58 +01:00
2022-10-19 11:51:07 +01:00
#sidebar_logo {
2022-10-19 11:53:53 +01:00
2022-10-19 11:51:07 +01:00
}
#sidebar_social {
2022-10-18 12:15:58 +01:00
position: absolute;
bottom: 50px;
2022-10-18 12:48:35 +01:00
width: 100%;
2022-10-18 11:55:11 +01:00
}
@media screen and (min-width: 800px) {
2022-10-19 11:51:07 +01:00
#menubar {
2022-10-18 11:55:11 +01:00
position: -webkit-sticky;
position: sticky;
top: 0px;
}
}