mirror of
https://github.com/ThePhD/sol2.git
synced 2024-03-22 13:10:44 +08:00
merge in some of #20 for now, add sidebars
This commit is contained in:
parent
b43f4eea80
commit
258ae82720
|
@ -1,12 +1,8 @@
|
||||||
.rst-content
|
.rst-content
|
||||||
// sometimes people provide sizing in their rst, while will break the responsive layout
|
// sometimes people provide sizing in their rst, while will break the responsive layout
|
||||||
// - the role/directive does. there is no workaround for that. it's true the output of
|
|
||||||
// rst is not aiding to designers, however it can be depended on that ::image, ::figure
|
|
||||||
// and ::aafig is going to output dimensions (either via style="" or width/height in html)
|
|
||||||
img
|
img
|
||||||
max-width: none
|
max-width: 100%
|
||||||
// max-width: 100% // causes img in ::sidebar to take up space
|
height: auto !important
|
||||||
// height: auto !important // makes ::aafig directives stretch
|
|
||||||
.section > img
|
.section > img
|
||||||
margin-bottom: $base-line-height
|
margin-bottom: $base-line-height
|
||||||
.note, .attention, .caution, .danger, .error, .hint, .important, .tip, .warning
|
.note, .attention, .caution, .danger, .error, .hint, .important, .tip, .warning
|
||||||
|
@ -56,6 +52,28 @@
|
||||||
&:hover .headerlink
|
&:hover .headerlink
|
||||||
display: inline-block
|
display: inline-block
|
||||||
|
|
||||||
|
.sidebar
|
||||||
|
float: right
|
||||||
|
width: 40%
|
||||||
|
display: block
|
||||||
|
margin: 0 0 $base-line-height $base-line-height
|
||||||
|
padding: $base-line-height
|
||||||
|
background: $table-stripe-color
|
||||||
|
border: solid 1px $table-border-color
|
||||||
|
p, ul, dl
|
||||||
|
font-size: 90%
|
||||||
|
.last
|
||||||
|
margin-bottom: 0
|
||||||
|
.sidebar-title
|
||||||
|
display: block
|
||||||
|
font-family: $custom-font-family
|
||||||
|
font-weight: bold
|
||||||
|
background: $table-border-color
|
||||||
|
padding: $base-line-height / 4 $base-line-height / 2
|
||||||
|
margin: -$base-line-height
|
||||||
|
margin-bottom: $base-line-height
|
||||||
|
font-size: 100%
|
||||||
|
|
||||||
table.docutils
|
table.docutils
|
||||||
@extend .wy-table
|
@extend .wy-table
|
||||||
@extend .wy-table-bordered-all
|
@extend .wy-table-bordered-all
|
||||||
|
@ -72,72 +90,9 @@
|
||||||
.field-body
|
.field-body
|
||||||
text-align: left
|
text-align: left
|
||||||
padding-left: 0
|
padding-left: 0
|
||||||
/* -- code displays ---------------------------------------------------------
|
|
||||||
|
|
||||||
div[class^='highlight']
|
|
||||||
// override width: 100% from another sass file
|
|
||||||
// 100% makes code-block:: that up .sidebar space
|
|
||||||
width: auto
|
|
||||||
|
|
||||||
pre
|
|
||||||
overflow: auto
|
|
||||||
overflow-y: hidden
|
|
||||||
/* fixes display issues on Chrome browsers
|
|
||||||
|
|
||||||
td.linenos pre
|
|
||||||
padding: 5px 0px
|
|
||||||
border: 0
|
|
||||||
background-color: transparent
|
|
||||||
color: #aaa
|
|
||||||
|
|
||||||
table.highlighttable
|
|
||||||
margin-left: 0.5em
|
|
||||||
td
|
|
||||||
padding: 0 0.5em 0 0.5em
|
|
||||||
|
|
||||||
tt
|
|
||||||
&.descname
|
|
||||||
background-color: transparent
|
|
||||||
font-weight: bold
|
|
||||||
font-size: 1.2em
|
|
||||||
&.descclassname
|
|
||||||
background-color: transparent
|
|
||||||
&.xref
|
|
||||||
background-color: transparent
|
|
||||||
font-weight: bold
|
|
||||||
|
|
||||||
a tt
|
|
||||||
background-color: transparent
|
|
||||||
font-weight: bold
|
|
||||||
|
|
||||||
h1 tt, h2 tt, h3 tt, h4 tt, h5 tt, h6 tt
|
|
||||||
background-color: transparent
|
|
||||||
|
|
||||||
.viewcode-link
|
|
||||||
float: right
|
|
||||||
|
|
||||||
.viewcode-back
|
|
||||||
float: right
|
|
||||||
font-family: sans-serif
|
|
||||||
|
|
||||||
div.viewcode-block:target
|
|
||||||
margin: -1px -10px
|
|
||||||
padding: 0 10px
|
|
||||||
|
|
||||||
/* -- sidebars --------------------------------------------------------------
|
|
||||||
|
|
||||||
div.sidebar
|
|
||||||
margin: 0 0 0.5em 1em
|
|
||||||
padding: 7px 7px 0 7px
|
|
||||||
width: 40%
|
|
||||||
float: right
|
|
||||||
|
|
||||||
p.sidebar-title
|
|
||||||
font-weight: bold
|
|
||||||
|
|
||||||
/* -- until we find best place to apply -------------------------------------
|
|
||||||
dl
|
dl
|
||||||
dt
|
dt
|
||||||
|
@extend code
|
||||||
display: inline-block
|
display: inline-block
|
||||||
margin: $base-line-height / 4 0
|
margin: $base-line-height / 4 0
|
||||||
font-size: 80%
|
font-size: 80%
|
||||||
|
@ -160,6 +115,7 @@
|
||||||
|
|
||||||
dl dl
|
dl dl
|
||||||
dt
|
dt
|
||||||
|
@extend code
|
||||||
display: inline-block
|
display: inline-block
|
||||||
margin-bottom: $base-line-height / 4
|
margin-bottom: $base-line-height / 4
|
||||||
font-size: 80%
|
font-size: 80%
|
||||||
|
@ -193,6 +149,7 @@
|
||||||
color: $text-medium
|
color: $text-medium
|
||||||
font-size: 90%
|
font-size: 90%
|
||||||
|
|
||||||
|
+media($mobile)
|
||||||
|
.rst-content
|
||||||
|
.sidebar
|
||||||
|
width: 100%
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue
Block a user