the rules are in a list

the list is on the right
nothing else in this comit
This commit is contained in:
Albuswolvrick 2023-01-21 14:19:25 +01:00
parent a866fc9a50
commit c68f4e4e8f
2 changed files with 16 additions and 22 deletions

View file

@ -2,26 +2,17 @@
<div class="rules_headline"> <div class="rules_headline">
<h3>Rules</h3> <h3>Rules</h3>
</div> </div>
<div class="rules_text"> <ul type="1" class="rules_list">
<text> <li>nudes are forbidden!</li>
nudes are forbiden! <li>nacket pictures are forbidden!</li>
</text> <li>no political statements!</li>
<text> <li>Trees are nice!</li>
nacket pictures are Forbiden! <li>Cats are nice!</li>
</text> <li>Be mentely Unstable!:-)</li>
<text> </ul>
no political statments!
</text>
<text>
Trees are nice!
</text>
<text>
Cats are nice!
</text>
<text>
Be mentely Unstable!:-)
</text>
</div>
@code { @code {

View file

@ -1,8 +1,11 @@
.rules_headline{ .rules_headline{
text-align: center; text-align: center;
font-weight: 1000;
/*the text have to be in a biger Pixel number I do not know how to do it */ /*the text have to be in a biger Pixel number I do not know how to do it */
} }
.rules_text{ .rules_list{
text-align: center; display:block;
ont-size: 30px;
font-weight: 60 ;
/*the text sice can stay like it is, if you do not want to change it.*/ /*the text sice can stay like it is, if you do not want to change it.*/
} }