Skip to content
This repository has been archived by the owner on Sep 28, 2019. It is now read-only.

Feature/mvp #1

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
101 changes: 101 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
# 2017.writespeakcode.com
2017 Conference Website

## Contributing

Please take a look at our [contributing](CONTRIBUTE.md) guidelines (coming soon!).

We have volunteers who work on our website to make sure it is up-to-date for all of our events. You are welcome to work on it too!

## Installation

1. `git clone https://github.com/WriteSpeakCode/2017_conf.git`
1. Open `index_countdown.html` in your favorite browser
1. Profit!

## Create a pull request

- Create changes on a feature branch
- Submit a pull request to the `master` branch
- Ping `@jarmstrng` in a comment

## Publish

Coming soon!

<!-- Our site is deployed to Heroku. If you have rights, you can publish
the site there.

1. Ensure that your remote names match this guide. `upstream` = the official repository
and if you have a fork, it should be named `origin`.

```
$ git remote -vv

origin [email protected]:<yourname>/2016.writespeakcode.com.git (fetch)
origin [email protected]:<yourname>/2016.writespeakcode.com.git (push)
upstream [email protected]:WriteSpeakCode/2016.writespeakcode.com.git (fetch)
upstream [email protected]:WriteSpeakCode/2016.writespeakcode.com.git (push)
```

If yours don't match above, use `git remote rename <oldname> <newname>` to fix it.

2. Add the Heroku staging and production apps as remotes to your localhost
git repository:

```
git remote add staging https://git.heroku.com/writespeakcode2016-staging.git
git remote add production https://git.heroku.com/writespeakcode2016-production.git
```

3. Ensure that your master branch is in sync with the upstream GitHub repository,
and not your fork. If you run into trouble with this, ask on Slack for help.

You should see that master is tracking `[upstream/master]`.

```
$ git checkout master
$ git branch -vv

* master 5194208 [upstream/master]
```

4. Ensure that what you are about to push to Heroku is already synchronized to GitHub.

You should see that your branch is up to date with `upstream/master`.
```
$ git checkout master
$ git status

Your branch is up-to-date with 'upstream/master'
```

5. Push to the Heroku staging:

```
git push staging master
```

6. Verify that the staging site looks right: https://writespeakcode2016-staging.herokuapp.com/

7. Push to Heroku production:

```
git push production master
```

8. View the production website at: http://2016.writespeakcode.com/ -->

## License

The code is available under the [MIT license](MIT-LICENSE).

## Tips

[Eventicka II theme documentation](https://github.com/WriteSpeakCode/2017-raw-template/blob/master/documentation/index.html)

To hide or unhide an element, use `.hidden`.

Make updates to styling in `custom.css`.


57 changes: 41 additions & 16 deletions assets/css/custom.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,26 @@
/*
/*
EVENTICKA II CUSTOM STYLESHEET
--------------------------

Instructions:

Add your custom styles in this file instead of style.css so it
is easier to update the theme. Simply copy an existing style
Add your custom styles in this file instead of style.css so it
is easier to update the theme. Simply copy an existing style
from style.css to this file, and modify it to your liking. */

/*
Brand Colors
---------------
Coral: 235,104,82 RGB or #EB6851
Yellow: 248,235,96 RGB or #F7EA5F
Blue: 23,39,82 RGB or #172751
*/

/* Hide an element */
.hidden {
display: none;
}


/* ASSIGN CUSTOM PRIMARY FONT */

Expand All @@ -24,41 +37,53 @@ body, #qcSiteNav h4, #qcPriNav ul > li > a, #qcPriNav ul ul > li > a, .dash_titl
/* ASSIGN CUSTOM PRIMARY HIGHLIGHT COLOR */

#qcWidgets, .qcOrderedList.check li:before {
background-color: #1DB6AD;
background-color: #EB6851;
}
#qcHeader {
border-top-color: #1DB6AD;
}
body.home:after {
background: rgba(29,182,173,0.7);
border-top-color: #172751;
}

/* ASSIGN CUSTOM SECONDARY HIGHLIGHT COLOR */

#qcPageContentTabs > ul li.active:before, .qcScheduleList > li.toggle:hover:before, .qcScheduleList > li.toggle.active:before, .qcVenueHotels li:hover .action a, .qcTicketAction:hover, #qcSubscribeWidget input[type=submit]:hover, .qcTcktSubmit button:hover {
background-color: red;
background-color: #EB6851;
}
#qcTabNav li.active a, #qcTabNav li.active a:hover, #qcTabNav li.active a i, #qcPageContentTabs > ul li.active > a, .qcVenueHotels li:hover h2, .speakers .item:hover .item-title .read-more, .speakers .item-desc h3, .speakers .item-desc p, #qcPriFooter nav li a:hover, .copyrights a:hover, .qcCheckboxText a:hover, .error {
color: red;
color: #EB6851;
}
#qcPageContentTabs > ul li.active:after {
border-top-color: red;
border-top-color: #EB6851;
}
.copyrights a:hover, .qcCheckboxText a:hover {
border-bottom-color: red;
border-bottom-color: #EB6851;
}

/* ASSIGN CUSTOM TERTIARY HIGHLIGHT COLOR */

#qcCountdown, .qcScheduleList > li.toggle:before, .qcTicketAction, #qcSubscribeWidget input[type=submit] {
background-color: orange;
background-color: #EB6851;
}
#qcPriNav > li.active > a, #qcPriNav ul > li.active > a {
color: orange;
color: #EB6851;
}

/* ASSIGN CUSTOM PAGE BACKGROUND COLOR/IMAGE */

body.home.static {
background: #fff url('');
}
background: url('../img/WSC-bg.jpg') no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
body.home:after {
background: none;
}

#qcSlideText .qcTargetLink {
color: #EB6851;
}

#qcWidgets, .qcOrderedList.check li:before {
background-color: #172751;
}
Loading