Skip to content

Commit

Permalink
Brief 1.0
Browse files Browse the repository at this point in the history
This is the initial commit to the repository.
  • Loading branch information
miekd committed Dec 6, 2010
0 parents commit aa39d0c
Show file tree
Hide file tree
Showing 114 changed files with 11,150 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
34 changes: 34 additions & 0 deletions Brief.SkypeChatStyle/Contents/Info.plist
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleGetInfoString</key>
<string>Panamericana Chat Style</string>
<key>CFBundleIdentifier</key>
<string>com.skype.skype.panamericana.style</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>1.0</string>
<key>CFBundleName</key>
<string>Panamericana</string>
<key>CFBundlePackageType</key>
<string>SKP1</string>
<key>CFBundleVersion</key>
<string>1.0</string>
<key>DefaultFontFamily</key>
<string>Helvetica Neue Light</string>
<key>DefaultFontSize</key>
<integer>11</integer>
<key>DisableCustomBackground</key>
<true/>
<key>MessageViewVersion</key>
<integer>6</integer>
<key>ShowsUserIcons</key>
<true/>
<key>FormattedCopyCompatible</key>
<false/>
<key>SupportsStoredRender</key>
<false/>
</dict>
</plist>
43 changes: 43 additions & 0 deletions Brief.SkypeChatStyle/Contents/Resources/Conversation.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!DOCTYPE html>
<html xml:lang="en" lang="en">
<head>

<meta charset="utf-8" />
<title>Brief Chat Style</title>

<link rel="stylesheet" href="css/main.css" type="text/css" media="screen" />

<script src="js/jquery.min.js"></script>
<script src="js/main.js"></script>
<script>
var debug = true;
</script>

<style>
@-webkit-keyframes typing-slide-in {
0% { opacity: 0; margin-bottom: -51px; }
100% { opacity: 1; margin-bottom: 4px; }
}

@-webkit-keyframes fade-in {
0% { opacity: 0; }
70% { opacity: 0.8; }
100% { opacity: 1; }
}
</style>

</head>
<body>
<div id="container">
<div id="conversation">
<div class="item typing invisible" id="typing">
<div class="container">
<div class="head">
<span class="sender"></span>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
37 changes: 37 additions & 0 deletions Brief.SkypeChatStyle/Contents/Resources/css-source/.htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
####################################################
#
# THIS FILE SHOULD BE PLACED IN YOUR CSS DIRECTORY
#
####################################################

<IfModule mod_deflate.c>
SetOutputFilter DEFLATE
</IfModule>

<IfModule mod_expires.c>
ExpiresActive on
ExpiresDefault "access plus 10 years"
</IfModule>

# To enable invisible parsing of your css, you need to change the path
# below to find your scaffold/index.php file.
#
# By default, Scaffold should be placed in your CSS directory. You should
# place this .htaccess file in the same directory. If you're setup is
# fairly average, this should work out of the box.
#
# Now, rather than calling http://site.com/css/scaffold/index.php?request=css/master.css
# you can just call http://site.com/css/master.css and this htaccess file will
# take care of the routing for you.

<IfModule mod_rewrite.c>
RewriteEngine on

# Anything after .css is used as the output=
RewriteCond %{REQUEST_URI} \.css
RewriteRule ^(.+)/([^/]+)/?$ scaffold/index.php?request=%{REQUEST_URI}&output=$2&%{QUERY_STRING}

RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_URI} \.css$
RewriteRule ^(.+)$ scaffold/index.php?request=%{REQUEST_URI}&%{QUERY_STRING}
</IfModule>
234 changes: 234 additions & 0 deletions Brief.SkypeChatStyle/Contents/Resources/css-source/base.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,234 @@
/*
-------------
CSS Base File
-------------
Contains many resets, browser fixes and defaults to make life a bit easier.
Inspired by the likes of Eric Meyer et al.
Version: 1.8 (a.k.a. Green II)
Created: October 13th, 2010
Author: Maykel Loomans - www.maykelloomans.com
Changes:
Since 1.0 Font-shorthand for basic fonts.
Since 1.1 Added input[type=image], input.image
Since 1.2 Added input[type=radio], input.radio
Since 1.3 Added ::moz-focus-inner to the input[type=submit], input.submit
Since 1.4 Added display: block; HTML5 elements: article, section, header, footer, nav
Since 1.5 Removed accessibility selectors, added -moz-focus-inner.
Since 1.6 Added some form basics.
Since 1.7 Updated inputs. Removed some stupid selectors.
Since 1.8 Updated basic font-stack. Added some things from HTML Boiler Plate.
-------------
*/


