-
Notifications
You must be signed in to change notification settings - Fork 0
[Don't Merge] basic structure #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
debuggingfuture
wants to merge
18
commits into
master
Choose a base branch
from
site-prototype
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
a0b7e87
basic structure
debuggingfuture 6e38bf3
minor
debuggingfuture 61345b4
Added gitignore
1b4ebad
Added gitignore
23e19a9
Added splash and dashboard
355490c
Fixed some wording and typeface
782e94f
add react
debuggingfuture 5426816
merge
debuggingfuture 3e05c3b
Fixed welcome and vision WIP
359e0c0
Added icon, refactored a bit
9efa682
Added ignore node_modules
5b15002
Completed vision part
ef6db6b
Added Manifesto unstyled
1904edc
Added manifesto style
64b6c44
Added footer and curators
88638db
Added manifesto and curators chinese
6d25483
Changed wordings
03a67ec
Finialized basic version
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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,7 @@ | ||
| .DS_Store | ||
|
|
||
| .idea/ | ||
|
|
||
| components/ | ||
| build/ | ||
| node_modules/ |
This file contains hidden or 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 |
|---|---|---|
| @@ -1,2 +1,5 @@ | ||
| # www.code4.hk | ||
| website for the community. Version 2. | ||
|
|
||
|
|
||
| component build |
This file contains hidden or 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 @@ | ||
| { | ||
| "name": "code4hk", | ||
| "description": "www.code4.hk", | ||
| "version": "0.0.1", | ||
| "keywords": [ | ||
| "shim", | ||
| "react" | ||
| ], | ||
| "scripts": [ | ||
| "index.js" | ||
| ], | ||
| "styles": [ | ||
| "index.css" | ||
| ], | ||
| "dependencies": { | ||
| "components/modernizr": "*", | ||
| "necolas/normalize.css": "^3.0.2" | ||
| }, | ||
| "locals": ["vendor/semantic"], | ||
| "paths": ["./", "../"] | ||
| } | ||
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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,115 @@ | ||
| /** | ||
| Color palatte chosen: http://paletton.com/palette.php?uid=3000W0kiarSaZLgeHyIllmpoAg5 | ||
| */ | ||
| #home { | ||
| color: #303030; | ||
| } | ||
|
|
||
| #home .welcome { | ||
| background-image: url('/images/background.jpg'); | ||
| background-size: cover; | ||
| padding:252px 140px; | ||
| margin-bottom: 66px; | ||
| } | ||
|
|
||
| #home .sub-header { | ||
| margin-top:40px; | ||
| text-align: center; | ||
| font-size: 1.777rem; | ||
| } | ||
|
|
||
| #home .header { | ||
| margin-top:40px; | ||
| text-align: center; | ||
| font-size: 2.369rem; | ||
| font-weight: 900; | ||
| letter-spacing: 1.33px; | ||
| } | ||
|
|
||
| .header-logo { | ||
| max-width:5rem; | ||
| } | ||
|
|
||
| #home>.propaganda { | ||
| max-width: 960px; | ||
| margin:0 auto; | ||
| } | ||
|
|
||
| .propaganda .icon-container { | ||
| font-size: 3.998rem; | ||
| text-align: center; | ||
| } | ||
|
|
||
| .propaganda .ui.header { | ||
| text-align: center; | ||
| } | ||
|
|
||
| #vision-community .icon { | ||
| color : #de6061; | ||
| } | ||
| #vision-civichacking .icon { | ||
| color : #B0B23B; | ||
| } | ||
| #vision-opengov .icon { | ||
| color : #496194; | ||
| } | ||
|
|
||
| .code4hk-header { | ||
| width:310px; | ||
| } | ||
|
|
||
| .code4hk-tagline { | ||
| color: #fefefe; | ||
| letter-spacing : 1.4px; | ||
| } | ||
|
|
||
| section { | ||
| background-color: #f9f9f9; | ||
| } | ||
|
|
||
| #home .stripe { | ||
| background-color: #d8d8d8; | ||
| padding: 10em 0px; | ||
| border-radius: 0em; | ||
| margin: 0em; | ||
| -webkit-transform: translate3d(0, 0, 0); | ||
| transform: translate3d(0, 0, 0); | ||
| } | ||
|
|
||
| #home>.manifesto { | ||
| max-width: 960px; | ||
| margin: 0 auto; | ||
| } | ||
|
|
||
| .manifesto ul { | ||
| margin-bottom: 1.5rem; | ||
| } | ||
| .manifesto p { | ||
| margin-bottom:0px; | ||
| } | ||
|
|
||
| #home .curators { | ||
| margin: 0 auto; | ||
| max-width: 960px; | ||
| } | ||
|
|
||
| .curators img.ui.medium.image { | ||
| width : 130px; | ||
| height: 130px; | ||
| margin: 0 auto; | ||
| } | ||
|
|
||
| .curators .name { | ||
| font-size: 1.333rem; | ||
| margin:15px 0px 10px 0px; | ||
| text-align: center; | ||
| } | ||
|
|
||
| footer { | ||
| text-align: center; | ||
| font-style: italic; | ||
| color: #999999; | ||
| letter-spacing: 2px; | ||
| margin-top: 40px; | ||
| padding: 25px; | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
react??