-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e4cc66b
commit 48fed42
Showing
1,547 changed files
with
91,648 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,283 @@ | ||
/* | ||
* This file is part of PremiereLu. | ||
* | ||
* Copyright (c) 2017 Benoît FRISCH | ||
* | ||
* PremiereLu 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. | ||
* | ||
* PremiereLu 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 PremiereLu If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
@import url('https://fonts.googleapis.com/css2?family=Overpass+Mono:wght@300;400;600;700&family=Overpass:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap'); | ||
|
||
html, | ||
body { | ||
overflow-x: hidden; /* Prevent scroll on narrow devices */ | ||
} | ||
|
||
body { | ||
padding-top: 50px; | ||
padding-bottom: 40px; | ||
} | ||
|
||
h1 { | ||
font-size: 24px; | ||
} | ||
|
||
h2 { | ||
font-size: 18px; | ||
} | ||
|
||
.main { | ||
padding-left: 10px; | ||
padding-right: 10px; | ||
} | ||
|
||
.mobile { | ||
padding-left: 20px; | ||
padding-right: 20px; | ||
} | ||
|
||
.credits-normal { | ||
font-family: 'Overpass', sans-serif; | ||
color: #ffffff; | ||
} | ||
|
||
.credits { | ||
font-family: 'Overpass Mono', monospace; | ||
color: #ffffff; | ||
} | ||
|
||
/* Custom container */ | ||
.container-narrow { | ||
margin: 0 auto; | ||
max-width: 800px; | ||
} | ||
|
||
@media screen and (min-width: 767px) { | ||
body { | ||
padding-top: 75px; | ||
} | ||
|
||
.container-fluid { | ||
width: 900px; | ||
} | ||
} | ||
|
||
html { | ||
position: relative; | ||
min-height: 100%; | ||
} | ||
|
||
.footer { | ||
position: absolute; | ||
bottom: 0; | ||
width: 100%; | ||
/* Set the fixed height of the footer here */ | ||
height: 60px; | ||
background-color: #192e52; | ||
} | ||
|
||
.container { | ||
width: auto; | ||
max-width: 680px; | ||
padding: 0 10px; | ||
} | ||
|
||
.container .text-muted { | ||
margin: 20px 0; | ||
color: #ffffff; | ||
} | ||
|
||
/* navbar */ | ||
.navbar-default { | ||
background-color: #f5a431; | ||
border-color: #f5a431; | ||
|
||
} | ||
|
||
/* title */ | ||
.navbar-default .navbar-brand { | ||
color: #fff; | ||
} | ||
|
||
.navbar-default .navbar-brand:hover, | ||
.navbar-default .navbar-brand:focus { | ||
color: #fff; | ||
} | ||
|
||
/* link */ | ||
.navbar-default .navbar-nav > li > a { | ||
color: #fff; | ||
} | ||
|
||
.navbar-default .navbar-nav > li > a:hover, | ||
.navbar-default .navbar-nav > li > a:focus { | ||
color: #333; | ||
} | ||
|
||
.navbar-default .navbar-nav > .active > a, | ||
.navbar-default .navbar-nav > .active > a:hover, | ||
.navbar-default .navbar-nav > .active > a:focus { | ||
color: #f5a431; | ||
background-color: #f5a431; | ||
} | ||
|
||
.navbar-default .navbar-nav > .open > a, | ||
.navbar-default .navbar-nav > .open > a:hover, | ||
.navbar-default .navbar-nav > .open > a:focus { | ||
color: #fff; | ||
background-color: #f5a431; | ||
} | ||
|
||
/* caret */ | ||
.navbar-default .navbar-nav > .dropdown > a .caret { | ||
border-top-color: #fff; | ||
border-bottom-color: #fff; | ||
} | ||
|
||
.navbar-default .navbar-nav > .dropdown > a:hover .caret, | ||
.navbar-default .navbar-nav > .dropdown > a:focus .caret { | ||
border-top-color: #333; | ||
border-bottom-color: #333; | ||
} | ||
|
||
.navbar-default .navbar-nav > .open > a .caret, | ||
.navbar-default .navbar-nav > .open > a:hover .caret, | ||
.navbar-default .navbar-nav > .open > a:focus .caret { | ||
border-top-color: #555; | ||
border-bottom-color: #555; | ||
} | ||
|
||
/* mobile version */ | ||
.navbar-default .navbar-toggle { | ||
border-color: #f5a431; | ||
} | ||
|
||
.navbar-default .navbar-toggle:hover, | ||
.navbar-default .navbar-toggle:focus { | ||
background-color: #ddd; | ||
} | ||
|
||
.navbar-default .navbar-toggle .icon-bar { | ||
background-color: #ccc; | ||
} | ||
|
||
@media (max-width: 767px) { | ||
.navbar-default .navbar-nav .open .dropdown-menu > li > a { | ||
color: #a5a5a5; | ||
} | ||
|
||
.navbar-default .navbar-nav .open .dropdown-menu > li > a:hover, | ||
.navbar-default .navbar-nav .open .dropdown-menu > li > a:focus { | ||
color: #a5a5a5; | ||
} | ||
} | ||
|
||
.navbar-toggle { | ||
border: none; | ||
background: transparent !important; | ||
} | ||
|
||
.navbar-toggle:hover { | ||
background: transparent !important; | ||
} | ||
|
||
.navbar-toggle .icon-bar { | ||
width: 22px; | ||
transition: all 0.2s; | ||
} | ||
|
||
.navbar-toggle .top-bar { | ||
transform: rotate(45deg); | ||
transform-origin: 10% 10%; | ||
} | ||
|
||
.navbar-toggle .middle-bar { | ||
opacity: 0; | ||
} | ||
|
||
.navbar-toggle .bottom-bar { | ||
transform: rotate(-45deg); | ||
transform-origin: 10% 90%; | ||
} | ||
|
||
.navbar-toggle.collapsed .top-bar { | ||
transform: rotate(0); | ||
} | ||
|
||
.navbar-toggle.collapsed .middle-bar { | ||
opacity: 1; | ||
} | ||
|
||
.navbar-toggle.collapsed .bottom-bar { | ||
transform: rotate(0); | ||
} | ||
|
||
.navbar-default .navbar-toggle .icon-bar { | ||
background-color: white; | ||
} | ||
|
||
.sidebar { | ||
position: fixed; | ||
z-index: 1000; | ||
} | ||
|
||
.footer { | ||
z-index: 2000; | ||
} | ||
|
||
/* | ||
* Off Canvas | ||
* -------------------------------------------------- | ||
*/ | ||
@media screen and (max-width: 767px) { | ||
.row-offcanvas { | ||
position: relative; | ||
-webkit-transition: all .25s ease-out; | ||
-o-transition: all .25s ease-out; | ||
transition: all .25s ease-out; | ||
} | ||
|
||
.row-offcanvas-right { | ||
right: 0; | ||
} | ||
|
||
.row-offcanvas-left { | ||
left: 0; | ||
} | ||
|
||
.row-offcanvas-right | ||
.sidebar-offcanvas { | ||
right: -50%; /* 6 columns */ | ||
} | ||
|
||
.row-offcanvas-left | ||
.sidebar-offcanvas { | ||
left: -50%; /* 6 columns */ | ||
} | ||
|
||
.row-offcanvas-right.active { | ||
right: 50%; /* 6 columns */ | ||
} | ||
|
||
.row-offcanvas-left.active { | ||
left: 50%; /* 6 columns */ | ||
} | ||
|
||
.sidebar-offcanvas { | ||
position: absolute; | ||
top: 0; | ||
padding-top: 20px; | ||
width: 50%; /* 6 columns */ | ||
} | ||
} | ||
|
Binary file not shown.
Oops, something went wrong.