forked from loklak/apps.loklak.org
-
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.
fixes loklak#298 - make apps pluggable
fixes issue loklak#298 - make apps pluggable
- Loading branch information
Showing
68 changed files
with
2,653 additions
and
58 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,52 @@ | ||
/* Move down content because we have a fixed navbar that is 50px tall */ | ||
@font-face { | ||
font-family: 'Droid Sans Mono'; | ||
font-style: normal; | ||
font-weight: 400; | ||
src: | ||
local('Droid Sans Mono'), | ||
local('DroidSansMono'), | ||
url('../fonts/DroidSansMono.eot?#iefix') format('embedded-opentype'), | ||
url('../fonts/DroidSansMono.woff') format('woff'), | ||
url('../fonts/DroidSansMono.ttf') format('truetype'), | ||
url('../fonts/DroidSansMono.svg#svgFontName') format('svg'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'MyFontFamily'; | ||
src: | ||
url('myfont-webfont.eot?#iefix') format('embedded-opentype'), | ||
url('myfont-webfont.woff') format('woff'), | ||
url('myfont-webfont.ttf') format('truetype'), | ||
url('myfont-webfont.svg#svgFontName') format('svg'); | ||
} | ||
|
||
* { | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
|
||
|
||
body { | ||
padding-top: 50px; | ||
font: Roboto; | ||
} | ||
|
||
.color-black{ | ||
color: black; | ||
} | ||
|
||
.navbar-color{ | ||
background-color: #f1f1f1; | ||
} | ||
|
||
.navbar-collapse-button{ | ||
border: 1px solid #551a8e; | ||
} | ||
|
||
.navbar-collapse-button span.icon-bar{ | ||
background-color: #551a8e; | ||
} | ||
|
||
.hidden a:visited{ | ||
color: gray; | ||
} |
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
Oops, something went wrong.