mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-10 19:54:57 +02:00
76 lines
1.3 KiB
CSS
76 lines
1.3 KiB
CSS
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
.container {
|
|
padding: 20px;
|
|
padding-top: 80px;
|
|
overflow-x: hidden;
|
|
background-color: #18191a;
|
|
color: white;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.container code {
|
|
color: white;
|
|
background-color: #444950;
|
|
}
|
|
|
|
.nav {
|
|
position: fixed;
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
height: 3.75rem;
|
|
background-color: #242526;
|
|
width: 100%;
|
|
z-index: 1;
|
|
}
|
|
|
|
.navlink {
|
|
color: white;
|
|
font-weight: 500;
|
|
font-size: clamp(12px, 4vw, 16px);
|
|
text-align: center;
|
|
border-radius: 4px;
|
|
padding: 6px;
|
|
}
|
|
|
|
.navlink:hover {
|
|
text-decoration: none;
|
|
background-color: #292a2b;
|
|
}
|
|
|
|
.active {
|
|
background-color: #363739;
|
|
}
|
|
|
|
@media screen and (min-width: 800px) {
|
|
.nav {
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
height: 100vh;
|
|
width: 200px;
|
|
float: left;
|
|
background-color: #18191a;
|
|
border-right: 1px solid #606770;
|
|
padding-top: 20px;
|
|
}
|
|
|
|
.navlink {
|
|
width: 80%;
|
|
margin-top: 20px;
|
|
text-align: left;
|
|
}
|
|
|
|
.container {
|
|
padding-top: 40px;
|
|
float: right;
|
|
width: calc(100% - 200px);
|
|
}
|
|
}
|