HTML preprocessors can make writing HTML more powerful or convenient. For instance, Markdown is designed to be easier to write and read for text documents and you could write a loop in Pug.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. So you don't have access to higher-up elements like the <html>
tag. If you want to add classes there that can affect the whole document, this is the place to do it.
In CodePen, whatever you write in the HTML editor is what goes within the <body>
tags in a basic HTML5 template. If you need things in the <head>
of the document, put that code here.
The resource you are linking to is using the 'http' protocol, which may not work when the browser is using https.
CSS preprocessors help make authoring CSS easier. All of them offer things like variables and mixins to provide convenient abstractions.
It's a common practice to apply CSS to a page that styles elements such that they are consistent across all browsers. We offer two of the most popular choices: normalize.css and a reset. Or, choose Neither and nothing will be applied.
To get the best cross-browser support, it is a common practice to apply vendor prefixes to CSS properties and values that require them to work. For instance -webkit-
or -moz-
.
We offer two popular choices: Autoprefixer (which processes your CSS server-side) and -prefix-free (which applies prefixes via a script, client-side).
Any URLs added here will be added as <link>
s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.
You can apply CSS to your Pen from any stylesheet on the web. Just put a URL to it here and we'll apply it, in the order you have them, before the CSS in the Pen itself.
You can also link to another Pen here (use the .css
URL Extension) and we'll pull the CSS from that Pen and include it. If it's using a matching preprocessor, use the appropriate URL Extension and we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
JavaScript preprocessors can help make authoring JavaScript easier and more convenient.
Babel includes JSX processing.
Any URL's added here will be added as <script>
s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.
You can apply a script from anywhere on the web to your Pen. Just put a URL to it here and we'll add it, in the order you have them, before the JavaScript in the Pen itself.
If the script you link to has the file extension of a preprocessor, we'll attempt to process it before applying.
You can also link to another Pen here, and we'll pull the JavaScript from that Pen and include it. If it's using a matching preprocessor, we'll combine the code before preprocessing, so you can use the linked Pen as a true dependency.
Search for and use JavaScript packages from npm here. By selecting a package, an import
statement will be added to the top of the JavaScript editor for this package.
Using packages here is powered by Skypack, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ES6 import
usage.
All packages are different, so refer to their docs for how they work.
If you're using React / ReactDOM, make sure to turn on Babel for the JSX processing.
If active, Pens will autosave every 30 seconds after being saved once.
If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.
If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.
Visit your global Editor Settings.
<div id="app"></div>
/* Basic styling */
:root {
/* Colors */
--black: #09090c;
--grey: #a4b2bc;
--white: #fff;
--background: rgba(137, 171, 245, 0.37);
}
html {
overflow: hidden;
}
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: var(--background);
font-family: "Poppins", sans-serif;
}
const Container = styled.div`
position: fixed;
.active {
border-right: 4px solid var(--white);
img {
filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg)
brightness(103%) contrast(103%);
}
}
`;
const Button = styled.button`
background-color: var(--black);
border: none;
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
margin: 0.5rem 0 0 0.5rem;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
position: relative;
&::before,
&::after {
content: "";
background-color: var(--white);
height: 2px;
width: 1rem;
position: absolute;
transition: all 0.3s ease;
}
&::before {
top: ${(props) => (props.clicked ? "1.5" : "1rem")};
transform: ${(props) => (props.clicked ? "rotate(135deg)" : "rotate(0)")};
}
&::after {
top: ${(props) => (props.clicked ? "1.2" : "1.5rem")};
transform: ${(props) => (props.clicked ? "rotate(-135deg)" : "rotate(0)")};
}
`;
const SidebarContainer = styled.div`
background-color: var(--black);
width: 3.5rem;
height: 80vh;
margin-top: 1rem;
border-radius: 0 30px 30px 0;
padding: 1rem 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
position: relative;
`;
const Logo = styled.div`
width: 2rem;
color:var(--white);
svg {
width: 100%;
height: auto;
}
`;
const SlickBar = styled.ul`
color: var(--white);
list-style: none;
display: flex;
flex-direction: column;
align-items: center;
background-color: var(--black);
padding: 2rem 0;
position: absolute;
top: 6rem;
left: 0;
width: ${(props) => (props.clicked ? "12rem" : "3.5rem")};
transition: all 0.5s ease;
border-radius: 0 30px 30px 0;
`;
const Item = styled.a`
text-decoration: none;
color: var(--white);
width: 100%;
padding: 1rem 0;
cursor: pointer;
display: flex;
padding-left: 1rem;
&:hover {
border-right: 4px solid var(--white);
svg {
filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg)
brightness(103%) contrast(103%);
}
}
svg {
width: 1.2rem;
height: auto;
filter: invert(92%) sepia(4%) saturate(1033%) hue-rotate(169deg)
brightness(78%) contrast(85%);
}
`;
const Text = styled.span`
width: ${(props) => (props.clicked ? "100%" : "0")};
overflow: hidden;
margin-left: ${(props) => (props.clicked ? "1.5rem" : "0")};
transition: all 0.3s ease;
`;
const Profile = styled.div`
width: ${(props) => (props.clicked ? "14rem" : "3rem")};
height: 3rem;
padding: 0.5rem 1rem;
/* border: 2px solid var(--white); */
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin-left: ${(props) => (props.clicked ? "9rem" : "0")};
background-color: var(--black);
color: var(--white);
transition: all 0.3s ease;
img {
width: 2.5rem;
height: 2.5rem;
border-radius: 50%;
cursor: pointer;
&:hover {
border: 2px solid var(--grey);
padding: 2px;
}
}
`;
const Details = styled.div`
display: ${(props) => (props.clicked ? "flex" : "none")};
justify-content: space-between;
align-items: center;
`;
const Name = styled.div`
padding: 0 1.5rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
h4 {
display: inline-block;
}
a {
font-size: 0.8rem;
text-decoration: none;
color: var(--grey);
&:hover {
text-decoration: underline;
}
}
`;
const Logout = styled.button`
border: none;
width: 2rem;
height: 2rem;
background-color: transparent;
svg {
width: 100%;
height: auto;
filter: invert(15%) sepia(70%) saturate(6573%) hue-rotate(2deg)
brightness(100%) contrast(126%);
transition: all 0.3s ease;
&:hover {
border: none;
padding: 0;
opacity: 0.5;
}
}
`;
const Sidebar = () => {
const [click, setClick] = React.useState(false);
const handleClick = () => setClick(!click);
const [profileClick, setprofileClick] = React.useState(false);
const handleProfileClick = () => setprofileClick(!profileClick);
return (
<Container>
<Button clicked={click} onClick={() => handleClick()}>
Click
</Button>
<SidebarContainer>
<Logo>
<h2>CB</h2>
</Logo>
<SlickBar clicked={click}>
<Item
onClick={() => setClick(false)}
exact
activeClassName="active"
to="/"
>
<svg viewBox="0 0 576 512" width="100" title="home">
<path d="M280.37 148.26L96 300.11V464a16 16 0 0 0 16 16l112.06-.29a16 16 0 0 0 15.92-16V368a16 16 0 0 1 16-16h64a16 16 0 0 1 16 16v95.64a16 16 0 0 0 16 16.05L464 480a16 16 0 0 0 16-16V300L295.67 148.26a12.19 12.19 0 0 0-15.3 0zM571.6 251.47L488 182.56V44.05a12 12 0 0 0-12-12h-56a12 12 0 0 0-12 12v72.61L318.47 43a48 48 0 0 0-61 0L4.34 251.47a12 12 0 0 0-1.6 16.9l25.5 31A12 12 0 0 0 45.15 301l235.22-193.74a12.19 12.19 0 0 1 15.3 0L530.9 301a12 12 0 0 0 16.9-1.6l25.5-31a12 12 0 0 0-1.7-16.93z" />
</svg>
<Text clicked={click}>Home</Text>
</Item>
<Item
onClick={() => setClick(false)}
activeClassName="active"
to="/team"
>
<svg viewBox="0 0 512 512" width="100" title="book-reader">
<path d="M352 96c0-53.02-42.98-96-96-96s-96 42.98-96 96 42.98 96 96 96 96-42.98 96-96zM233.59 241.1c-59.33-36.32-155.43-46.3-203.79-49.05C13.55 191.13 0 203.51 0 219.14v222.8c0 14.33 11.59 26.28 26.49 27.05 43.66 2.29 131.99 10.68 193.04 41.43 9.37 4.72 20.48-1.71 20.48-11.87V252.56c-.01-4.67-2.32-8.95-6.42-11.46zm248.61-49.05c-48.35 2.74-144.46 12.73-203.78 49.05-4.1 2.51-6.41 6.96-6.41 11.63v245.79c0 10.19 11.14 16.63 20.54 11.9 61.04-30.72 149.32-39.11 192.97-41.4 14.9-.78 26.49-12.73 26.49-27.06V219.14c-.01-15.63-13.56-28.01-29.81-27.09z" />
</svg>
<Text clicked={click}>Team</Text>
</Item>
<Item
onClick={() => setClick(false)}
activeClassName="active"
to="/calender"
>
<svg viewBox="0 0 640 512" width="100" title="user-clock">
<path d="M496 224c-79.6 0-144 64.4-144 144s64.4 144 144 144 144-64.4 144-144-64.4-144-144-144zm64 150.3c0 5.3-4.4 9.7-9.7 9.7h-60.6c-5.3 0-9.7-4.4-9.7-9.7v-76.6c0-5.3 4.4-9.7 9.7-9.7h12.6c5.3 0 9.7 4.4 9.7 9.7V352h38.3c5.3 0 9.7 4.4 9.7 9.7v12.6zM320 368c0-27.8 6.7-54.1 18.2-77.5-8-1.5-16.2-2.5-24.6-2.5h-16.7c-22.2 10.2-46.9 16-72.9 16s-50.6-5.8-72.9-16h-16.7C60.2 288 0 348.2 0 422.4V464c0 26.5 21.5 48 48 48h347.1c-45.3-31.9-75.1-84.5-75.1-144zm-96-112c70.7 0 128-57.3 128-128S294.7 0 224 0 96 57.3 96 128s57.3 128 128 128z" />
</svg>
<Text clicked={click}>Calender</Text>
</Item>
<Item
onClick={() => setClick(false)}
activeClassName="active"
to="/documents"
>
<svg viewBox="0 0 448 512" width="100" title="paperclip">
<path d="M43.246 466.142c-58.43-60.289-57.341-157.511 1.386-217.581L254.392 34c44.316-45.332 116.351-45.336 160.671 0 43.89 44.894 43.943 117.329 0 162.276L232.214 383.128c-29.855 30.537-78.633 30.111-107.982-.998-28.275-29.97-27.368-77.473 1.452-106.953l143.743-146.835c6.182-6.314 16.312-6.422 22.626-.241l22.861 22.379c6.315 6.182 6.422 16.312.241 22.626L171.427 319.927c-4.932 5.045-5.236 13.428-.648 18.292 4.372 4.634 11.245 4.711 15.688.165l182.849-186.851c19.613-20.062 19.613-52.725-.011-72.798-19.189-19.627-49.957-19.637-69.154 0L90.39 293.295c-34.763 35.56-35.299 93.12-1.191 128.313 34.01 35.093 88.985 35.137 123.058.286l172.06-175.999c6.177-6.319 16.307-6.433 22.626-.256l22.877 22.364c6.319 6.177 6.434 16.307.256 22.626l-172.06 175.998c-59.576 60.938-155.943 60.216-214.77-.485z" />
</svg>
<Text clicked={click}>Documents</Text>
</Item>
<Item
onClick={() => setClick(false)}
activeClassName="active"
to="/projects"
>
<svg viewBox="0 0 576 512" width="100" title="star">
<path d="M259.3 17.8L194 150.2 47.9 171.5c-26.2 3.8-36.7 36.1-17.7 54.6l105.7 103-25 145.5c-4.5 26.3 23.2 46 46.4 33.7L288 439.6l130.7 68.7c23.2 12.2 50.9-7.4 46.4-33.7l-25-145.5 105.7-103c19-18.5 8.5-50.8-17.7-54.6L382 150.2 316.7 17.8c-11.7-23.6-45.6-23.9-57.4 0z" />
</svg>
<Text clicked={click}>Projects</Text>
</Item>
</SlickBar>
<Profile clicked={profileClick}>
<img
onClick={() => handleProfileClick()}
src="https://picsum.photos/200"
alt="Profile"
/>
<Details clicked={profileClick}>
<Name>
<h4>Jhon Doe</h4>
<a href="/#">view profile</a>
</Name>
<Logout>
<svg viewBox="0 0 512 512" width="100" title="power-off">
<path d="M400 54.1c63 45 104 118.6 104 201.9 0 136.8-110.8 247.7-247.5 248C120 504.3 8.2 393 8 256.4 7.9 173.1 48.9 99.3 111.8 54.2c11.7-8.3 28-4.8 35 7.7L162.6 90c5.9 10.5 3.1 23.8-6.6 31-41.5 30.8-68 79.6-68 134.9-.1 92.3 74.5 168.1 168 168.1 91.6 0 168.6-74.2 168-169.1-.3-51.8-24.7-101.8-68.1-134-9.7-7.2-12.4-20.5-6.5-30.9l15.8-28.1c7-12.4 23.2-16.1 34.8-7.8zM296 264V24c0-13.3-10.7-24-24-24h-32c-13.3 0-24 10.7-24 24v240c0 13.3 10.7 24 24 24h32c13.3 0 24-10.7 24-24z" />
</svg>
</Logout>
</Details>
</Profile>
</SidebarContainer>
</Container>
);
};
function App() {
return (
<>
<Sidebar />
</>
);
}
ReactDOM.render(<App />, document.getElementById('app'));
Also see: Tab Triggers