mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-03 12:17:20 +02:00
* Revise doc on writing docs * More work on docs doc * misc(v2): tweak docs * misc(v2): fix typo
67 lines
887 B
CSS
67 lines
887 B
CSS
.container {
|
|
border: 3px solid var(--ifm-color-emphasis-alpha-10);
|
|
border-top-left-radius: 4px;
|
|
border-top-right-radius: 4px;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
background: var(--ifm-color-emphasis-alpha-10);
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.row:after {
|
|
content: '';
|
|
display: table;
|
|
clear: both;
|
|
}
|
|
|
|
.column {
|
|
float: left;
|
|
}
|
|
|
|
.left {
|
|
width: 15%;
|
|
}
|
|
|
|
.right {
|
|
align-self: center;
|
|
width: 10%;
|
|
}
|
|
|
|
.middle {
|
|
width: 75%;
|
|
}
|
|
|
|
.dot {
|
|
margin-right: 6px;
|
|
margin-top: 4px;
|
|
height: 12px;
|
|
width: 12px;
|
|
background-color: #bbb;
|
|
border-radius: 50%;
|
|
display: inline-block;
|
|
}
|
|
|
|
input[type='text'] {
|
|
width: 100%;
|
|
border-radius: 12.5px;
|
|
border: none;
|
|
background-color: white;
|
|
margin-top: -8px;
|
|
height: 25px;
|
|
color: #666;
|
|
padding: 5px 15px;
|
|
}
|
|
|
|
.bar {
|
|
width: 17px;
|
|
height: 3px;
|
|
background-color: #aaa;
|
|
margin: 3px 0;
|
|
display: block;
|
|
}
|
|
|
|
.content {
|
|
padding: 1rem;
|
|
}
|