This file contains 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
<!DOCTYPE> | |
<html> | |
<head> | |
<title>Dissecting Gmail's Email Attachments - Dropping Files</title> | |
<style> | |
.msg { | |
display: none | |
} | |
.dragging .msg { |
This file contains 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 id="faq"> | |
<div> | |
<h3><a href="#">FAQ question</a></h3> | |
<div> | |
<p>FAQ answer</p> | |
</div> | |
</div> | |
<div> | |
<h3><a href="#">FAQ question</a></h3> | |
<div> |
This file contains 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
#faq > div { | |
border-bottom: dashed 1px #bca785; | |
margin-bottom: 10px; | |
padding-bottom: 10px; | |
} | |
#archive > ul > li { | |
border-bottom: dashed 1px #bca785; | |
margin-bottom: 10px; | |
padding-bottom: 10px; |
This file contains 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
#faq > div, | |
#archive > ul > li { | |
border-bottom: dashed 1px #bca785; | |
margin-bottom: 10px; | |
padding-bottom: 10px; | |
} |
This file contains 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
.separator { | |
border-bottom: dashed 1px #bca785; | |
margin-bottom: 10px; | |
padding-bottom: 10px; | |
} |
This file contains 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
<!-- FAQ --> | |
<div id="faq" class="accordion"> | |
<div class="separator"> | |
<h3 class="accordion__title"> | |
<a href="#faq-content1">FAQ Question 1</a> | |
</h3> | |
<div class="accordion__body" id="faq-content1">FAQ Answer 1</div> | |
</div> | |
<div class="separator"> | |
<h3 class="accordion__title"> |
This file contains 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
.accordion-super h1 { | |
color: blue; | |
font-family: serif; | |
font-size: 20px; | |
} | |
.faq h2.question { | |
color: blue; | |
font-size: 18px; | |
} |
This file contains 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
.accordion-super h1, | |
.faq h2.question { | |
color: blue; | |
} | |
.accordion-super h1, | |
.archive h4 { | |
font-family: serif; | |
} |
This file contains 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="wrap"> | |
<div class="wrap-inner"> | |
<div class="header"> | |
<div class="logo"> | |
<img src="#" /> | |
</div> | |
<div class="site-title">Site Title</div> | |
<div class="nav"> | |
<div class="nav-list"> | |
<div class="nav-item"> |
This file contains 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"> | |
<!-- FAQ --> | |
<div id="faq" class="accordion"> | |
<div class="separator"> | |
<h2 class="accordion__title"> | |
<a class="accordion__toggle js-accordion-toggle" href="#faq-content1"> | |
<i class="icn icn--accordion js-accordion-state">Open</i> | |
FAQ Question 1</a> | |
</h2> | |
<div class="accordion__body is-closed"> |
OlderNewer