fredboniface.co.uk/style/new_menu.css

84 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 14:15:38 +01:00
.sidebar_control {
2022-10-19 11:51:07 +01:00
background-color: transparent;
2022-10-18 13:00:41 +01:00
color: azure;
border: none;
2022-10-19 14:15:38 +01:00
font-family: sans-serif;
font-size: larger;
}
#sidebar_open_short {
display: block;
2022-10-18 13:00:41 +01:00
}
2022-10-19 11:51:07 +01:00
#sidebar_close_short {
2022-10-18 13:00:41 +01:00
display: none;
2022-10-19 14:15:38 +01:00
font-size: x-large;
2022-10-18 12:15:58 +01:00
}
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-top: 10px;
font-family: sans-serif;
font-weight: 300;
text-decoration: none;
2022-10-19 12:04:57 +01:00
text-align: center;
2022-10-18 12:48:35 +01:00
font-size: 25px;
color: cyan;
display: block;
2022-10-19 12:04:57 +01:00
white-space: nowrap;
2022-10-18 12:48:35 +01:00
}
2022-10-18 12:15:58 +01:00
2022-10-19 12:01:20 +01:00
#sidebar_logo {
margin-top: 40%;
text-align: center;
2022-10-19 11:51:07 +01:00
}
2022-10-19 12:01:20 +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;
}
}