Skip to content

Instantly share code, notes, and snippets.

@mqxu
mqxu / football-soccer-match-score-component.markdown
Created March 14, 2021 17:16
Football (soccer) match score component
@mqxu
mqxu / card-component-with-floating-labels.markdown
Created March 14, 2021 17:16
Card component with floating labels
@mqxu
mqxu / css-filter-cards.markdown
Created March 14, 2021 17:11
CSS Filter Cards
@mqxu
mqxu / index.pug
Created March 14, 2021 17:09
Services Section | Learn CSS Garden
section.c-section
h2.c-section__title
span Our Services
ul.c-services
li.c-services__item
h3 Responsive Web Design
p
| We leverage the concept of mobile-first design. Through our work, we focus on designing an experience that works across different screen sizes.
li.c-services__item
h3 UX Auditing
@mqxu
mqxu / index.html
Created March 14, 2021 17:08
Reading Application
<div class="container">
<div class="status-bar">
<span class="status-bar__clock" onload="showTime()"></span>
<div>
<img class="status-bar__img img" src="http://utopian-drink.surge.sh/images/icon/status-bar.svg" alt="status-bar">
@mqxu
mqxu / index.html
Created March 14, 2021 17:07
Slide Sign In/Sign Up form
<div class="container right-panel-active">
<!-- Sign Up -->
<div class="container__form container--signup">
<form action="#" class="form" id="form1">
<h2 class="form__title">Sign Up</h2>
<input type="text" placeholder="User" class="input" />
<input type="email" placeholder="Email" class="input" />
<input type="password" placeholder="Password" class="input" />
<button class="btn">Sign Up</button>
</form>
@mqxu
mqxu / index.html
Created March 14, 2021 17:04
Mini Music Player - VueJS
<div class="wrapper" id="app">
<div class="player">
<div class="player__top">
<div class="player-cover">
<transition-group :name="transitionName">
<div class="player-cover__item" v-if="$index === currentTrackIndex" :style="{ backgroundImage: `url(${track.cover})` }" v-for="(track, $index) in tracks" :key="$index"></div>
</transition-group>
</div>
<div class="player-controls">
<div class="player-controls__item -favorite" :class="{ active : currentTrack.favorited }" @click="favorite">
@mqxu
mqxu / index.html
Created March 14, 2021 17:03
Login Form with floating placeholder and light button
<div class="login-box">
<h2>Login</h2>
<form>
<div class="user-box">
<input type="text" name="" required="">
<label>Username</label>
</div>
<div class="user-box">
<input type="password" name="" required="">
<label>Password</label>