File size: 1,098 Bytes
7798609 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 |
'''
title: Style
'''
import simplestart as ss
ss.md("## ss.style Style Settings")
ss.space()
ss.md("#### π
Example")
ss.write("nject CSS styles into the HTML document.")
ss.html('''
<div class="test1">this is a sample1</div>
<div class="test2">this is a sample2</div>
''')
ss.style('''
.test1{
background-color:lightgray;
padding:5px;
width:150px;
margin-bottom:10px;
border:1px solid lightblue
}
.test2{
color:red;
border:1px solid lightgreen;
padding:5px;
width:150px;
}
''')
ss.space()
ss.write("#### π Code")
ss.space()
ss.md('''
```python
import simplestart as ss
ss.html(\'''
<div class="test1">this is a sample1</div>
<div class="test2">this is a sample2</div>
\''')
ss.style(\'''
.test1{
background-color:lightgray;
padding:5px;
width:150px;
margin-bottom:10px;
border:1px solid lightblue
}
.test2{
color:red;
border:1px solid lightgreen;
padding:5px;
width:150px;
}
\''')
''')
|