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 esm.sh, which makes packages from npm not only available on a CDN, but prepares them for native JavaScript ESM 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.
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>CodePen - Messaging App UI with Dark Mode</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- partial:index.partial.html -->
<div class="app">
<div class="header">
<div class="search-bar">
<input type="text" placeholder="Search..." />
</div>
<div class="user-settings">
<div class="dark-light">
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-linejoin="round">
<path d="M21 12.79A9 9 0 1111.21 3 7 7 0 0021 12.79z" /></svg>
</div>
<div class="settings">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="3" />
<path d="M19.4 15a1.65 1.65 0 00.33 1.82l.06.06a2 2 0 010 2.83 2 2 0 01-2.83 0l-.06-.06a1.65 1.65 0 00-1.82-.33 1.65 1.65 0 00-1 1.51V21a2 2 0 01-2 2 2 2 0 01-2-2v-.09A1.65 1.65 0 009 19.4a1.65 1.65 0 00-1.82.33l-.06.06a2 2 0 01-2.83 0 2 2 0 010-2.83l.06-.06a1.65 1.65 0 00.33-1.82 1.65 1.65 0 00-1.51-1H3a2 2 0 01-2-2 2 2 0 012-2h.09A1.65 1.65 0 004.6 9a1.65 1.65 0 00-.33-1.82l-.06-.06a2 2 0 010-2.83 2 2 0 012.83 0l.06.06a1.65 1.65 0 001.82.33H9a1.65 1.65 0 001-1.51V3a2 2 0 012-2 2 2 0 012 2v.09a1.65 1.65 0 001 1.51 1.65 1.65 0 001.82-.33l.06-.06a2 2 0 012.83 0 2 2 0 010 2.83l-.06.06a1.65 1.65 0 00-.33 1.82V9a1.65 1.65 0 001.51 1H21a2 2 0 012 2 2 2 0 01-2 2h-.09a1.65 1.65 0 00-1.51 1z" /></svg>
</div>
<img class="user-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%281%29.png" alt="" class="account-profile" alt="">
</div>
</div>
<div class="wrapper">
<div class="conversation-area">
<div class="msg online">
<img class="msg-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%281%29.png" alt="" />
<div class="msg-detail" style="color:#000;">
<div class="msg-username">Madison Jones</div>
<div class="msg-content">
<span class="msg-message" style="color:#000;">Thanks Henry</span>
<span class="msg-date" style="color:#000;">20m</span>
</div>
</div>
</div>
<div class="msg">
<img class="msg-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%2812%29.png" alt="" />
<div class="msg-detail" style="background-color:Red;border-radius: 20px;padding: 5px 10px 10px 10px;">
<div class="msg-username">Miguel Cohen</div>
<div class="msg-content">
<span class="msg-message" style="color:#000;">Important Meeting</span>
<span class="msg-date" style="color:#000;">20m</span>
</div>
</div>
</div>
<div class="msg active">
<div class="msg-profile group">
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1">
<path d="M12 2l10 6.5v7L12 22 2 15.5v-7L12 2zM12 22v-6.5" />
<path d="M22 8.5l-10 7-10-7" />
<path d="M2 15.5l10-7 10 7M12 2v6.5" /></svg>
</div>
<div class="msg-detail">
<div class="msg-username">Caffeine into Code Resorts Group</div>
<div class="msg-content">
<span class="msg-message">Aysenur: You're web app looks great!!</span>
<span class="msg-date">28m</span>
</div>
</div>
</div>
<div class="msg online">
<img class="msg-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%282%29.png" alt="" />
<div class="msg-detail">
<div class="msg-username">Lea Debere</div>
<div class="msg-content">
<span class="msg-message">QA is finishing the iPhone testing this week</span>
<span class="msg-date">45m</span>
</div>
</div>
</div>
<div class="msg online">
<img class="msg-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%281%29+%281%29.png" alt="" />
<div class="msg-detail">
<div class="msg-username">Jordan Smith</div>
<div class="msg-content">
<span class="msg-message">Lets go have Torchys Tacos today for lunch</span>
<span class="msg-date">2h</span>
</div>
</div>
</div>
<div class="msg">
<img class="msg-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%284%29+%281%29.png" alt="" />
<div class="msg-detail">
<div class="msg-username">Jared Jackson</div>
<div class="msg-content">
<span class="msg-message">Lets go get coffee next door!!</span>
<span class="msg-date">18m</span>
</div>
</div>
</div>
<div class="msg online">
<img class="msg-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%283%29+%281%29.png" alt="">
<div class="msg-detail">
<div class="msg-username">Henry Clark</div>
<div class="msg-content">
<span class="msg-message">I like German Chocolate cake please</span>
<span class="msg-date">2h</span>
</div>
</div>
</div>
<div class="msg">
<img class="msg-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/qs6F3dgm.png" alt="" />
<div class="msg-detail">
<div class="msg-username">Jason Mraz</div>
<div class="msg-content">
<span class="msg-message">If you're working late again tonight we're bringing in pizza again lol</span>
<span class="msg-date">4h</span>
</div>
</div>
</div>
<div class="msg">
<img class="msg-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%288%29.png" alt="" />
<div class="msg-detail">
<div class="msg-username">Chiwa Lauren</div>
<div class="msg-content">
<span class="msg-message">We're meeting at wolf moon after work today</span>
<span class="msg-date">28m</span>
</div>
</div>
</div>
<div class="msg">
<img class="msg-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%289%29.png" alt="" />
<div class="msg-detail">
<div class="msg-username">Caroline Orange</div>
<div class="msg-content">
<span class="msg-message">There's donuts in the break room</span>
<span class="msg-date">35m</span>
</div>
</div>
</div>
<div class="msg">
<img class="msg-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%286%29.png" alt="" />
<div class="msg-detail">
<div class="msg-username">Lina Ashma</div>
<div class="msg-content">
<span class="msg-message">I'm getting Migas if anyone wants tacos</span>
<span class="msg-date">42m</span>
</div>
</div>
</div>
<button class="add"></button>
<div class="overlay"></div>
</div>
<div class="chat-area">
<div class="chat-area-header">
<div class="chat-area-title">Caffeine into Code Resorts</div>
<div class="chat-area-group">
<img class="chat-area-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%283%29+%281%29.png" alt="" />
<img class="chat-area-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%282%29.png" alt="">
<img class="chat-area-profile" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%2812%29.png" alt="" />
<span>+4</span>
</div>
</div>
<div class="chat-area-main">
<div class="chat-msg">
<div class="chat-msg-profile">
<img class="chat-msg-img" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%283%29+%281%29.png" alt="" />
<div class="chat-msg-date">Message seen 1.22pm</div>
</div>
<div class="chat-msg-content">
<div class="chat-msg-text">I created a maint task for this</div>
<!-- <div class="chat-msg-text">
<img src="https://c3solutionware.com/images/Tasks51439404.jpg" />
</div>-->
<div class="chat-msg-text">
They said it can't be cleaned?
</div>
</div>
</div>
<div class="chat-msg owner">
<div class="chat-msg-profile">
<img class="chat-msg-img" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%281%29.png" alt="" />
<div class="chat-msg-date">Message seen 1.22pm</div>
</div>
<div class="chat-msg-content">
<div class="chat-msg-text">
Perhaps we shouldn't have white carpet in the lobby, just saying๐๐๐
</div>
<div class="chat-msg-text">I'll ask Lea to order more.</div>
</div>
</div>
<div class="chat-msg">
<div class="chat-msg-profile">
<img class="chat-msg-img" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%282%29.png" alt="">
<div class="chat-msg-date">Message seen 2.45pm</div>
</div>
<div class="chat-msg-content">
<div class="chat-msg-text">I see it, not again๐
</div>
<div class="chat-msg-text">I've also ordered more.</div>
<div class="chat-msg-text">Let's try and clean it up as best we can.It's white so bleach if need be.๐ค</div>
</div>
</div>
<div class="chat-msg owner">
<div class="chat-msg-profile">
<img class="chat-msg-img" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%281%29.png" alt="" />
<div class="chat-msg-date">Message seen 2.50pm</div>
</div>
<div class="chat-msg-content">
<div class="chat-msg-text">Perhaps lets get the stain resisitant one.</div>
<div class="chat-msg-text">or stop serving red wine lol.</div>
</div>
</div>
<div class="chat-msg">
<div class="chat-msg-profile">
<img class="chat-msg-img" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%2812%29.png" alt="" />
<div class="chat-msg-date">Message seen 3.16pm</div>
</div>
<div class="chat-msg-content">
<div class="chat-msg-text">I'm on it!!</div>
</div>
</div>
<div class="chat-msg">
<div class="chat-msg-profile">
<img class="chat-msg-img" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%283%29+%281%29.png" alt="" class="account-profile" alt="">
<div class="chat-msg-date">Message seen 3.16pm</div>
</div>
<div class="chat-msg-content">
<div class="chat-msg-text">I've ordered it and it'll be here tomorrow.</div>
</div>
</div>
<div class="chat-msg owner">
<div class="chat-msg-profile">
<img class="chat-msg-img" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%281%29.png" alt="" />
<div class="chat-msg-date">Message seen 2.50pm</div>
</div>
<div class="chat-msg-content">
<div class="chat-msg-text">That was fast๐</div>
</div>
</div>
<div class="chat-msg">
<div class="chat-msg-profile">
<img class="chat-msg-img" src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/3364143/download+%282%29.png" alt="">
<div class="chat-msg-date">Message seen 3.16pm</div>
</div>
<div class="chat-msg-content">
<div class="chat-msg-text">You guys are the best team ever ๐ฅฐ</div>
</div>
</div>
</div>
<div class="chat-area-footer">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="feather feather-video">
<path d="M23 7l-7 5 7 5V7z" />
<rect x="1" y="5" width="15" height="14" rx="2" ry="2" /></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="feather feather-image">
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
<circle cx="8.5" cy="8.5" r="1.5" />
<path d="M21 15l-5-5L5 21" /></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="feather feather-plus-circle">
<circle cx="12" cy="12" r="10" />
<path d="M12 8v8M8 12h8" /></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="feather feather-paperclip">
<path d="M21.44 11.05l-9.19 9.19a6 6 0 01-8.49-8.49l9.19-9.19a4 4 0 015.66 5.66l-9.2 9.19a2 2 0 01-2.83-2.83l8.49-8.48" /></svg>
<input type="text" placeholder="Type something here..." />
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="feather feather-smile">
<circle cx="12" cy="12" r="10" />
<path d="M8 14s1.5 2 4 2 4-2 4-2M9 9h.01M15 9h.01" /></svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="feather feather-thumbs-up">
<path d="M14 9V5a3 3 0 00-3-3l-4 9v11h11.28a2 2 0 002-1.7l1.38-9a2 2 0 00-2-2.3zM7 22H4a2 2 0 01-2-2v-7a2 2 0 012-2h3" /></svg>
</div>
</div>
<div class="detail-area">
<div class="detail-area-header">
<div class="msg-profile group">
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1">
<path d="M12 2l10 6.5v7L12 22 2 15.5v-7L12 2zM12 22v-6.5" />
<path d="M22 8.5l-10 7-10-7" />
<path d="M2 15.5l10-7 10 7M12 2v6.5" /></svg>
</div>
<div class="detail-title">CodePen Group</div>
<div class="detail-subtitle">Created by Aysenur, 1 May 2020</div>
<div class="detail-buttons">
<button class="detail-button">
<svg viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor" stroke="currentColor" stroke-width="0" stroke-linecap="round" stroke-linejoin="round" class="feather feather-phone">
<path d="M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z" />
</svg>
Call Group
</button>
<button class="detail-button">
<svg viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" fill="currentColor" stroke="currentColor" stroke-width="0" stroke-linecap="round" stroke-linejoin="round" class="feather feather-video">
<path d="M23 7l-7 5 7 5V7z" />
<rect x="1" y="5" width="15" height="14" rx="2" ry="2" /></svg>
Video Chat
</button>
</div>
</div>
<div class="detail-changes">
<input type="text" placeholder="Search in Conversation">
<div class="detail-change">
Change Color
<div class="colors">
<div class="color blue selected" data-color="blue"></div>
<div class="color purple" data-color="purple"></div>
<div class="color green" data-color="green"></div>
<div class="color orange" data-color="orange"></div>
</div>
</div>
<div class="detail-change">
Change Emoji
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-thumbs-up">
<path d="M14 9V5a3 3 0 00-3-3l-4 9v11h11.28a2 2 0 002-1.7l1.38-9a2 2 0 00-2-2.3zM7 22H4a2 2 0 01-2-2v-7a2 2 0 012-2h3" /></svg>
</div>
</div>
<div class="detail-photos">
<div class="detail-photo-title">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-image">
<rect x="3" y="3" width="18" height="18" rx="2" ry="2" />
<circle cx="8.5" cy="8.5" r="1.5" />
<path d="M21 15l-5-5L5 21" /></svg>
Shared photos
</div>
<div class="detail-photo-grid">
<img src="https://images.unsplash.com/photo-1523049673857-eb18f1d7b578?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2168&q=80" />
<img src="https://images.unsplash.com/photo-1516085216930-c93a002a8b01?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2250&q=80" />
<img src="https://images.unsplash.com/photo-1458819714733-e5ab3d536722?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=933&q=80" />
<img src="https://images.unsplash.com/photo-1520013817300-1f4c1cb245ef?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2287&q=80" />
<img src="https://images.unsplash.com/photo-1494438639946-1ebd1d20bf85?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2247&q=80" />
<img src="https://images.unsplash.com/photo-1559181567-c3190ca9959b?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1300&q=80" />
<img src="https://images.unsplash.com/photo-1560393464-5c69a73c5770?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1301&q=80" />
<img src="https://images.unsplash.com/photo-1506619216599-9d16d0903dfd?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2249&q=80" />
<img src="https://images.unsplash.com/photo-1481349518771-20055b2a7b24?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2309&q=80" />
<img src="https://images.unsplash.com/photo-1473170611423-22489201d919?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2251&q=80" />
<img src="https://images.unsplash.com/photo-1579613832111-ac7dfcc7723f?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2250&q=80" />
<img src="https://images.unsplash.com/photo-1523275335684-37898b6baf30?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2189&q=80" />
</div>
<div class="view-more">View More</div>
</div>
<a href="https://twitter.com/AysnrTrkk" class="follow-me" target="_blank">
<span class="follow-text">
<svg viewBox="0 0 24 24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round" class="css-i6dzq1">
<path d="M23 3a10.9 10.9 0 0 1-3.14 1.53 4.48 4.48 0 0 0-7.86 3v1A10.66 10.66 0 0 1 3 4s-4 9 5 13a11.64 11.64 0 0 1-7 2c9 5 20 0 20-11.5a4.5 4.5 0 0 0-.08-.83A7.72 7.72 0 0 0 23 3z"></path>
</svg>
Follow me on Twitter
</span>
<span class="developer">
<img src="https://pbs.twimg.com/profile_images/1253782473953157124/x56UURmt_400x400.jpg" />
Aysenur Turk โ @AysnrTrkk
</span>
</a>
</div>
</div>
</div>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>
@import url("https://fonts.googleapis.com/css?family=Manrope:300,400,500,600,700&display=swap&subset=latin-ext");
:root {
--body-bg-color: #e5ecef;
--theme-bg-color: #fff;
--settings-icon-hover: #9fa7ac;
--developer-color: #f9fafb;
--input-bg: #f8f8fa;
--input-chat-color: #a2a2a2;
--border-color: #eef2f4;
--body-font: "Manrope", sans-serif;
--body-color: #273346;
--settings-icon-color: #c1c7cd;
--msg-message: #969eaa;
--chat-text-bg: #f1f2f6;
--theme-color: #0086ff;
--msg-date: #c0c7d2;
--button-bg-color: #f0f7ff;
--button-color: var(--theme-color);
--detail-font-color: #919ca2;
--msg-hover-bg: rgba(238, 242, 244, 0.4);
--active-conversation-bg: linear-gradient(
to right,
rgba(238, 242, 244, 0.4) 0%,
rgba(238, 242, 244, 0) 100%
);
--overlay-bg: linear-gradient(
to bottom,
rgba(255, 255, 255, 0) 0%,
rgba(255, 255, 255, 1) 65%,
rgba(255, 255, 255, 1) 100%
);
--chat-header-bg: linear-gradient(
to bottom,
rgba(255, 255, 255, 1) 0%,
rgba(255, 255, 255, 1) 78%,
rgba(255, 255, 255, 0) 100%
);
}
[data-theme="purple"] {
--theme-color: #9f7aea;
--button-color: #9f7aea;
--button-bg-color: rgba(159, 122, 234, 0.12);
}
[data-theme="green"] {
--theme-color: #38b2ac;
--button-color: #38b2ac;
--button-bg-color: rgba(56, 178, 171, 0.15);
}
[data-theme="orange"] {
--theme-color: #ed8936;
--button-color: #ed8936;
--button-bg-color: rgba(237, 137, 54, 0.12);
}
.dark-mode {
--body-bg-color: #1d1d1d;
--theme-bg-color: #27292d;
--border-color: #323336;
--body-color: #d1d1d2;
--active-conversation-bg: linear-gradient(
to right,
rgba(47, 50, 56, 0.54),
rgba(238, 242, 244, 0) 100%
);
--msg-hover-bg: rgba(47, 50, 56, 0.54);
--chat-text-bg: #383b40;
--chat-text-color: #b5b7ba;
--msg-date: #626466;
--msg-message: var(--msg-date);
--overlay-bg: linear-gradient(
to bottom,
rgba(0, 0, 0, 0) 0%,
#27292d 65%,
#27292d 100%
);
--input-bg: #2f3236;
--chat-header-bg: linear-gradient(
to bottom,
#27292d 0%,
#27292d 78%,
rgba(255, 255, 255, 0) 100%
);
--settings-icon-color: #7c7e80;
--developer-color: var(--border-color);
--button-bg-color: #393b40;
--button-color: var(--body-color);
--input-chat-color: #6f7073;
--detail-font-color: var(--input-chat-color);
}
.blue {
background-color: #0086ff;
}
.purple {
background-color: #9f7aea;
}
.green {
background-color: #38b2ac;
}
.orange {
background-color: #ed8936;
}
* {
outline: none;
box-sizing: border-box;
}
img {
max-width: 100%;
}
body {
background-color: var(--body-bg-color);
font-family: var(--body-font);
color: var(--body-color);
}
html {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
}
.app {
display: flex;
flex-direction: column;
background-color: var(--theme-bg-color);
max-width: 1600px;
height: 100vh;
margin: 0 auto;
overflow: hidden;
}
.header {
height: 80px;
width: 100%;
border-bottom: 1px solid var(--border-color);
display: flex;
align-items: center;
padding: 0 20px;
}
.wrapper {
width: 100%;
display: flex;
flex-grow: 1;
overflow: hidden;
}
.conversation-area,
.detail-area {
width: 340px;
flex-shrink: 0;
}
.detail-area {
border-left: 1px solid var(--border-color);
margin-left: auto;
padding: 30px 30px 0 30px;
display: flex;
flex-direction: column;
overflow: auto;
}
.chat-area {
flex-grow: 1;
}
.search-bar {
height: 80px;
z-index: 3;
position: relative;
margin-left: 280px;
input {
height: 100%;
width: 100%;
display: block;
background-color: transparent;
border: none;
color: var(--body-color);
padding: 0 54px;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%23c1c7cd'%3e%3cpath d='M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-size: 16px;
background-position: 25px 48%;
font-family: var(--body-font);
font-weight: 600;
font-size: 15px;
&::placeholder {
color: var(--input-chat-color);
}
}
}
.logo {
color: var(--theme-color);
width: 38px;
flex-shrink: 0;
svg {
width: 100%;
}
}
.user-settings {
display: flex;
align-items: center;
cursor: pointer;
margin-left: auto;
flex-shrink: 0;
& > * + * {
margin-left: 14px;
}
}
.dark-light {
width: 22px;
height: 22px;
color: var(--settings-icon-color);
flex-shrink: 0;
svg {
width: 100%;
fill: transparent;
transition: 0.5s;
}
}
.user-profile {
width: 40px;
height: 40px;
border-radius: 50%;
}
.settings {
color: var(--settings-icon-color);
width: 22px;
height: 22px;
flex-shrink: 0;
}
.conversation-area {
border-right: 1px solid var(--border-color);
overflow-y: auto;
overflow-x: hidden;
display: flex;
flex-direction: column;
position: relative;
}
.msg-profile {
width: 44px;
height: 44px;
border-radius: 50%;
object-fit: cover;
margin-right: 15px;
&.group {
display: flex;
justify-content: center;
align-items: center;
background-color: var(--border-color);
svg {
width: 60%;
}
}
}
.msg {
display: flex;
align-items: center;
padding: 20px;
cursor: pointer;
transition: 0.2s;
position: relative;
&:hover {
background-color: var(--msg-hover-bg);
}
&.active {
background: var(--active-conversation-bg);
border-left: 4px solid var(--theme-color);
}
&.online:before {
content: "";
position: absolute;
background-color: #23be7e;
width: 9px;
height: 9px;
border-radius: 50%;
border: 2px solid var(--theme-bg-color);
left: 50px;
bottom: 19px;
}
}
.msg-username {
margin-bottom: 4px;
font-weight: 600;
font-size: 15px;
}
.msg-detail {
overflow: hidden;
}
.msg-content {
font-weight: 500;
font-size: 13px;
display: flex;
}
.msg-message {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: var(--msg-message);
}
.msg-date {
font-size: 14px;
color: var(--msg-date);
margin-left: 3px;
&:before {
content: "โข";
margin-right: 2px;
}
}
.add {
position: sticky;
bottom: 25px;
background-color: var(--theme-color);
width: 60px;
height: 60px;
border: 0;
border-radius: 50%;
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-plus'%3e%3cpath d='M12 5v14M5 12h14'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-position: 50%;
background-size: 28px;
box-shadow: 0 0 16px var(--theme-color);
margin: auto auto -55px;
flex-shrink: 0;
z-index: 1;
cursor: pointer;
}
.overlay {
position: sticky;
bottom: 0;
left: 0;
width: 340px;
flex-shrink: 0;
background: var(--overlay-bg);
height: 80px;
}
.chat-area {
display: flex;
flex-direction: column;
overflow: auto;
&-header {
display: flex;
position: sticky;
top: 0;
left: 0;
z-index: 2;
width: 100%;
align-items: center;
justify-content: space-between;
padding: 20px;
background: var(--chat-header-bg);
}
&-profile {
width: 32px;
border-radius: 50%;
object-fit: cover;
}
&-title {
font-size: 18px;
font-weight: 600;
}
&-main {
flex-grow: 1;
}
}
.chat-msg-img {
height: 40px;
width: 40px;
border-radius: 50%;
object-fit: cover;
}
.chat-msg-profile {
flex-shrink: 0;
margin-top: auto;
margin-bottom: -20px;
position: relative;
}
.chat-msg-date {
position: absolute;
left: calc(100% + 12px);
bottom: 0;
font-size: 12px;
font-weight: 600;
color: var(--msg-date);
white-space: nowrap;
}
.chat-msg {
display: flex;
padding: 0 20px 45px;
&-content {
margin-left: 12px;
max-width: 70%;
display: flex;
flex-direction: column;
align-items: flex-start;
}
&-text {
background-color: var(--chat-text-bg);
padding: 15px;
border-radius: 20px 20px 20px 0;
line-height: 1.5;
font-size: 14px;
font-weight: 500;
& + & {
margin-top: 10px;
}
}
}
.chat-msg-text {
color: var(--chat-text-color);
}
.owner {
flex-direction: row-reverse;
.chat-msg-content {
margin-left: 0;
margin-right: 12px;
align-items: flex-end;
}
.chat-msg-text {
background-color: var(--theme-color);
color: #fff;
border-radius: 20px 20px 0 20px;
}
.chat-msg-date {
left: auto;
right: calc(100% + 12px);
}
}
.chat-msg-text img {
max-width: 300px;
width: 100%;
}
.chat-area-footer {
display: flex;
border-top: 1px solid var(--border-color);
width: 100%;
padding: 10px 20px;
align-items: center;
background-color: var(--theme-bg-color);
position: sticky;
bottom: 0;
left: 0;
}
.chat-area-footer svg {
color: var(--settings-icon-color);
width: 20px;
flex-shrink: 0;
cursor: pointer;
&:hover {
color: var(--settings-icon-hover);
}
& + svg {
margin-left: 12px;
}
}
.chat-area-footer input {
border: none;
color: var(--body-color);
background-color: var(--input-bg);
padding: 12px;
border-radius: 6px;
font-size: 15px;
margin: 0 12px;
width: 100%;
&::placeholder {
color: var(--input-chat-color);
}
}
.detail-area-header {
display: flex;
flex-direction: column;
align-items: center;
.msg-profile {
margin-right: 0;
width: 60px;
height: 60px;
margin-bottom: 15px;
}
}
.detail-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
}
.detail-subtitle {
font-size: 12px;
font-weight: 600;
color: var(--msg-date);
}
.detail-button {
border: 0;
background-color: var(--button-bg-color);
padding: 10px 14px;
border-radius: 5px;
color: var(--button-color);
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
flex-grow: 1;
font-weight: 500;
svg {
width: 18px;
margin-right: 10px;
}
&:last-child {
margin-left: 8px;
}
}
.detail-buttons {
margin-top: 20px;
display: flex;
width: 100%;
}
.detail-area input {
background-color: transparent;
border: none;
width: 100%;
color: var(--body-color);
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%23c1c7cd'%3e%3cpath d='M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3e%3c/svg%3e");
background-repeat: no-repeat;
background-size: 16px;
background-position: 100%;
font-family: var(--body-font);
font-weight: 600;
font-size: 14px;
border-bottom: 1px solid var(--border-color);
padding: 14px 0;
&::placeholder {
color: var(--detail-font-color);
}
}
.detail-changes {
margin-top: 40px;
}
.detail-change {
color: var(--detail-font-color);
font-family: var(--body-font);
font-weight: 600;
font-size: 14px;
border-bottom: 1px solid var(--border-color);
padding: 14px 0;
display: flex;
svg {
width: 16px;
margin-left: auto;
}
}
.colors {
display: flex;
margin-left: auto;
}
.color {
width: 16px;
height: 16px;
border-radius: 50%;
cursor: pointer;
&.selected {
background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' stroke='%23fff' stroke-width='3' fill='none' stroke-linecap='round' stroke-linejoin='round' class='css-i6dzq1' viewBox='0 0 24 24'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
background-size: 10px;
background-position: center;
background-repeat: no-repeat;
}
&:not(:last-child) {
margin-right: 4px;
}
}
.detail-photo-title {
display: flex;
align-items: center;
svg {
width: 16px;
}
}
.detail-photos {
margin-top: 30px;
text-align: center;
}
.detail-photo-title {
color: var(--detail-font-color);
font-weight: 600;
font-size: 14px;
margin-bottom: 20px;
svg {
margin-right: 8px;
}
}
.detail-photo-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-column-gap: 6px;
grid-row-gap: 6px;
grid-template-rows: repeat(3, 60px);
img {
height: 100%;
width: 100%;
object-fit: cover;
border-radius: 8px;
object-position: center;
}
}
.view-more {
color: var(--theme-color);
font-weight: 600;
font-size: 15px;
margin: 25px 0;
}
.follow-me {
text-decoration: none;
font-size: 14px;
width: calc(100% + 60px);
margin-left: -30px;
display: flex;
align-items: center;
margin-top: auto;
overflow: hidden;
color: #9c9cab;
padding: 0 20px;
height: 52px;
flex-shrink: 0;
position: relative;
justify-content: center;
svg {
width: 16px;
height: 16px;
margin-right: 8px;
}
}
.follow-text {
display: flex;
align-items: center;
transition: 0.3s;
}
.follow-me:hover {
.follow-text {
transform: translateY(100%);
}
.developer {
top: 0;
}
}
.developer {
position: absolute;
color: var(--detail-font-color);
font-weight: 600;
left: 0;
top: -100%;
display: flex;
transition: 0.3s;
padding: 0 20px;
align-items: center;
justify-content: center;
background-color: var(--developer-color);
width: 100%;
height: 100%;
}
.developer img {
border-radius: 50%;
width: 26px;
height: 26px;
object-fit: cover;
margin-right: 10px;
}
.dark-mode {
.search-bar input,
.detail-area input {
background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' fill='%236f7073'%3e%3cpath d='M55.146 51.887L41.588 37.786A22.926 22.926 0 0046.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 00.083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3e%3c/svg%3e");
}
.dark-light svg {
fill: #ffce45;
stroke: #ffce45;
}
.chat-area-group span {
color: #d1d1d2;
}
}
.chat-area-group {
flex-shrink: 0;
display: flex;
* {
border: 2px solid var(--theme-bg-color);
}
* + * {
margin-left: -5px;
}
span {
width: 32px;
height: 32px;
background-color: var(--button-bg-color);
color: var(--theme-color);
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
font-size: 14px;
font-weight: 500;
}
}
@media (max-width: 1120px) {
.detail-area {
display: none;
}
}
@media (max-width: 780px) {
.conversation-area {
display: none;
}
.search-bar {
margin-left: 0;
flex-grow: 1;
input {
padding-right: 10px;
}
}
}
const toggleButton = document.querySelector('.dark-light');
const colors = document.querySelectorAll('.color');
colors.forEach(color => {
color.addEventListener('click', (e) => {
colors.forEach(c => c.classList.remove('selected'));
const theme = color.getAttribute('data-color');
document.body.setAttribute('data-theme', theme);
color.classList.add('selected');
});
});
toggleButton.addEventListener('click', () => {
document.body.classList.toggle('dark-mode');
});
Also see: Tab Triggers