A Pen by Michael Garten on CodePen.
Last active
June 25, 2018 15:01
-
-
Save mjgartendev/572f1ce269208964e54e36543dae3269 to your computer and use it in GitHub Desktop.
Stacked Semantic Segments: https://codepen.io/mjgartendev/pen/MXQqav
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="ui segments" id="app"> | |
<div id="app-header" class="ui segment layout"> | |
<i>AppHeader</i> | |
</div> | |
<div id="app-content" class="ui segment layout"> | |
<i>AppContent</i> | |
<div id="nuxt" class="ui segment page"> | |
<i>VueStudio | VueFinder | Resources | Showcase</i> | |
<div class="ui horizontal segments" id="components"> | |
<div class="ui segment"> | |
<i>VueEditor | DataEditor | UiDesign</i> | |
<div class="ui segments"> | |
<div class="ui segment"> | |
<i>ScriptPanel</i> | |
</div> | |
<div class="ui segment"> | |
<i>StylePanel</i> | |
</div> | |
<div class="ui segment"> | |
<i>TemplatePanel</i> | |
</div> | |
</div> | |
</div> | |
<div class="ui segment"> | |
<i>Preview | Config File | Dataset </i> | |
<div class="ui segments"> | |
<div class="ui segment"> | |
<i>PreviewPanel</i> | |
</div> | |
<div class="ui segment"> | |
<i>DevtoolsPanel</i> | |
</div> | |
</div> | |
</div> | |
<div class="ui segment"> | |
<i>Tasks | Context | Stats</i> | |
<div class="ui segments"> | |
<div class="ui segment"> | |
<p>1. choose a theme</p> | |
</div> | |
<div class="ui segment"> | |
<p>2. come up with idea</p> | |
</div> | |
<div class="ui segment"> | |
<p>3. build</p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="ui segment app-layout" id="command-panel"> | |
<i>CommandPanel</i> | |
</div> | |
<div class="ui segment app-layout" id="status-bar"> | |
<i>StatusBar</i> | |
</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
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.2/semantic.js"></script> |
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
#components { | |
background-color: #f1f1f1; | |
color: #35495e; | |
} | |
#app-header, #app-content, #command-panel, #status-bar{ | |
background-color: #35495e; | |
color: #f1f1f1; | |
font-weight: bold; | |
border: 1px solid #ccc; | |
} | |
#nuxt { | |
background-color: #41b883; | |
font-weight: bold; | |
color: #35495e | |
} |
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
<link href="https://cdnjs.cloudflare.com/ajax/libs/semantic-ui/2.3.2/semantic.css" rel="stylesheet" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment