mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 16:08:25 +01:00
48 lines
1.2 KiB
CSS
48 lines
1.2 KiB
CSS
/*
|
|
|
|
This Source Code Form is subject to the terms of the GNU General Public License:
|
|
|
|
Copyright (C) 2021-2022 POKETUBE (https://github.com/iamashley0/poketube)
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see https://www.gnu.org/licenses/.
|
|
|
|
*/
|
|
nav {
|
|
background: #0f0b0b;
|
|
}
|
|
|
|
nav .right {
|
|
display: flex;
|
|
border-radius: 5px;
|
|
justify-content: normal;
|
|
padding-left: 0px;
|
|
align-items: center;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
nav .left {
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
border-radius: 5px;
|
|
padding-left: 0px;
|
|
margin-right: 40px;
|
|
}
|
|
|
|
nav .middle {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border-radius: 5px;
|
|
}
|