/* @group - Reset */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header,
hgroup, menu, nav, section, menu,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;

vertical-align: baseline;
background: transparent;
}

/* @group - HTML5 Elements */

article, aside, figure, footer, header, hgroup, nav, section {
display:block;
}

/* @end */


/* @end */



/* @group - Defaults */

:focus { outline: 0; } /* Remember to define focus styles! */

html { -webkit-font-smoothing: antialiased; }
html, body { height: 100%; }
body { background: #fff; } /* Putting on pants. */

a img, fieldset { border: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; } /* Remove possible quote marks (") from <q>, <blockquote>. */

ul, ol { list-style: none; } /* Lists are flexible, define list styles for your site specifically. */

table { border-collapse: separate; border-spacing: 0; } /* Tables still need 'cellspacing="0"' in the markup. */
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; }


/* @group - Input Fields */

input, select, button, textarea {
display: inline-block;
vertical-align: middle;
white-space: normal;
background: #fff;
line-height: 1;

margin: 0;
padding: 0;
border: 0;
}

input[type=submit], input.submit {
font-weight:bold;
width: auto !important;
}

input[type=submit]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner { border: 0; }

input[type=image], input.image,
input[type=radio], input.radio,
input[type=checkbox], input.checkbox {
background:none !important;
border:none !important;
height:auto !important;
width:auto !important;
}

/* @end */

/* @group Image Defaults */

h1 img, h2 img, h3 img, h4 img, h5 img, h6 img { margin: 0; }

img.left {
margin: 4px 20px 4px 4px;

display:inline;
float:left !important;
}

img.right {
margin: 4px 4px 4px 20px;

display:inline;
float:right !important;
}

/* @end */

/* @end */



/* @group - Defaults (Typo) */

/* @group Default Font */

body { font: 62.5%/20px sans-serif; color: #222; } /* Resetting the body font for no current reason whatsoever. Let's put it towards 'peace of mind' */
input, textarea, button, select { font: 99% sans-serif; }
pre,code,tt,kbd,samp { font-family: 'andale mono', 'lucida console', monospace;}

/* @end */

a { color: #009; text-decoration: underline; }
a:visited { color: #006; }
a:focus, a:hover { color: #000; }

del { text-decoration: line-through; }
pre,code { white-space: pre; }

sup, sub { line-height: 0; }
strong { font-weight: bold; }

/* @end */



/* @group - Browser Specifics */

input::-moz-focus-inner,
button::-moz-focus-inner {
border: 0;
padding: 0;
}

/* @end */



/* @group - Clearing Hacks */

.clear:after {
clear:both;
content:".";
display:block;
height:0;
visibility:hidden;
font-size: 0.01em !important;
line-height: 0.01em !important;
}

.clear { display: inline-block; }
* html .clear { height:1%; }
.clear { display:block; }

/* @end */


/* @group Custom Stuff */

/* @group Horizontal Rules */

.hr {
border-bottom:1px solid #ffeae0;
clear:both !important;
font-size:0.01em !important;
height:1px !important;
width:100%;
margin:3px 0 !important;
padding:1px 0;
}

.hr hr { display: none !important; }

/* @end */



/* @group Visibility Switches */

.hide { display: none !important; }
.show { display: block !important; }

.invisible { visibility: hidden !important; }
.visible { visibility: visible !important; }

/* @end */


/* @end */


@media screen and (max-device-width: 480px) {
/* Prevent iOS, WinMobile from adjusting font size */
html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; }
}
Binary file not shown.
Loading

0 comments on commit aa39d0c

Please sign in to comment.