mirror of
https://github.com/ghndrx/docker-test-image.git
synced 2026-02-10 06:45:05 +00:00
84 lines
1.3 KiB
CSS
84 lines
1.3 KiB
CSS
/* Add these styles to your existing styles.css file or create a new one */
|
|
|
|
/* Common Styles */
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
|
|
h1 {
|
|
margin: 0;
|
|
color: #ffffff;
|
|
}
|
|
|
|
h2 {
|
|
margin-top: 40px;
|
|
}
|
|
|
|
ul {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: #ffffff;
|
|
}
|
|
|
|
/* Theme Styles */
|
|
.dark-grey-purple {
|
|
background-color: #2b2b2b;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.dark-grey-purple header {
|
|
background-color: #191919;
|
|
padding: 10px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.dark-grey-purple #menu-toggle {
|
|
width: 30px;
|
|
height: 20px;
|
|
background-color: #ffffff;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.dark-grey-purple #main-nav {
|
|
display: none;
|
|
}
|
|
|
|
.dark-grey-purple #main-nav ul {
|
|
display: flex;
|
|
}
|
|
|
|
.dark-grey-purple #main-nav ul li {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
/* Media Query */
|
|
@media screen and (max-width: 768px) {
|
|
.dark-grey-purple #main-nav {
|
|
display: block;
|
|
}
|
|
|
|
.dark-grey-purple #main-nav ul {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.dark-grey-purple #main-nav ul li {
|
|
margin: 10px 0;
|
|
}
|
|
}
|
|
|