Skip to content

Commit

Permalink
fix styles for phone
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Feb 26, 2013
1 parent dd59ce6 commit f9fe519
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 11 deletions.
12 changes: 6 additions & 6 deletions conf/app.conf.js
Expand Up @@ -11,26 +11,26 @@ exports.dft = {
};

exports.db = {
'database': 'chatlrdev'
'database': 'chatlr'
};

exports.server = {
host: '',
port: 8080,
secret: 'sauce1!',
port: 80,
secret: 'pantspants1!',
publicPath: __dirname + '/../website'
};

exports.oauth = {
domain: 'http://chatlr.com:8080',
domain: 'http://chatlr.com',

requestUrl: 'http://www.tumblr.com/oauth/request_token',
accessUrl: 'http://www.tumblr.com/oauth/access_token',
authorizeUrl: 'http://www.tumblr.com/oauth/authorize',
authenticateUrl: 'http://api.tumblr.com/v2/user/info',

consumerKey: 'k6huAUe0DtDSdmIRHxnDGNuTBScw7ffJ0ePAi6tsbjSgZTzF9P',
consumerSecret: 'jWwSLvLTqKDQMDeTGYrhWeUVApk2FufivWmkn3RS8VhFOvTE2h',
consumerKey: 'oQRq1Wpo1BiygSFYGdUJUZq2DgcRzm4Jjx7ooxh19wQ3WCAcSU',
consumerSecret: 'Ak59AnEOWHWpgbtzqJYJL08IIQ8DNxA96CbsBh5FJDpMDbiij0',

appHtmlPath: exports.server.publicPath + '/content.html'
};
Expand Down
17 changes: 12 additions & 5 deletions website/css/design.css
Expand Up @@ -446,19 +446,26 @@ body, input, .ui-button {

/* PHONES AND TABLETS */

@media all and (max-device-width: 481px) {
@media (max-width: 767px) {
body {
-webkit-text-size-adjust: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
}

#notice, .toplink, #section-top-left, #button-help, #advertisement {
#section-top-left, #advertisement {
display: none;
}

#chatbox {
width: 100%;
clear: both;
box-sizing: border-box;
width: 100% !important;
clear: both;
}
}

@media (max-width: 480px) {
#notice, .toplink, #section-top-left, #button-help, #advertisement {
display: none;
}
}

Expand Down Expand Up @@ -764,4 +771,4 @@ body, input, .ui-button {
overflow: hidden;
opacity: 0.5;
cursor: pointer;
}
}

0 comments on commit f9fe519

Please sign in to comment.