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 URL's 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 it's URL and the proper URL extention.
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.
<body>
<!--=== MAIN HEADER & SUB HEADER ===-->
<!-- Main Header -->
<header class="main-header w-100">
<div class="main-container flex">
<a href="#" class="logo flex flex-center"
><img src="https://i.ibb.co/5rnmzn7/logo.png" alt="logo"
/></a>
<div class="search-bar-container flex flex-center">
<div class="search-bar flex">
<input type="text" placeholder="Search" />
<img src="https://svgshare.com/i/Lag.svg" alt="search-icon" />
</div>
</div>
<!-- Main Navigation Menu -->
<nav class="main-nav-container">
<ul class="main-nav h-100 flex flex-center">
<li><a href="#">Home</a></li>
<li><a href="#">Profile</a></li>
<li><a href="#">Connections</a></li>
<li><a href="#">Interest</a></li>
<li><a href="#" style="color: #ec806f;">Try Premium</a></li>
</ul>
</nav>
<!-- Icon Navigation Menu -->
<nav class="icon-nav-container flex flex-center">
<ul class="icon-nav h-100 flex flex-center">
<li>
<a href="#"
><img class="icon" src="https://svgshare.com/i/LZv.svg" alt=""
/></a>
</li>
<li>
<a href="#"
><img class="icon" src="https://svgshare.com/i/LaW.svg" alt=""
/></a>
</li>
<li>
<a href="#"
><img class="icon" src="https://svgshare.com/i/La9.svg" alt=""
/></a>
</li>
</ul>
</nav>
<!-- Profile Photo Avatar -->
<a href="#" class="account-photo flex flex-center"
><img src="https://i.ibb.co/b1pCvpM/avatar.jpg" alt="profile-picture"
/></a>
</div>
</header>
<!-- Sub Header -->
<header class="sub-header w-100">
<div class="main-container flex">
<div class="sub-nav-container">
<ul class="sub-nav flex flex-center">
<li><a href="#">Posts</a></li>
<li><a href="#">Background</a></li>
<li><a href="#">Recommendations</a></li>
<li><a href="#">Following</a></li>
</ul>
</div>
</div>
</header>
<!--=== PAGE CONTENT ===-->
<div class="page-content main-container flex">
<!-- __Left side ASIDE__ -->
<aside class="left-aside h-100 flex flex-center blue-border">
<div class="profile-info p-20 w-100">
<a href="#">
<img
src="https://i.ibb.co/DRndJ5f/bill-gates-avatar.png"
alt="bill-gates-photo"
class="profile-photo"
/>
</a>
<h2 class="user-name">Bill Gates</h2>
<h4 class="job-description">Microsoft Founder</h4>
<p class="user-location">Greater Seattle Area</p>
<button class="btn-form w-100 btn-full">
Follow</button
><br />
<button class="btn-form w-100 btn-outline flex flex-center">
Connect<img src="https://svgshare.com/i/LXp.svg" alt="" />
</button>
</div>
<div class="profile-stats flex w-100">
<div class="connection-amount p-20">
<p class="social-stats flex">200<span>connections</span></p>
</div>
<div class="follower-amount p-20">
<p class="social-stats flex">1.9M<span>followers</span></p>
</div>
</div>
<div class="profile-links p-20 w-100">
<div class="link">
<img src="https://svgshare.com/i/L_o.svg" class="icon" />
<a href="#">linkedin.com/in/billgates</a>
</div>
<div class="link">
<img src="https://svgshare.com/i/L_z.svg" class="icon" />
<a href="#">billgates.com</a>
</div>
</div>
<div class="profile-export p-20 w-100">
<div class="link">
<img src="https://svgshare.com/i/LaX.svg" class="icon" />
<a href="#">Export page as PDF</a>
</div>
</div>
</aside>
<!-- __Main Content Section__ -->
<div class="main-content center-section h-100">
<!-- ***POSTS SECTION*** -->
<section class="posts w-100 blue-border">
<div class="section-title-container flex flex-center p-20">
<h4 class="section-title">Posts</h4>
<div class="previous-next-selector flex">
<button class="btn-circle-blue flex">
<img src="https://svgshare.com/i/LaK.svg" alt="" />
</button>
<button class="btn-circle-blue flex">
<img src="https://svgshare.com/i/La0.svg" alt="" />
</button>
</div>
</div>
<div class="post-grid h-100 p-20">
<div class="post">
<a href="#">
<img
class="post-photo w-100"
src="https://i.ibb.co/bdDKgmb/article1.jpg"
/>
</a>
<a href="#">
<p class="post-title">3 myths that confuse top-managers</p>
</a>
<p class="post-date">April 19, 2020</p>
</div>
<div class="post">
<a href="#">
<img
class="post-photo w-100"
src="https://i.ibb.co/XtpdjDV/article2.jpg"
/>
</a>
<a href="#">
<p class="post-title">How much do we spend on hot drinks</p>
</a>
<p class="post-date">April 19, 2020</p>
</div>
<div class="post">
<a href="#">
<img
class="post-photo w-100"
src="https://i.ibb.co/W62XCpy/article3.jpg"
/>
</a>
<a href="#">
<p class="post-title">Good news you might have noticed</p>
</a>
<p class="post-date">April 19, 2020</p>
</div>
</div>
</section>
<!-- ***BACKGROUND SECTION*** -->
<section class="background blue-border">
<div class="section-title-container flex flex-center p-20">
<h4 class="section-title">Background</h4>
</div>
<!-- SUMMARY -->
<div class="background-grid p-20">
<div class="summary background-content-row">
<div class="background-row-title flex">
<img src="https://svgshare.com/i/L_y.svg" />
<h3>Summary</h3>
</div>
<p>
Lorem ipsum dolor sit, amet consectetur adipisicing elit.
Dolores, quos quisquam laudantium, nisi impedit ipsa odio amet
rem odit ipsam praesentium nemo placeat! Odio explicabo
repudiandae voluptatibus magnam quasi tempore dolor soluta?
Tempore minima sapiente vel nisi praesentium blanditiis magnam.
</p>
</div>
<!-- EXPERIENCE -->
<div class="experience background-content-row">
<div class="background-row-title flex">
<img src="https://svgshare.com/i/LaA.svg" />
<h3>Experience</h3>
</div>
<div class="position-entity flex">
<div class="position-data">
<p class="position-timeline">2000 - Present</p>
<p class="company-position">Co-Founder, Chairman</p>
<a href="#">Microsoft</a>
</div>
<img src="https://i.ibb.co/mRGfjdn/logo-microsoft.png" />
</div>
<div class="position-entity flex">
<div class="position-data">
<p class="position-timeline">1992-1975</p>
<p class="company-position">Senior Developer</p>
<a href="#">Youtube</a>
</div>
<img src="https://i.ibb.co/34ymfNp/logo-youtube.png" />
</div>
</div>
<!-- EDUCATION -->
<div class="education background-content-row">
<div class="background-row-title flex">
<img src="https://svgshare.com/i/LZn.svg" />
<h3>Education</h3>
</div>
<div class="education-entity flex">
<div class="education-data">
<p class="education-timeline">1973 - 1975</p>
<p class="school">Harvard University</p>
<a href="#">BS Computer Science</a>
</div>
</div>
<div class="education-entity flex">
<div class="education-data">
<p class="education-timeline">1960 - 1973</p>
<p class="school">Lakeside School, Seattle</p>
</div>
</div>
</div>
<!-- SKILLS -->
<div class="skills background-content-row">
<div class="background-row-title flex">
<img
style="transform: rotate(180deg);"
src="https://svgshare.com/i/Las.svg"
/>
<h3>Skills</h3>
</div>
<div class="skills-content">
<div class="skill-row flex">
<div class="skill flex flex-center">
<p class="endorsement-amount">74</p>
<p>Social Media Marketing</p>
</div>
<div class="users-endorsements flex flex-center">
<a href="#" class="account-photo flex flex-center"
><img
src="https://i.ibb.co/1J748kM/avatar3.jpg"
alt="profile-picture"
/></a>
<a href="#" class="account-photo flex flex-center"
><img
src="https://i.ibb.co/b1pCvpM/avatar.jpg"
alt="profile-picture"
/></a>
<a href="#" class="account-photo flex flex-center"
><img
src="https://i.ibb.co/J7sSDVc/avatar2.jpg"
alt="profile-picture"
/></a>
<button class="endorsement-btn">71+</button>
</div>
</div>
<div class="skill-row flex">
<div class="skill flex flex-center">
<p class="endorsement-amount">67</p>
<p>Web Development</p>
</div>
<div class="users-endorsements flex flex-center">
<a href="#" class="account-photo flex flex-center"
><img
src="https://i.ibb.co/J7sSDVc/avatar2.jpg"
alt="profile-picture"
/></a>
<a href="#" class="account-photo flex flex-center"
><img
src="https://i.ibb.co/1J748kM/avatar3.jpg"
alt="profile-picture"
/></a>
<a href="#" class="account-photo flex flex-center"
><img
src="https://i.ibb.co/b1pCvpM/avatar.jpg"
alt="profile-picture"
/></a>
<button class="endorsement-btn">64+</button>
</div>
</div>
</div>
</div>
<!-- INTERESTS -->
<div class="interests background-content-row">
<div class="background-row-title flex">
<img src="https://svgshare.com/i/LaY.svg" />
<h3>Interests</h3>
</div>
<div class="interests-tag flex">
<p class="tag">Wireless Industry</p>
<p class="tag">Photography</p>
<p class="tag">Web Design</p>
<p class="tag">Technology</p>
</div>
</div>
</div>
</section>
<!-- ***RECOMMENDATIONS SECTION*** -->
<section class="recomendations blue-border">
<div class="section-title-container flex flex-center p-20">
<h4 class="section-title">Recomendations</h4>
<div class="previous-next-selector flex">
<button class="btn-circle-blue flex">
<img src="https://svgshare.com/i/LaK.svg" alt="" />
</button>
<button class="btn-circle-blue flex">
<img src="https://svgshare.com/i/La0.svg" alt="" />
</button>
</div>
</div>
<div class="recomendation-grid h-100 p-20">
<div class="testimonial w-100">
<p class="testimonial-text p-20">
Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Incidunt, odio. Qui eveniet soluta nisi dolorum? Molestias at
fugiat magni suscipit?
</p>
<div class="profile">
<a href="#" class="account-photo flex flex-center"
><img
src="https://i.ibb.co/b1pCvpM/avatar.jpg"
alt="profile-picture"
/></a>
<p class="profile-name">
Sergey Brin <br /><span>Google</span>
</p>
</div>
</div>
<div class="testimonial w-100">
<p class="testimonial-text p-20">
Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Incidunt, odio. Qui eveniet soluta nisi dolorum? Molestias at
fugiat magni suscipit?
</p>
<div class="profile">
<a href="#" class="account-photo flex flex-center"
><img
src="https://i.ibb.co/J7sSDVc/avatar2.jpg"
alt="profile-picture"
/></a>
<p class="profile-name">
Jeffrey Bezos <br /><span>Amazon</span>
</p>
</div>
</div>
<div class="testimonial w-100">
<p class="testimonial-text p-20">
Lorem ipsum dolor, sit amet consectetur adipisicing elit.
Incidunt, odio. Qui eveniet soluta nisi dolorum? Molestias at
fugiat magni suscipit?
</p>
<div class="profile">
<a href="#" class="account-photo flex flex-center"
><img
src="https://i.ibb.co/1J748kM/avatar3.jpg"
alt="profile-picture"
/></a>
<p class="profile-name">Steve Jobs <br /><span>Apple</span></p>
</div>
</div>
</div>
</section>
<!-- ***FOLLOWING SECTION*** -->
<section class="following blue-border">
<div class="section-title-container flex flex-center p-20">
<h4 class="section-title">Following</h4>
</div>
<div class="following-grid h-100 p-20">
<div class="suggestion w-100">
<a href="#" class="flex flex-center p-20">
<img
class="suggestion-photo w-100"
src="https://i.ibb.co/mRGfjdn/logo-microsoft.png"
/>
</a>
<p>Microsoft</p>
<div class="suggestion-btn flex flex-center">
<button class="btn-circle-blue flex">
<img src="https://svgshare.com/i/La8.svg" alt="" />
</button>
<a href="#" class="follow-btn">Follow</a>
</div>
</div>
<div class="suggestion w-100">
<a href="#" class="flex flex-center p-20">
<img
class="suggestion-photo w-100"
src="https://i.ibb.co/cyvPXc7/logo-amazon.jpg"
/>
</a>
<p>Amazon</p>
<div class="suggestion-btn flex flex-center">
<button class="btn-circle-blue flex">
<img src="https://svgshare.com/i/La8.svg" alt="" />
</button>
<a href="#" class="follow-btn">Follow</a>
</div>
</div>
<div class="suggestion w-100">
<a href="#" class="flex flex-center p-20">
<img
class="suggestion-photo w-100"
src="https://i.ibb.co/34ymfNp/logo-youtube.png"
/>
</a>
<p>Youtube</p>
<div class="suggestion-btn flex flex-center">
<button class="btn-circle-blue flex">
<img src="https://svgshare.com/i/La8.svg" alt="" />
</button>
<a href="#" class="follow-btn">Follow</a>
</div>
</div>
<button class="btn-form w-100 btn-outline">
See all (20)
</button>
</div>
</section>
</div>
<!-- __Right side ASIDE__ -->
<aside class="right-aside h-100 flex">
<div class="viewed-profiles">
<h2 class="right-aside-title">People Also Viewed</h2>
<div class="profile flex">
<a href="#" class="account-photo flex flex-center"
><img
src="https://i.ibb.co/b1pCvpM/avatar.jpg"
alt="profile-picture"
/></a>
<p class="profile-name">Sergey Brin <br /><span>Google</span></p>
</div>
<div class="profile flex">
<a href="#" class="account-photo flex flex-center"
><img
src="https://i.ibb.co/J7sSDVc/avatar2.jpg"
alt="profile-picture"
/></a>
<p class="profile-name">Jeffrey Bezos <br /><span>Amazon</span></p>
</div>
<div class="profile flex">
<a href="#" class="account-photo flex flex-center"
><img
src="https://i.ibb.co/1J748kM/avatar3.jpg"
alt="profile-picture"
/></a>
<p class="profile-name">Steve Jobs <br /><span>Apple</span></p>
</div>
</div>
<div class="influencers">
<h2 class="right-aside-title">More Influencers</h2>
<div class="flex flex-center">
<a href="#">
<img src="https://svgshare.com/i/LaK.svg" />
</a>
<a href="#">
<img
src="https://i.ibb.co/1J748kM/avatar3.jpg"
class="profile-photo"
/>
</a>
<a href="#">
<img src="https://svgshare.com/i/La0.svg" />
</a>
</div>
<p class="profile-name">Steve Jobs <br /><span>Apple</span></p>
</div>
</aside>
</div>
<!--=== FOOTER ===-->
<footer class="footer w-100">
<p class="footer-text p-20">LinkedIn Corporation © 2020</p>
</footer>
</body>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
:root {
--blue-border: #76b4e1;
--gray-border: #dedede;
--gray-text: #adadad;
}
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
font-family: "Roboto", sans-serif;
background: #f6f8f9;
overflow: scroll;
overflow-x: hidden;
}
ul {
list-style: none;
}
a {
text-decoration: none;
color: #000;
}
input {
border: none;
}
button {
cursor: pointer;
border: none;
}
section {
margin-bottom: 20px;
background: #fff;
}
/* UTILITY STYLES */
.p-20 {
padding: 20px;
}
.w-100 {
width: 100%;
}
.h-100 {
height: 100%;
}
.flex {
display: flex;
}
.flex-center {
align-items: center;
}
.blue-border {
border: 1px solid rgba(143, 202, 245, 0.3);
}
/* BUTTON STYLES */
.btn-form {
height: 35px;
border-radius: 50px;
margin-top: 15px;
font-size: 14px;
}
.btn-full {
opacity: 1;
background: var(--blue-border);
color: #fff;
}
.btn-full:hover {
opacity: 0.8;
}
.btn-outline {
opacity: 1;
background: #fff;
border: 2px solid var(--blue-border);
color: var(--blue-border);
}
.btn-outline:hover {
opacity: 0.8;
}
.btn-circle-blue {
opacity: 1;
align-content: center;
border: 2px solid var(--blue-border);
border-radius: 50%;
background: #fff;
margin-left: 10px;
}
.btn-circle-blue:hover {
opacity: 0.8;
}
/* *** MAIN HEADER & SUB HEADER STYLE *** */
.main-header,
.sub-header {
background: #fff;
border-bottom: 1px solid var(--gray-border);
}
.sub-header {
margin-bottom: 20px;
}
.main-container {
max-width: 1200px;
margin: auto;
padding: 0 30px;
}
.logo img {
height: 30px;
margin-right: 30px;
}
.search-bar-container,
.icon-nav-container {
justify-content: center;
border-left: 1px solid var(--gray-border);
border-right: 1px solid var(--gray-border);
padding: 25px 30px;
}
.search-bar {
height: 30px;
border: 1px solid var(--gray-border);
border-radius: 50px;
padding: 5px 10px;
}
.main-nav-container {
flex: auto;
padding: 25px 30px;
}
.main-nav {
justify-content: space-between;
}
.main-nav li,
.icon-nav li {
font-weight: 300;
transition: transform 0.2s ease-in-out;
}
.main-nav li:hover,
.icon-nav li:hover {
transform: translateY(-3px);
}
.main-nav li:not(:last-child),
.icon-nav li:not(:last-child) {
margin-right: 30px;
}
.icon {
width: 20px;
display: inline-block;
vertical-align: middle;
}
.account-photo img {
height: 40px;
border-radius: 50%;
margin-left: 30px;
}
.sub-nav {
height: 40px;
}
.sub-nav li {
font-size: 14px;
font-weight: 300;
margin-right: 10px;
}
.sub-nav li a {
padding: 10px 20px;
}
.sub-nav a:hover {
border-bottom: 2px solid var(--blue-border);
}
/* *** PAGE CONTENT STYLE *** */
/* LEFT *ASIDE* STYLE */
.left-aside {
width: 200px;
background: #fff;
flex-direction: column;
}
.profile-info {
text-align: center;
border-bottom: 1px solid var(--gray-border);
}
.profile-photo {
width: 100px;
height: 100px;
border-radius: 50%;
margin-bottom: 20px;
}
.job-description {
font-weight: 400;
font-size: 14px;
margin: 5px 0;
}
.user-location {
font-size: 14px;
color: var(--gray-text);
}
.profile-info button:last-child {
justify-content: center;
}
.profile-stats {
border-bottom: 1px solid var(--gray-border);
}
.profile-stats div {
width: 50%;
}
.profile-stats div:first-child {
border-right: 1px solid var(--gray-border);
}
.social-stats {
font-weight: 700;
flex-wrap: wrap;
justify-content: center;
}
.social-stats span,
.profile-name span {
font-weight: 400;
font-size: 14px;
color: var(--gray-text);
}
.profile-links {
border-bottom: 1px solid var(--gray-border);
}
.profile-links .link:first-child {
margin-bottom: 10px;
}
.link a {
color: var(--gray-text);
font-size: 12px;
}
.link a:hover {
text-decoration: underline;
}
/* CENTER *SECTION* STYLE*/
.center-section {
width: 700px;
margin: 0 20px;
}
/* SECTION HEADERS STYLE */
.section-title {
text-transform: uppercase;
}
.section-title-container {
justify-content: space-between;
border-bottom: 1px solid var(--gray-border);
}
/* POSTS SECTION STYLE */
.post-grid,
.recomendation-grid,
.following-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
}
.post-photo,
.testimonial {
margin-bottom: 10px;
}
.post:hover a {
text-decoration: underline;
}
.post-title {
font-weight: 500;
margin-bottom: 5px;
}
.post-date {
font-size: 14px;
color: var(--gray-text);
}
/* BACKGROUND SECTION STYLE */
.background-content-row {
margin-bottom: 20px;
}
.background-row-title h3 {
margin-left: 10px;
font-weight: 400;
}
.summary p {
margin-left: 25px;
padding: 10px;
line-height: 1.4;
}
.position-entity,
.education-entity {
margin-left: 25px;
padding: 10px;
justify-content: space-between;
}
.position-timeline,
.education-timeline {
font-size: 14px;
color: var(--gray-text);
}
.company-position,
.school {
margin-block: 5px;
}
.position-data a,
.education-data a {
color: var(--blue-border);
}
.position-data a:hover,
.education-data a:hover {
text-decoration: underline;
}
.position-entity img {
height: 60px;
}
.position-entity:last-child img {
height: 42px;
padding: 5px;
}
.skill-row {
justify-content: space-between;
padding: 10px;
}
.skill {
margin-left: 25px;
}
.endorsement-amount {
padding: 10px;
border: 1px solid var(--gray-text);
border-radius: 50%;
margin-right: 20px;
}
.users-endorsements img,
.users-endorsements button {
margin-left: 10px;
}
.users-endorsements button {
width: 40px;
height: 40px;
border-radius: 50%;
}
.interests-tag {
margin-left: 25px;
padding: 10px;
}
.tag {
font-size: 14px;
background: var(--gray-border);
padding: 5px;
margin-right: 10px;
}
/* RECOMENDATIONS SECTION STYLE */
.profile {
padding-left: 10px;
}
.testimonial-text {
border: 1px solid var(--gray-border);
}
/* FOLLOWING SECTION STYLE */
.suggestion > a {
height: 120px;
border: 1px solid var(--gray-border);
justify-content: center;
margin-bottom: 10px;
}
.suggestion button {
margin: 0;
}
.suggestion p {
margin-block: 10px;
}
.follow-btn {
color: var(--blue-border);
font-size: 18px;
margin-left: 10px;
}
.follow-btn:hover {
text-decoration: underline;
}
/* RIGHT *ASIDE* STYLE*/
.right-aside {
width: 200px;
flex-direction: column;
}
.viewed-profiles {
margin-bottom: 30px;
}
.right-aside-title {
font-size: 18px;
font-weight: 300;
text-transform: uppercase;
margin-bottom: 20px;
}
.profile {
margin: 20px 0;
}
.profile img {
margin-right: 15px;
margin-left: 0;
}
.influencers div {
justify-content: space-evenly;
}
.influencers .profile-name {
font-size: 20px;
font-weight: 700;
text-align: center;
}
.influencers .profile-name span {
font-size: 16px;
}
/* *** FOOTER STYLE *** */
.footer {
border-top: 1px solid var(--gray-border);
}
.footer-text {
text-align: center;
font-weight: 400;
}
// Still working on responsiveness.
Also see: Tab Triggers