Browse Source

fixes paragraphs in messages

Former-commit-id: e14821e447
Former-commit-id: 49b44b3f1f
pull/258/head
Jack Lukic 12 years ago
parent
commit
650c0d09e0
2 changed files with 10 additions and 18 deletions
  1. 26
      node/src/documents/index.html
  2. 2
      node/src/files/components/semantic/src/collections/message.css

26
node/src/documents/index.html

@ -48,34 +48,26 @@ type : 'Semantic'
<div class="container ui grid">
<div class="row">
<div class="seven wide column">
<div class="ui message">
<h2 class="ui header"><i class="icon info-circle"></i> Get Started</h2>
<p>Learn about how to get started with Semantic UI, and best practices for using the Semantic standard in your project.</p>
<div class="ui fluid teal button">Learn more <i class="icon right-open"></i></div>
</div>
<h2 class="ui header"><i class="icon info-circle"></i> Get Started</h2>
<p>Learn about how to get started with Semantic UI, and best practices for using the Semantic standard in your project.</p>
<div class="ui fluid teal button">Learn more <i class="icon right-open"></i></div>
</div>
<div class="five wide column">
<div class="ui message">
<h2 class="ui header"><i class="icon easel"></i> See UI elements</h2>
<p>See some of the UI elements that the Semantic library has to offer.</p>
<div class="ui fluid red button">View Library <i class="icon right-open"></i></div>
</div>
<h2 class="ui header"><i class="icon easel"></i> See UI elements</h2>
<p>See some of the UI elements that the Semantic library has to offer.</p>
<div class="ui fluid red button">View Library <i class="icon right-open"></i></div>
</div>
</div>
<div class="row">
<div class="five wide column">
<div class="ui message">
<h2 class="ui header"><i class="icon terminal"></i> Author Elements </h2>
<p>Learn about developing and releasing your own skins UI skins.</p>
<div class="ui fluid green button">Authoring Guide <i class="icon right-open"></i></div>
</div>
<h2 class="ui header"><i class="icon terminal"></i> Author Elements </h2>
<p>Learn about developing and releasing your own skins UI skins.</p>
<div class="ui fluid green button">Authoring Guide <i class="icon right-open"></i></div>
</div>
<div class="seven wide column">
<div class="ui message">
<h2 class="ui header"><i class="icon edit"></i> Help Write the Spec </h2>
<p>Semantic is a living spec. We need the communitys help to reach our full potential. Help Semantic develop specifications for missing UI elements.</p>
<div class="ui fluid blue button">Contribute <i class="icon right-open"></i></div>
</div>
</div>
</div>
</div>

2
node/src/files/components/semantic/src/collections/message.css

@ -45,7 +45,7 @@
/* block with paragraphs */
.ui.message p {
opacity: 0.85;
margin: 1em 0em;
margin: 1em 0em 0em;
}
.ui.message p:first-child {
margin-top: 0em;

Loading…
Cancel
Save