-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Article page HTML rendering (#184)
* Article detail - UI | Introduce a CSS file to set up the layout * Article page | disable webview for content as it's way too buggy * cleaup - article view | remove redandent stuff * Style - article | add brighter colours for links
- Loading branch information
1 parent
f3a1216
commit b9cd347
Showing
3 changed files
with
61 additions
and
7 deletions.
There are no files selected for viewing
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
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,21 @@ | ||
@font-face { | ||
font-family: TextFont; | ||
src: url("file:///android_asset/Ubuntu-Medium.ttf") | ||
} | ||
img, [class^="image-"] { | ||
width: 250px; | ||
height: auto; | ||
} | ||
|
||
label { | ||
font-family: TextFont; | ||
font-size: medium; | ||
text-align: justify; | ||
} | ||
|
||
a { | ||
color: #4AC776; | ||
} | ||
* { | ||
color: #ecebeb; | ||
} |
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