Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

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.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

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.

+ add another resource

Packages

Add Packages

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.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!-- Made by Dewan Mukto for Fahim Rehman, Unico -->
  <link rel="stylesheet" href=
"https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.css" />
<body>
  <div class="main-section">
    <center>
    <div class="logo">
      <img class="logo" src="https://unico-landing.dewanmukto.repl.co/logo.png" />
    </div>
    <div class="name">
      unico
    </div>
    <div class="about">
      <p>Specialized in creating professional & creative designs for your business.<br>Check my portfolio and connections <i class="fa-solid fa-hand-point-down"></i></p>
    </div>
    <div class="socials">
      <a href="http://instagram.com/unico.101" target="_blank"><i class="fa-brands fa-instagram socials"></i></a>
      <a href="https://www.facebook.com/fahimsrf/" target="_blank"><i class="fa-brands fa-facebook socials"></i></a>
      <a href="https://www.linkedin.com/in/srf/" target="_blank"><i class="fa-brands fa-linkedin socials"></i></a>
      <a href="https://www.behance.net/unico101" target="_blank"><i class="fa-brands fa-behance socials"></i></a>
      <a href="https://dribbble.com/unico101" target="_blank"><i class="fa-brands fa-dribbble socials"></i></a>
      <a href="https://srfahim.medium.com/" target="_blank"><i class="fa-brands fa-medium socials"></i></a>
      <a href="https://www.pinterest.com/Unico_101" target="_blank"><i class="fa-brands fa-pinterest socials"></i></a>
      <a href="mailto:hellounico101@gmail.com" target="_blank"><i class="fa-solid fa-envelope socials"></i></a>
    </div>
      </center>
    <div class="buttons">
      <button class="btn" onclick="latestwork()">
        <div class="btn-icon"><i class="fa-solid fa-star btn-icon"></i></div>
        <div class="btn-text">
        <div class="btn-title">My Latest Work</div>
        <div class="btn-subtitle">Brand Identity Design for SDM</div>
        </div>
      </button>
    </div>
    <div class="buttons">
      <button class="btn" onclick="projects()">
        <div class="btn-icon"><i class="fa-solid fa-palette btn-icon"></i></div>
        <div class="btn-text">
        <div class="btn-title">Brand Identity Projects</div>
        <div class="btn-subtitle">Project presentations</div>
        </div>
      </button>
    </div>
    <div class="buttons">
      <button class="btn" onclick="casestudy()">
        <div class="btn-icon"><i class="fa-solid fa-newspaper btn-icon"></i></div>
        <div class="btn-text">
        <div class="btn-title">Design Case Study</div>
        <div class="btn-subtitle">Casestudy of Space Cube</div>
        </div>
      </button>
    </div>
    <div class="buttons">
      <button class="btn" onclick="projectform()">
        <div class="btn-icon"><i class="fa-solid fa-file-contract btn-icon"></i></div>
        <div class="btn-text">
        <div class="btn-title">Project Form</div>
        <div class="btn-subtitle">Wanna hire me for a brand identity project? Contact me and fill-up the form!</div>
        </div>
      </button>
    </div><footer>
  © Unico 2022
</footer>
  </div>
</body>
              
            
!

CSS

              
                /* Global variables & imports */
@import url('https://fonts.googleapis.com/css2?family=Archivo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');

