mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-10 17:58:20 +00:00
54 lines
1.5 KiB
CSS
54 lines
1.5 KiB
CSS
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700;800&display=swap");
|
|
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200;300;400;500;600;700&display=swap');
|
|
h1, h2, h3, h4 {
|
|
font-weight: normal;
|
|
color: #7cbf33;
|
|
background: -webkit-linear-gradient(0deg, #7cbf33, #049344);
|
|
background-clip: border-box;
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
}
|
|
.sidebar-brand-text {
|
|
font-size: 1rem;
|
|
}
|
|
.blockbutton {
|
|
max-width: 500px;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
text-align: center;
|
|
}
|
|
.blockbutton a {
|
|
display: block;
|
|
padding-top: 15px;
|
|
padding-bottom: 15px;
|
|
border-radius: 5px;
|
|
background: #40b74c;
|
|
width: 100%;
|
|
height: 100%;
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
.blockbutton a:hover {
|
|
background: #70ba35;
|
|
}
|
|
section img {
|
|
display: block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
|
|
border-radius: 5px;
|
|
}
|
|
.py.class {
|
|
/* Make it clearer which signatures are part of a class */
|
|
border-left: 3px solid var(--color-brand-primary);
|
|
}
|
|
.py.function, .py.method {
|
|
/* Make it clearer which signatures are part of a method or function */
|
|
border-left: 3px solid var(--color-background-item);
|
|
}
|
|
.field-list > dt {
|
|
/* Clearly distinguish parameters otherwise it looks like a wall of text */
|
|
color: var(--color-brand-content);
|
|
font-style: italic;
|
|
}
|