Skip to content

Commit

Permalink
moved new folder
Browse files Browse the repository at this point in the history
  • Loading branch information
Lynn Root committed Dec 19, 2012
1 parent 2a02227 commit 9219ecc
Show file tree
Hide file tree
Showing 168 changed files with 13,820 additions and 0 deletions.
20 changes: 20 additions & 0 deletions CodeOfConduct/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{% extends "site.html" %}
{% block title %}Code of Conduct{% endblock %}
{% block content %}
<section id="archive">
<h1>Code of Conduct</h1>
<img src="{{ get_asset('images/pylady_geek.png') }}" width="150" height="83">
<article>
<p>Pyladies is dedicated to providing a respectful, harassment-free community for everyone. We do not tolerate harassment or bullying of any community member in any form. This does not only extend to members to local PyLadies communities, but to anyone who chooses to become involved in the larger PyLadies community of users, developers and integrators through events or interactions.</p>

<p>Harassment includes offensive verbal/electronic comments related to personal characteristics or choices, sexual images or comments in public or online spaces, deliberate intimidation, bullying, stalking, following, harassing photography or recording, sustained disruption of talks, IRC chats, electronic meetings, physical meetings or other events, inappropriate physical contact, or unwelcome sexual attention. Participants asked to stop any harassing or bullying behavior are expected to comply immediately.</p>

<p>If a participant engages in harassing behavior, representatives of the community may take reasonable action they deem appropriate, including warning the offender, expulsion from any PyLadies event, or expulsion from mailing lists, IRC chats, discussion boards and other electronic communications channels to resolve the issue. This may include expulsion from PyLadies Meetup group membership.</p>

<p>If you are being harassed, notice that someone else is being harassed, or have any other concerns, please act to intercede or ask for help from any member of the PyLadies community, IRC chat admins, website admins, or organizers/representatives of any physical events put on under the auspices of PyLadies.</p>

<p>This Code of Conduct has been adapted from the <a href="http://plone.org/foundation/materials/foundation-resolutions/code-of-conduct">Plone Foundation</a> and is licensed under a <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons Attribution-Share Alike 3.0 Unported license</a></p>

</article>
</section>
{% endblock %}
40 changes: 40 additions & 0 deletions _assets/css/_sass/_base.sass
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
//
// IMPORTS
//
@import compass/css3/shared


//
// MIXINS
//
// CLEAR FIX
@mixin clearfix
&:before, &:after
content: ''
display: table

&:after
clear: both

// VENDOR PREFIXES
@mixin border-radius($radius, $corner: false)
@if $corner
@include experimental(border-#{$corner}-radius, $radius, not -moz, -webkit, not -o, not -ms, not -khtml, official)
@else
@include experimental(border-radius, $radius, not -moz, -webkit, not -o, not -ms, not -khtml, official)

@mixin box-shadow($one, $two: false, $three: false, $four: false, $five: false)
$shadows: compact($one, $two, $three, $four, $five)

@include experimental(box-shadow, $shadows, not -moz, -webkit, not -o, not -ms, not -khtml, official)

@mixin opacity($opacity)
-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=#{$opacity} * 100)'
filter: alpha(opacity=#{$opacity} * 100)
opacity: $opacity

@mixin transition($one, $two: false, $three: false, $four: false, $five: false)
$transitions: compact($one, $two, $three, $four, $five)

@include experimental(transition, $transitions, -moz, -webkit, -o, -ms, not -khtml, official)
26 changes: 26 additions & 0 deletions _assets/css/_sass/config.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Require any additional compass plugins here.

# Set this to the root of your project when deployed:
http_path = "/"
project_path = "../../../"
css_dir = "_assets/css"
sass_dir = "_assets/css/_sass"
images_dir = "_assets/images"
javascripts_dir = "_assets/js"

# You can select your preferred output style here (can be overridden via the command line):
# output_style = :expanded or :nested or :compact or :compressed
output_style = :expanded

# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true

# To disable debugging comments that display the original location of your selectors. Uncomment:
# line_comments = false
line_comments = false

preferred_syntax = :sass

sass_options = {
:cache => false
}
Loading

0 comments on commit 9219ecc

Please sign in to comment.