/* General devices + Mobile devices */
body {
  padding: 1vw;
  background: url("https://unico-landing.dewanmukto.repl.co/background.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color:#fff5f5;
  font-family: 'Archivo', sans-serif;
}
a {
  text-decoration: none;
  color: #fff;
}
.main-section {
  border-radius: 25px;
  padding: 1.7rem;
  margin: 0.2rem;
  background: rgba(255, 255, 255, 0.19);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.5s;
}
.logo {
  border-radius: 360px;
  width: 20vw;
}
.name {
  font-size: 6vw;
  text-shadow: -1px -1px 0 #e66100, 1px 1px 0 #ff7800;
}
.about {
  font-size: 4vw;
}
.socials {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  opacity: 0.4;
  font-size: 1.6rem;
  padding: 0.1rem;
}
.socials:hover {
  opacity: 0.8;
}
.fa-brands,.fa-solid, .fa-regular {
  scale: 4rem;
  position:relative;
}
.btn {
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.19);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.5s;
  display: flex;
}
.btn:hover {
  scale: 1.1;
  transition: 0.2s;
}
.btn:active {
  scale: 0.9;
  transition: 0.1s;
  opacity: 0.5;
}
.btn-icon {
  flex: 5%;
  float: left;
  font-size: 1rem;
  margin-right: 10px;
  color: #fff;
}
.btn-text {
  flex: 85%;
}
.btn-title {
  color: #fff;
  font-size: 4.5vw;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
}
.btn-subtitle {
  font-size: 3vw;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
}
footer {
  border-radius:25px;
  padding: 20px;
  text-align: center;
  margin-top: 2.0rem;
  position: relative;
  opacity:0.2;
  margin-bottom: 10px;
  scale:1;
  transition:0.5s;
}
footer:hover{
  opacity: 0.5;
  scale:1.01;
}

/* End of Mobile View */

/*
*
*
*
*
*/

/* Desktop View 🖥️ */
@media (min-width: 700px) {
body {
  padding: 2vw;
  background: url("https://unico-landing.dewanmukto.repl.co/background.jpg");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color:#fff5f5;
  font-family: 'Archivo', sans-serif;
}
a {
  text-decoration: none;
  color: #fff;
}
.main-section {
  border-radius: 35px;
  padding: 4rem;
  margin-left: 24rem;
  margin-right: 24rem;
  background: rgba(255, 255, 255, 0.19);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.5s;
}
.logo {
  border-radius: 360px;
  width: 6vw;
}
.name {
  font-size: 2vw;
  text-shadow: none;
}
.about {
  margin-left: 1vw;
  margin-right: 1vw;
  font-size: 1vw;
}
.socials {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  opacity: 0.4;
  font-size: 1.6rem;
  padding: 0.1rem;
}
.socials:hover {
  opacity: 0.8;
}
.fa-brands,.fa-solid, .fa-regular {
  scale: 4rem;
  position:relative;
}
.btn {
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.39);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.5s;
  display: flex;
}
.btn:hover {
  scale: 1.1;
  transition: 0.2s;
}
.btn:active {
  scale: 0.9;
  transition: 0.1s;
  opacity: 0.5;
}
.btn-icon {
  flex: 5%;
  float: left;
  font-size: 2rem;
  color: #fff;
}
.btn-text {
  flex: 85%;
}
.btn-title {
  color: #fff;
  font-size: 1.4vw;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
}
.btn-subtitle {
  font-size: 1.0vw;
  font-family: 'Open Sans', sans-serif;
  text-align: left;
}
footer {
  border-radius:25px;
  padding: 20px;
  text-align: center;
  margin-top: 2.0rem;
  position: relative;
  opacity:0.2;
  margin-bottom: 10px;
  scale:1;
  transition:0.5s;
}
footer:hover{
  opacity: 0.5;
  scale:1.01;
}
/* End of Desktop View */
}
              
            
!

JS

              
                function latestwork(){
  window.open("https://dribbble.com/unico101/projects/4564659-Shire-Development-Marketing-Brand-Identity-Design");
}
function projects(){
  window.open("https://www.behance.net/unico101");
}
function casestudy(){
  window.open("https://srfahim.medium.com/case-study-brand-identity-design-of-space-cube-an-interior-design-studio-cbfeef732de4");
}
function projectform(){
  window.open("https://docs.google.com/forms/d/1E4Xl7uw4MPmWN2hiI3q2EO3HjXVV_PiA_OzcvshqkOs/");
}
              
            
!
999px

Console