coriolis/documentation/output/theme/css/coriolis.css

163 lines
3.3 KiB
CSS
Raw Normal View History

/* Boostrap customization. */
.header-container {
min-height: 100px;
margin: 0;
margin-top: -24px;
}
.header-nav > .nav > div.dropdown > button {
font-weight: bold;
}
.header-nav > .nav > div.dropdown > .dropdown-menu {
background-color: rgba(0.14, 0.40, 0.53, 0.7);
/*background-color: #356689;*/
}
.header-nav > .nav > div.dropdown > .dropdown-menu a {
text-transform: none;
margin-left: 4px;
}
.header-nav > .nav > div.dropdown > .dropdown-menu a:hover {
background-color: black;
}
/* ReST customization. */
.content p, .content ul > li {
text-align: justify;
}
p.credit {
margin-left: 10%;
margin-right: 10%;
font-size: 110%;
}
p.credit span.left {
float: left;
/*white-space: nowrap;*/
}
p.credit span.right {
float: right;
/*white-space: nowrap;*/
}
.sc {
font-variant: small-caps;
font-size: 120%;
}
Migration towards Python3, first stage: still based on C-Macros. * New: Python/C++ API level: * Write a new C++/template wrapper to get rid of boost::python * The int & long Python type are now merged. So a C/C++ level, it became "PyLong_X" (remove "PyInt_X") and at Python code level, it became "int" (remove "long"). * Change: VLSISAPD finally defunct. * Configuration is now integrated as a Hurricane component, makes use of the new C++/template wrapper. * vlsisapd is now defunct. Keep it in the source for now as some remaining non essential code may have to be ported in the future. * Note: Python code (copy of the migration howto): * New print function syntax print(). * Changed "dict.has_key(k)" for "k" in dict. * Changed "except Exception, e" for "except Exception as e". * The division "/" is now the floating point division, even if both operand are integers. So 3/2 now gives 1.5 and no longer 1. The integer division is now "//" : 1 = 3//2. So have to carefully review the code to update. Most of the time we want to use "//". We must never change to float for long that, in fact, represents DbU (exposed as Python int type). * execfile() must be replaced by exec(open("file").read()). * iter().__next__() becomes iter(x).__next__(). * __getslice__() has been removed, integrated to __getitem__(). * The formating used for str(type(o)) has changed, so In Stratus, have to update them ("<class 'MyClass'>" instead of "MyClass"). * the "types" module no longer supply values for default types like str (types.StringType) or list (types.StringType). Must use "isinstance()" where they were occuring. * Remove the 'L' to indicate "long integer" (like "12L"), now all Python integer are long. * Change in bootstrap: * Ported Coriolis builder (ccb) to Python3. * Ported Coriolis socInstaller.py to Python3. * Note: In PyQt4+Python3, QVariant no longer exists. Use None or directly convert using the python syntax: bool(x), int(x), ... By default, it is a string (str). * Note: PyQt4 bindings & Python3 under SL7. * In order to compile user's must upgrade to my own rebuild of PyQt 4 & 5 bindings 4.19.21-1.el7.soc. * Bug: In cumulus/plugins.block.htree.HTree.splitNet(), set the root buffer of the H-Tree to the original signal (mainly: top clock). Strangely, it was only done when working in full chip mode.
2021-09-19 12:41:24 -05:00
.cb {
font-weight: bold;
font-family: "courrier", "andale mono", monospace;
}
div#contents {
background-color: white;
border-left: 3px solid rgba(235,35,68,1);
padding: 15px;
}
@media (min-width: 1200px) {
div#contents {
/*position: absolute;*/
position: fixed;
float: left;
top: 260px;
left: 20px;
}
}
div#contents p.topic-title {
font-size: 16px;
line-height: 1.285714285714286em;
font-weight: 600;
letter-spacing: 2px;
text-transform: uppercase;
}
div#contents ul {
padding-left: 15px;
list-style: none;
}
div#contents ul > li > a {
font-size: 12px;
line-height: 1.285714285714286em;
font-weight: 600;
}
/*
#sidebar.affix-top {
position: fixed;
margin-top: 260px;
left: 2%;
background-color: red;
}
#sidebar.affix {
top: 10%;
left: 2%;
}
*/
div.note {
/*
margin: 8px 2% 0px 2%;
border: 1px none #ffbb44;
border-left-width: 4px;
border-left-style: solid;
padding: 1px 10pt 1px 55px;
background: #ffdd66 url('../_static/images/clipboard.png') no-repeat 0% 50%;;
font-size: 90%
*/
Migration towards Python3, first stage: still based on C-Macros. * New: Python/C++ API level: * Write a new C++/template wrapper to get rid of boost::python * The int & long Python type are now merged. So a C/C++ level, it became "PyLong_X" (remove "PyInt_X") and at Python code level, it became "int" (remove "long"). * Change: VLSISAPD finally defunct. * Configuration is now integrated as a Hurricane component, makes use of the new C++/template wrapper. * vlsisapd is now defunct. Keep it in the source for now as some remaining non essential code may have to be ported in the future. * Note: Python code (copy of the migration howto): * New print function syntax print(). * Changed "dict.has_key(k)" for "k" in dict. * Changed "except Exception, e" for "except Exception as e". * The division "/" is now the floating point division, even if both operand are integers. So 3/2 now gives 1.5 and no longer 1. The integer division is now "//" : 1 = 3//2. So have to carefully review the code to update. Most of the time we want to use "//". We must never change to float for long that, in fact, represents DbU (exposed as Python int type). * execfile() must be replaced by exec(open("file").read()). * iter().__next__() becomes iter(x).__next__(). * __getslice__() has been removed, integrated to __getitem__(). * The formating used for str(type(o)) has changed, so In Stratus, have to update them ("<class 'MyClass'>" instead of "MyClass"). * the "types" module no longer supply values for default types like str (types.StringType) or list (types.StringType). Must use "isinstance()" where they were occuring. * Remove the 'L' to indicate "long integer" (like "12L"), now all Python integer are long. * Change in bootstrap: * Ported Coriolis builder (ccb) to Python3. * Ported Coriolis socInstaller.py to Python3. * Note: In PyQt4+Python3, QVariant no longer exists. Use None or directly convert using the python syntax: bool(x), int(x), ... By default, it is a string (str). * Note: PyQt4 bindings & Python3 under SL7. * In order to compile user's must upgrade to my own rebuild of PyQt 4 & 5 bindings 4.19.21-1.el7.soc. * Bug: In cumulus/plugins.block.htree.HTree.splitNet(), set the root buffer of the H-Tree to the original signal (mainly: top clock). Strangely, it was only done when working in full chip mode.
2021-09-19 12:41:24 -05:00
margin: 8px 10% 8px 2%;
/*padding: 10px 5pt 1px 35px;*/
padding: 1px 10px 5px 35px;
border-left: 4px solid #f6b73c;
background: #fff3d4;
font-size: 90%
}
div.note > p.admonition-title {
font-family: "courrier", "andale mono", monospace;
font-weight: bold;
font-size: 110%
}
div.note::before
{
/*
*position: relative;
*top: 1px;
*display: inline-block;
*font-family: 'Glyphicons Halflings';
*font-style: normal;
*font-weight: 400;
*line-height: 1;
*-webkit-font-smoothing: antialiased;
*-moz-osx-font-smoothing: grayscale;
*/
font-family: 'FontAwesome';
content: "";
font-size: 200%;
float: left;
margin: 15px 0px 0px -30px;
*-webkit-font-smoothing: antialiased;
*-moz-osx-font-smoothing: grayscale;
}
td, th {
padding-left: 10px;
padding-right: 10px;
}
.content td img {
margin-top: 0px;
margin-bottom: 0px;
}