Init
This commit is contained in:
164
Prefab.Web/wwwroot/template/documentation/css/style.css
Normal file
164
Prefab.Web/wwwroot/template/documentation/css/style.css
Normal file
@@ -0,0 +1,164 @@
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: "Roboto", sans-serif;
|
||||
font-size: 15px;
|
||||
line-height: 1;
|
||||
color: #262626;
|
||||
}
|
||||
|
||||
a {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
}
|
||||
|
||||
td, th {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.docs-markup {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.docs-nav {
|
||||
position: fixed;
|
||||
background-color: #333;
|
||||
color: #fff;
|
||||
width: 220px;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.docs-nav__logo {
|
||||
padding: 25px 15px 35px;
|
||||
}
|
||||
|
||||
.docs-nav__links {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.docs-nav__link {
|
||||
padding: 10px 15px;
|
||||
display: block;
|
||||
}
|
||||
.docs-nav__link:hover, .docs-nav__link--current {
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
}
|
||||
.docs-nav__link--current {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.docs-content {
|
||||
margin: 0 auto;
|
||||
height: 100%;
|
||||
width: 640px;
|
||||
}
|
||||
|
||||
.docs-section {
|
||||
margin: 0;
|
||||
min-height: 100%;
|
||||
box-sizing: border-box;
|
||||
padding: 120px 0;
|
||||
}
|
||||
|
||||
.docs-section__title {
|
||||
margin: 0 0 50px;
|
||||
font-size: 42px;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.docs-typography {
|
||||
font-size: 16px;
|
||||
line-height: 1.625;
|
||||
position: relative;
|
||||
}
|
||||
.docs-typography a {
|
||||
color: #e8175d;
|
||||
}
|
||||
.docs-typography figure {
|
||||
margin: 45px 0;
|
||||
}
|
||||
.docs-typography figure img {
|
||||
display: block;
|
||||
position: relative;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
}
|
||||
.docs-typography figure figcaption {
|
||||
margin-top: 15px;
|
||||
text-align: center;
|
||||
font-size: 13px;
|
||||
color: #808080;
|
||||
}
|
||||
.docs-typography code:not(.hljs) {
|
||||
padding: 0 4px;
|
||||
border-radius: 1.5px;
|
||||
background-color: #ebebeb;
|
||||
color: #595959;
|
||||
}
|
||||
.docs-typography pre code:not(.hljs) {
|
||||
display: block;
|
||||
font-size: 13px;
|
||||
background-color: #ebebeb;
|
||||
border-radius: 1.5px;
|
||||
color: #595959;
|
||||
padding: 4px 10px;
|
||||
}
|
||||
.docs-typography code.hljs {
|
||||
background-color: #f5f5f5;
|
||||
font-size: 13px;
|
||||
border-radius: 1.5px;
|
||||
padding: 4px 10px;
|
||||
}
|
||||
.docs-typography table, .docs-typography td, .docs-typography th {
|
||||
border: 1px solid #d9d9d9;
|
||||
}
|
||||
.docs-typography th {
|
||||
background-color: #f2f2f2;
|
||||
}
|
||||
.docs-typography td, .docs-typography th {
|
||||
padding: 6px 14px;
|
||||
}
|
||||
|
||||
.docs-alert {
|
||||
background-color: #bfdaff;
|
||||
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
||||
border-radius: 2px;
|
||||
padding: 10px 15px 9px 15px;
|
||||
color: #566273;
|
||||
margin: 20px 0;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
.docs-meta {
|
||||
box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
|
||||
border-radius: 2px;
|
||||
padding: 10px 18px 9px 18px;
|
||||
margin: 20px 0;
|
||||
font-size: 14px;
|
||||
line-height: 24px;
|
||||
list-style: none;
|
||||
background-color: #ebebeb;
|
||||
color: #595959;
|
||||
}
|
||||
|
||||
.docs-logo {
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
.docs-logo__accent {
|
||||
fill: #ff4c79;
|
||||
}
|
||||
/*# sourceMappingURL=style.css.map */
|
||||
Reference in New Issue
Block a user