This commit is contained in:
Yann Esposito (Yogsototh) 2022-09-27 15:55:36 +02:00
parent 575838f1a0
commit fcca77e222
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646
3 changed files with 41 additions and 35 deletions

2
brut.min.css vendored

File diff suppressed because one or more lines are too long

View file

@ -95,7 +95,7 @@
<div class="col c4"> <div class="col c4">
<div class="card"> <div class="card">
<h3>Big</h3> <h3>Big</h3>
<div class="col center"> <div class="col">
<a class="btn std big ">btn std</a> <a class="btn std big ">btn std</a>
<a class="btn std big info">btn std info</a> <a class="btn std big info">btn std info</a>
<a class="btn std big ok">btn std ok</a> <a class="btn std big ok">btn std ok</a>
@ -120,7 +120,9 @@
</div> </div>
<h1>Messages</h1> <h1>Messages</h1>
<div class="messages"> <div class="row">
<div class="col c6">
<h2>Basic Messages</h2>
<div class="msg"> <div class="msg">
<strong>Normal Message</strong> <strong>Normal Message</strong>
This is a normal message with <code>msg</code>. This is a normal message with <code>msg</code>.
@ -141,6 +143,9 @@
<strong><i class="ico"></i> Error</strong> <strong><i class="ico"></i> Error</strong>
This is done by adding <code>err</code> to the class. This is done by adding <code>err</code> to the class.
</div> </div>
</div>
<div class="col c6">
<h2>Strong Alerts</h2>
<div class="msg attention"> <div class="msg attention">
<strong>Attention</strong> <strong>Attention</strong>
This is done by adding <code>attention</code> to the class. This is done by adding <code>attention</code> to the class.
@ -153,11 +158,12 @@
<strong>Black</strong> <strong>Black</strong>
This is done by adding <code>black</code> to the class. This is done by adding <code>black</code> to the class.
</div> </div>
</div>
</div>
<pre>&lt;div class="msg"&gt; <pre>&lt;div class="msg"&gt;
&lt;strong&gt;Alert headline!&lt;/strong&gt; &lt;strong&gt;Alert headline!&lt;/strong&gt;
Message text Message text
&lt;/div&gt;</pre> &lt;/div&gt;</pre>
</div>
<div> <div>
<h1>Forms</h1> <h1>Forms</h1>

View file

@ -10,7 +10,7 @@
.col { .col {
display: flex; display: flex;
flex-direction: column; flex-direction: column;
justify-content: space-evenly; justify-content: flex-start;
align-items: stretch; align-items: stretch;
flex-wrap: wrap; flex-wrap: wrap;
} }