A Pen by Marcos Jones on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@charset "utf-8"; | |
@import "~bulma/sass/utilities/initial-variables.sass"; | |
@import "~bulma/sass/utilities/functions.sass"; | |
@import "~bulma/sass/utilities/derived-variables.sass"; | |
// creating empty maps | |
@function empty-map($x: x) { | |
@return map-remove(($x:$x), $x); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="main"> | |
<div class="__content"> | |
<div class="card"> | |
<!-- beginning of main header --> | |
<nav class="level primary-header is-marginless"> | |
<!-- beginning of favorite. --> | |
<!-- input used to emulate presenter functionality, |
A Pen by Marcos Jones on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="main"> | |
<div class="__content"> | |
<div class="card"> | |
<!-- main tab header --> | |
<div class="header"> | |
<!-- usu logo --> | |
<div class="logo"> | |
<figure class="image"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="main"> | |
<div class="__content"> | |
<div class="content"> | |
<button class="button"> | |
<div class="text label is-marginless">App date</div> | |
<label> | |
<div class="help from">from</div> | |
<input type="date" name="from" id="from"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="main"> | |
<div class="__content"> | |
<div class="card"> | |
<nav class="level header"> | |
<div class="level-left"></div> | |
<div class="level-right"> | |
<div class="level-item"> | |
<div class="anum">A02238956</div> | |
</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="main"> | |
<div class="__content"> | |
<div class="card student-is-vertical"> | |
<div class="student-info"> | |
<nav class="level primary-header is-marginless"> | |
<input type="checkbox" name="favorited" id="favorited"> | |
<label for="favorited" class="favorited"> | |
<span class="icon true"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="main"> | |
<div class="__content"> | |
<div class="card"> | |
<div class="table is- is-hoverable is-striped"> | |
<div class="thead"> | |
<div class="row"> | |
<div class="cell-h">01</div> |
A Pen by Marcos Jones on CodePen.