This repository has been archived on 2024-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
hectabit-website/hectabitstyles.css

146 lines
2.2 KiB
CSS
Raw Normal View History

2023-10-07 21:45:38 +01:00
/* Reset some default styles */
body, h1, p, ul, li, li2, p1 {
margin: 0;
padding: 0;
list-style-type: none;
}
a {
2023-11-04 15:14:07 +00:00
color: rgb(40, 40, 40);
2023-10-07 21:45:38 +01:00
text-decoration: none;
font-size: 20px;
}
.spacer {
height: 10px;
}
body {
font-family: Arial, sans-serif;
2023-10-31 22:52:04 +00:00
color: rgb(40, 40, 40);
2023-10-07 21:45:38 +01:00
}
/* Sidebar styles */
.sidebar {
2023-10-31 22:52:04 +00:00
transition: transform 0.3s ease;
background-color: rgb(0, 160, 198);
2023-10-07 21:45:38 +01:00
color: white;
padding: 20px;
width: 250px;
position: fixed;
top: 0;
left: 0;
height: 100%;
overflow-y: auto;
}
2023-10-31 22:52:04 +00:00
.closebar {
width: 10px;
margin-left: 270px;
background-color: #0000;
heigh: 20px;
overflow-y: hidden;
position: fixed;
transition: transform 0.3s ease 0s;
color: rgb(118, 181, 197);
padding: 20px;
top: 0px;
}
2023-10-07 21:45:38 +01:00
h1 {
font-size: 24px;
text-align: center;
}
.sidebar h1 {
font-size: 24px;
text-align: center;
}
p {
font-size: 14px;
margin-top: 10px;
text-align: center;
}
p1 {
font-size: 20px;
text-align: center;
}
.sidebar ul {
list-style-type: none;
margin-top: 20px;
text-align: center;
}
.sidebar li {
margin-bottom: 10px;
}
.sidebar a {
color: white;
text-decoration: none;
font-weight: bold;
font-size: 16px;
display: block;
border-radius: 5px;
2023-10-31 22:52:04 +00:00
padding: 7px 16px;
2023-10-07 21:45:38 +01:00
text-align: center;
background-color: rgb(118, 181, 197);
transition: background-color 0.3s ease 0s;
margin: 2px;
}
button {
border: none;
2023-10-31 22:52:04 +00:00
top: 5px;
position: fixed;
padding: 10px;
color: rgb(255, 255, 255);
background: rgb(118, 181, 197);
2023-10-07 21:45:38 +01:00
}
button:hover {
text-decoration: underline;
}
.sidebar a:hover {
text-decoration: underline;
}
/* Content styles (adjust as needed) */
.content {
padding: 20px;
margin-left: 300px;
transition: margin-left 0.3s ease;
text-align: center;
}
/* Add CSS styles for hiding and sliding the sidebar */
.content.expanded {
margin-left: 0;
}
2023-10-31 22:52:04 +00:00
.closebar.expanded {
margin-left: -20px;
}
2023-10-07 21:45:38 +01:00
.sidebar.display {
display: none;
}
.sidebar.hidden {
transform: translateX(-250px);
}
.content.expanded + .sidebar.hidden {
transform: translateX(0);
}
img {
height: 250px;
margin-bottom: 30px;
}