Asset cleanup
Remove in-app stale resources and their branching of different cons. Remove dist and move everyting into static/src. Remove unused stale resouces such as less and hbs, etc.
|
@ -79,10 +79,10 @@ MEDIA_ROOT = os.path.join(PACKAGE_ROOT, "site_media", "media")
|
|||
MEDIA_URL = "/site_media/media/"
|
||||
|
||||
STATIC_ROOT = os.path.join(PROJECT_ROOT, "static")
|
||||
STATIC_URL = "/static/dist/"
|
||||
STATIC_URL = "/static/src/"
|
||||
|
||||
STATICFILES_DIRS = [
|
||||
os.path.join(PROJECT_ROOT, "static", "dist"),
|
||||
os.path.join(PROJECT_ROOT, "static", "src"),
|
||||
]
|
||||
|
||||
STATICFILES_FINDERS = [
|
||||
|
|
|
@ -56,13 +56,11 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block scripts %}
|
||||
<script src="{% static 'pyconau2017/js/app.js' %}" type="text/javascript"></script>
|
||||
<script src="{{ STATIC_URL }}/js/app.js" type="text/javascript"></script>
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
|
||||
<script src="{% static 'pyconau2017/js/bootstrap.js' %}" type="text/javascript"></script>
|
||||
<script src="{% static 'pyconau2017/js/load_editors.js' %}" type="text/javascript"></script>
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/ace/1.2.3/ace.js"></script>
|
||||
<script src="{{ STATIC_URL }}js/jquery.formset.js"></script>
|
||||
<script src="{{ STATIC_URL }}/js/bootstrap.min.js" type="text/javascript"></script>
|
||||
<script src="{{ STATIC_URL }}/js/jquery.formset.js"></script>
|
||||
{% block scripts_extra %}{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -14,11 +14,10 @@
|
|||
{% endblock %}
|
||||
{% endblock %}
|
||||
{% block scripts %}
|
||||
<script src="{% static 'pyconau2017/js/app.js' %}"></script>
|
||||
<script src="{{ STATIC_URL }}/js/app.js" type="text/javascript"></script>
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
|
||||
{% include "_scripts.html" %}
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/ace/1.2.0/ace.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
|
||||
{% include "_scripts.html" %}
|
||||
<script src="{{ STATIC_URL }}/js/bootstrap.min.js" type="text/javascript"></script>
|
||||
{% block extra_script %}{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
|
|
|
@ -10,7 +10,6 @@
|
|||
{% endblock %}
|
||||
|
||||
{% block extra_head %}
|
||||
<link rel="stylesheet" href="{{ STATIC_URL }}chosen/chosen.css" />
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
|
447
static/dist/chosen/chosen.css
vendored
|
@ -1,447 +0,0 @@
|
|||
/*!
|
||||
Chosen, a Select Box Enhancer for jQuery and Prototype
|
||||
by Patrick Filler for Harvest, http://getharvest.com
|
||||
|
||||
Version 1.6.2
|
||||
Full source at https://github.com/harvesthq/chosen
|
||||
Copyright (c) 2011-2016 Harvest http://getharvest.com
|
||||
|
||||
MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
|
||||
This file is generated by `grunt build`, do not edit it by hand.
|
||||
*/
|
||||
|
||||
/* @group Base */
|
||||
.chosen-container {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
vertical-align: middle;
|
||||
font-size: 13px;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.chosen-container * {
|
||||
-webkit-box-sizing: border-box;
|
||||
-moz-box-sizing: border-box;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
.chosen-container .chosen-drop {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: -9999px;
|
||||
z-index: 1010;
|
||||
width: 100%;
|
||||
border: 1px solid #aaa;
|
||||
border-top: 0;
|
||||
background: #fff;
|
||||
box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
.chosen-container.chosen-with-drop .chosen-drop {
|
||||
left: 0;
|
||||
}
|
||||
.chosen-container a {
|
||||
cursor: pointer;
|
||||
}
|
||||
.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
|
||||
margin-right: 4px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
font-weight: normal;
|
||||
color: #999999;
|
||||
}
|
||||
.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
|
||||
content: ":";
|
||||
padding-left: 2px;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Single Chosen */
|
||||
.chosen-container-single .chosen-single {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
padding: 0 0 0 8px;
|
||||
height: 25px;
|
||||
border: 1px solid #aaa;
|
||||
border-radius: 5px;
|
||||
background-color: #fff;
|
||||
background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));
|
||||
background: -webkit-linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
||||
background: -moz-linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
||||
background: -o-linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
||||
background: linear-gradient(#ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);
|
||||
background-clip: padding-box;
|
||||
box-shadow: 0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);
|
||||
color: #444;
|
||||
text-decoration: none;
|
||||
white-space: nowrap;
|
||||
line-height: 24px;
|
||||
}
|
||||
.chosen-container-single .chosen-default {
|
||||
color: #999;
|
||||
}
|
||||
.chosen-container-single .chosen-single span {
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
margin-right: 26px;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.chosen-container-single .chosen-single-with-deselect span {
|
||||
margin-right: 38px;
|
||||
}
|
||||
.chosen-container-single .chosen-single abbr {
|
||||
position: absolute;
|
||||
top: 6px;
|
||||
right: 26px;
|
||||
display: block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: url('chosen-sprite.png') -42px 1px no-repeat;
|
||||
font-size: 1px;
|
||||
}
|
||||
.chosen-container-single .chosen-single abbr:hover {
|
||||
background-position: -42px -10px;
|
||||
}
|
||||
.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
|
||||
background-position: -42px -10px;
|
||||
}
|
||||
.chosen-container-single .chosen-single div {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
display: block;
|
||||
width: 18px;
|
||||
height: 100%;
|
||||
}
|
||||
.chosen-container-single .chosen-single div b {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background: url('chosen-sprite.png') no-repeat 0px 2px;
|
||||
}
|
||||
.chosen-container-single .chosen-search {
|
||||
position: relative;
|
||||
z-index: 1010;
|
||||
margin: 0;
|
||||
padding: 3px 4px;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.chosen-container-single .chosen-search input[type="text"] {
|
||||
margin: 1px 0;
|
||||
padding: 4px 20px 4px 5px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
outline: 0;
|
||||
border: 1px solid #aaa;
|
||||
background: white url('chosen-sprite.png') no-repeat 100% -20px;
|
||||
background: url('chosen-sprite.png') no-repeat 100% -20px;
|
||||
font-size: 1em;
|
||||
font-family: sans-serif;
|
||||
line-height: normal;
|
||||
border-radius: 0;
|
||||
}
|
||||
.chosen-container-single .chosen-drop {
|
||||
margin-top: -1px;
|
||||
border-radius: 0 0 4px 4px;
|
||||
background-clip: padding-box;
|
||||
}
|
||||
.chosen-container-single.chosen-container-single-nosearch .chosen-search {
|
||||
position: absolute;
|
||||
left: -9999px;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Results */
|
||||
.chosen-container .chosen-results {
|
||||
color: #444;
|
||||
position: relative;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
margin: 0 4px 4px 0;
|
||||
padding: 0 0 0 4px;
|
||||
max-height: 240px;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
.chosen-container .chosen-results li {
|
||||
display: none;
|
||||
margin: 0;
|
||||
padding: 5px 6px;
|
||||
list-style: none;
|
||||
line-height: 15px;
|
||||
word-wrap: break-word;
|
||||
-webkit-touch-callout: none;
|
||||
}
|
||||
.chosen-container .chosen-results li.active-result {
|
||||
display: list-item;
|
||||
cursor: pointer;
|
||||
}
|
||||
.chosen-container .chosen-results li.disabled-result {
|
||||
display: list-item;
|
||||
color: #ccc;
|
||||
cursor: default;
|
||||
}
|
||||
.chosen-container .chosen-results li.highlighted {
|
||||
background-color: #3875d7;
|
||||
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
|
||||
background-image: -webkit-linear-gradient(#3875d7 20%, #2a62bc 90%);
|
||||
background-image: -moz-linear-gradient(#3875d7 20%, #2a62bc 90%);
|
||||
background-image: -o-linear-gradient(#3875d7 20%, #2a62bc 90%);
|
||||
background-image: linear-gradient(#3875d7 20%, #2a62bc 90%);
|
||||
color: #fff;
|
||||
}
|
||||
.chosen-container .chosen-results li.no-results {
|
||||
color: #777;
|
||||
display: list-item;
|
||||
background: #f4f4f4;
|
||||
}
|
||||
.chosen-container .chosen-results li.group-result {
|
||||
display: list-item;
|
||||
font-weight: bold;
|
||||
cursor: default;
|
||||
}
|
||||
.chosen-container .chosen-results li.group-option {
|
||||
padding-left: 15px;
|
||||
}
|
||||
.chosen-container .chosen-results li em {
|
||||
font-style: normal;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Multi Chosen */
|
||||
.chosen-container-multi .chosen-choices {
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
margin: 0;
|
||||
padding: 0 5px;
|
||||
width: 100%;
|
||||
height: auto;
|
||||
border: 1px solid #aaa;
|
||||
background-color: #fff;
|
||||
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
|
||||
background-image: -webkit-linear-gradient(#eeeeee 1%, #ffffff 15%);
|
||||
background-image: -moz-linear-gradient(#eeeeee 1%, #ffffff 15%);
|
||||
background-image: -o-linear-gradient(#eeeeee 1%, #ffffff 15%);
|
||||
background-image: linear-gradient(#eeeeee 1%, #ffffff 15%);
|
||||
cursor: text;
|
||||
}
|
||||
.chosen-container-multi .chosen-choices li {
|
||||
float: left;
|
||||
list-style: none;
|
||||
}
|
||||
.chosen-container-multi .chosen-choices li.search-field {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
|
||||
margin: 1px 0;
|
||||
padding: 0;
|
||||
height: 25px;
|
||||
outline: 0;
|
||||
border: 0 !important;
|
||||
background: transparent !important;
|
||||
box-shadow: none;
|
||||
color: #999;
|
||||
font-size: 100%;
|
||||
font-family: sans-serif;
|
||||
line-height: normal;
|
||||
border-radius: 0;
|
||||
}
|
||||
.chosen-container-multi .chosen-choices li.search-choice {
|
||||
position: relative;
|
||||
margin: 3px 5px 3px 0;
|
||||
padding: 3px 20px 3px 5px;
|
||||
border: 1px solid #aaa;
|
||||
max-width: 100%;
|
||||
border-radius: 3px;
|
||||
background-color: #eeeeee;
|
||||
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
|
||||
background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||
background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||
background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||
background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||
background-size: 100% 19px;
|
||||
background-repeat: repeat-x;
|
||||
background-clip: padding-box;
|
||||
box-shadow: 0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);
|
||||
color: #333;
|
||||
line-height: 13px;
|
||||
cursor: default;
|
||||
}
|
||||
.chosen-container-multi .chosen-choices li.search-choice span {
|
||||
word-wrap: break-word;
|
||||
}
|
||||
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
right: 3px;
|
||||
display: block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background: url('chosen-sprite.png') -42px 1px no-repeat;
|
||||
font-size: 1px;
|
||||
}
|
||||
.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
|
||||
background-position: -42px -10px;
|
||||
}
|
||||
.chosen-container-multi .chosen-choices li.search-choice-disabled {
|
||||
padding-right: 5px;
|
||||
border: 1px solid #ccc;
|
||||
background-color: #e4e4e4;
|
||||
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
|
||||
background-image: -webkit-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||
background-image: -moz-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||
background-image: -o-linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||
background-image: linear-gradient(#f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
|
||||
color: #666;
|
||||
}
|
||||
.chosen-container-multi .chosen-choices li.search-choice-focus {
|
||||
background: #d4d4d4;
|
||||
}
|
||||
.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
|
||||
background-position: -42px -10px;
|
||||
}
|
||||
.chosen-container-multi .chosen-results {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
.chosen-container-multi .chosen-drop .result-selected {
|
||||
display: list-item;
|
||||
color: #ccc;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Active */
|
||||
.chosen-container-active .chosen-single {
|
||||
border: 1px solid #5897fb;
|
||||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
.chosen-container-active.chosen-with-drop .chosen-single {
|
||||
border: 1px solid #aaa;
|
||||
-moz-border-radius-bottomright: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
-moz-border-radius-bottomleft: 0;
|
||||
border-bottom-left-radius: 0;
|
||||
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
|
||||
background-image: -webkit-linear-gradient(#eeeeee 20%, #ffffff 80%);
|
||||
background-image: -moz-linear-gradient(#eeeeee 20%, #ffffff 80%);
|
||||
background-image: -o-linear-gradient(#eeeeee 20%, #ffffff 80%);
|
||||
background-image: linear-gradient(#eeeeee 20%, #ffffff 80%);
|
||||
box-shadow: 0 1px 0 #fff inset;
|
||||
}
|
||||
.chosen-container-active.chosen-with-drop .chosen-single div {
|
||||
border-left: none;
|
||||
background: transparent;
|
||||
}
|
||||
.chosen-container-active.chosen-with-drop .chosen-single div b {
|
||||
background-position: -18px 2px;
|
||||
}
|
||||
.chosen-container-active .chosen-choices {
|
||||
border: 1px solid #5897fb;
|
||||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
|
||||
color: #222 !important;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Disabled Support */
|
||||
.chosen-disabled {
|
||||
opacity: 0.5 !important;
|
||||
cursor: default;
|
||||
}
|
||||
.chosen-disabled .chosen-single {
|
||||
cursor: default;
|
||||
}
|
||||
.chosen-disabled .chosen-choices .search-choice .search-choice-close {
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Right to Left */
|
||||
.chosen-rtl {
|
||||
text-align: right;
|
||||
}
|
||||
.chosen-rtl .chosen-single {
|
||||
overflow: visible;
|
||||
padding: 0 8px 0 0;
|
||||
}
|
||||
.chosen-rtl .chosen-single span {
|
||||
margin-right: 0;
|
||||
margin-left: 26px;
|
||||
direction: rtl;
|
||||
}
|
||||
.chosen-rtl .chosen-single-with-deselect span {
|
||||
margin-left: 38px;
|
||||
}
|
||||
.chosen-rtl .chosen-single div {
|
||||
right: auto;
|
||||
left: 3px;
|
||||
}
|
||||
.chosen-rtl .chosen-single abbr {
|
||||
right: auto;
|
||||
left: 26px;
|
||||
}
|
||||
.chosen-rtl .chosen-choices li {
|
||||
float: right;
|
||||
}
|
||||
.chosen-rtl .chosen-choices li.search-field input[type="text"] {
|
||||
direction: rtl;
|
||||
}
|
||||
.chosen-rtl .chosen-choices li.search-choice {
|
||||
margin: 3px 5px 3px 0;
|
||||
padding: 3px 5px 3px 19px;
|
||||
}
|
||||
.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
|
||||
right: auto;
|
||||
left: 4px;
|
||||
}
|
||||
.chosen-rtl.chosen-container-single-nosearch .chosen-search,
|
||||
.chosen-rtl .chosen-drop {
|
||||
left: 9999px;
|
||||
}
|
||||
.chosen-rtl.chosen-container-single .chosen-results {
|
||||
margin: 0 0 4px 4px;
|
||||
padding: 0 4px 0 0;
|
||||
}
|
||||
.chosen-rtl .chosen-results li.group-option {
|
||||
padding-right: 15px;
|
||||
padding-left: 0;
|
||||
}
|
||||
.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
|
||||
border-right: none;
|
||||
}
|
||||
.chosen-rtl .chosen-search input[type="text"] {
|
||||
padding: 4px 5px 4px 20px;
|
||||
background: white url('chosen-sprite.png') no-repeat -30px -20px;
|
||||
background: url('chosen-sprite.png') no-repeat -30px -20px;
|
||||
direction: rtl;
|
||||
}
|
||||
.chosen-rtl.chosen-container-single .chosen-single div b {
|
||||
background-position: 6px 2px;
|
||||
}
|
||||
.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
|
||||
background-position: -12px 2px;
|
||||
}
|
||||
|
||||
/* @end */
|
||||
/* @group Retina compatibility */
|
||||
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
|
||||
.chosen-rtl .chosen-search input[type="text"],
|
||||
.chosen-container-single .chosen-single abbr,
|
||||
.chosen-container-single .chosen-single div b,
|
||||
.chosen-container-single .chosen-search input[type="text"],
|
||||
.chosen-container-multi .chosen-choices .search-choice .search-choice-close,
|
||||
.chosen-container .chosen-results-scroll-down span,
|
||||
.chosen-container .chosen-results-scroll-up span {
|
||||
background-image: url('chosen-sprite@2x.png') !important;
|
||||
background-size: 52px 37px !important;
|
||||
background-repeat: no-repeat !important;
|
||||
}
|
||||
}
|
||||
/* @end */
|
1269
static/dist/chosen/chosen.jquery.js
vendored
2
static/dist/chosen/chosen.jquery.min.js
vendored
3
static/dist/chosen/chosen.min.css
vendored
1284
static/dist/chosen/chosen.proto.js
vendored
2
static/dist/chosen/chosen.proto.min.js
vendored
11
static/dist/css/site-0a247b924d.css
vendored
76
static/dist/css/wiki.css
vendored
|
@ -1,76 +0,0 @@
|
|||
#div_id_title .asteriskField{display:none}
|
||||
#id_title {font-size: 20px; height: 30px; padding: 6px; width: 98%;}
|
||||
#id_summary {width: 98%; padding: 6px;}
|
||||
|
||||
h1#article-title {font-size: 2em; margin-top: -5px;}
|
||||
|
||||
#article_edit_form label {max-width: 100px;}
|
||||
#article_edit_form .controls {margin-left: 120px;}
|
||||
|
||||
.form-horizontal label { font-size: 16px; font-weight: normal; color: #777;}
|
||||
|
||||
.settings-form label {min-width: 250px; font-size: inherit; font-weight: normal;}
|
||||
.settings-form .controls {margin-left: 270px;}
|
||||
.settings-form select {}
|
||||
.settings-form .form-actions { padding-left: 270px; }
|
||||
|
||||
#attachment_form #id_description
|
||||
{ width: 95% }
|
||||
|
||||
#edit_sidebar .accordion {margin-bottom: 5px;}
|
||||
|
||||
.wiki-article div.toc,
|
||||
.wiki-article div.article-list {
|
||||
margin: 10px 0;
|
||||
background: #f9f9f9;
|
||||
padding: 10px;
|
||||
width: 300px;
|
||||
border: 1px solid #CCC;
|
||||
}
|
||||
|
||||
.wiki-article a.linknotfound {color: #C87;}
|
||||
|
||||
.wiki-article pre {
|
||||
max-width: 700px;
|
||||
}
|
||||
|
||||
input[type=file] {float: none; width: auto;}
|
||||
.asteriskField { font-size: 20px; margin-left: 5px;}
|
||||
|
||||
.notification-list .since {
|
||||
font-size: 80%;
|
||||
color: #CCC;
|
||||
}
|
||||
|
||||
.directory-toolbar .filter-clear { margin-right: 10px; position: relative; top: 5px; }
|
||||
|
||||
.accordion-heading h3 {margin: 0;}
|
||||
|
||||
.breadcrumb .icon-bar {
|
||||
display: block;
|
||||
width: 18px;
|
||||
height: 2px;
|
||||
background-color: rgb(245, 245, 245);
|
||||
border-radius: 1px 1px 1px 1px;
|
||||
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.25);
|
||||
margin-top: 3px;
|
||||
}
|
||||
.breadcrumb .icon-bar:first-child{margin-top: 0;}
|
||||
|
||||
#navbar_wiki_search input.search-query {width: 80px;}
|
||||
|
||||
#article-menu
|
||||
{
|
||||
border-bottom: 1px solid #EEE;
|
||||
}
|
||||
|
||||
#article-container
|
||||
{
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#wiki-footer
|
||||
{
|
||||
padding: 30px 0;
|
||||
clear: both;
|
||||
}
|
1
static/dist/lca2017
vendored
|
@ -1 +0,0 @@
|
|||
../src/lca2017/
|
1
static/dist/pyconau2017
vendored
|
@ -1 +0,0 @@
|
|||
../src/pyconau2017
|
Before Width: | Height: | Size: 357 KiB After Width: | Height: | Size: 357 KiB |
Before Width: | Height: | Size: 106 KiB After Width: | Height: | Size: 106 KiB |
|
@ -1 +0,0 @@
|
|||
<script src='{{ assetPath "js/site.js" }}'></script>
|
|
@ -1 +0,0 @@
|
|||
<link href='{{ assetPath "css/site.css" }}' rel='stylesheet' />
|
Before Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 14 KiB |
|
@ -1,276 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="svg3538"
|
||||
viewBox="0 0 1372.9464 573.37965"
|
||||
height="161.82048mm"
|
||||
width="387.47598mm"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
sodipodi:docname="Hewlett_Packard_Enterprise_logo.svg">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="640"
|
||||
inkscape:window-height="480"
|
||||
id="namedview5372"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.23890226"
|
||||
inkscape:cx="686.47321"
|
||||
inkscape:cy="286.68982"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg3538" />
|
||||
<defs
|
||||
id="defs3540" />
|
||||
<metadata
|
||||
id="metadata3543">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="translate(435.04467,-285.29078)"
|
||||
id="layer1"
|
||||
style="fill:#ffffff">
|
||||
<g
|
||||
transform="matrix(7.4464891,0,0,7.4464891,2804.5105,-1839.1239)"
|
||||
id="g3646"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m -375.89589,299.46828 -55.205,0 0,-10.23425 55.205,0 0,10.23425 z m 3.94375,-14.1775 -63.0925,0 0,18.11875 63.0925,0 0,-18.11875 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3346" />
|
||||
<g
|
||||
id="g3348"
|
||||
transform="matrix(1.25,0,0,-1.25,-431.10089,333.35578)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 -3.155,0 0,14.495 3.155,0 0,-5.728 5.637,0 0,5.728 3.155,0 0,-14.495 -3.155,0 0,6.007 L 0,6.007 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3350" />
|
||||
</g>
|
||||
<g
|
||||
id="g3352"
|
||||
transform="matrix(1.25,0,0,-1.25,-414.13839,325.41203)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="M 0,0 3.758,0 C 3.688,1.066 3.248,1.809 2.018,1.809 1.09,1.809 0.278,1.414 0,0 Z m 2.389,-6.587 c -3.201,0 -5.381,2.018 -5.381,5.333 0,3.225 2.134,5.451 4.964,5.451 3.085,0 4.616,-2.064 4.616,-5.149 l 0,-1.16 -6.588,0 c 0.372,-1.599 1.624,-2.016 2.877,-2.016 1.09,0 1.878,0.231 2.852,0.835 l 0.117,0 0,-2.389 C 5.011,-6.286 3.827,-6.587 2.389,-6.587"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3354" />
|
||||
</g>
|
||||
<g
|
||||
id="g3356"
|
||||
transform="matrix(1.25,0,0,-1.25,-395.61089,325.76078)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 -1.624,-6.076 -2.76,0 -3.155,10.205 0,0.116 3.016,0 1.716,-6.1 1.624,6.1 2.459,0 1.647,-6.1 1.74,6.1 2.9,0 0,-0.116 -3.155,-10.205 -2.761,0 L 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3358" />
|
||||
</g>
|
||||
<g
|
||||
id="g3360"
|
||||
transform="matrix(1.25,0,0,-1.25,-379.75089,333.64578)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 c -2.505,0 -3.526,0.997 -3.526,3.339 l 0,11.387 3.062,0 0,-11.178 c 0,-0.719 0.278,-0.974 0.881,-0.974 0.209,0 0.511,0.069 0.696,0.139 l 0.047,0 0,-2.528 C 0.905,0.093 0.464,0 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3362" />
|
||||
</g>
|
||||
<g
|
||||
id="g3364"
|
||||
transform="matrix(1.25,0,0,-1.25,-373.48714,325.41203)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="M 0,0 3.758,0 C 3.688,1.066 3.248,1.809 2.018,1.809 1.091,1.809 0.278,1.414 0,0 Z m 2.389,-6.587 c -3.201,0 -5.381,2.018 -5.381,5.333 0,3.225 2.134,5.451 4.964,5.451 3.085,0 4.616,-2.064 4.616,-5.149 l 0,-1.16 -6.588,0 c 0.371,-1.599 1.624,-2.016 2.876,-2.016 1.091,0 1.879,0.231 2.854,0.835 l 0.116,0 0,-2.389 C 5.011,-6.286 3.828,-6.587 2.389,-6.587"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3366" />
|
||||
</g>
|
||||
<g
|
||||
id="g3368"
|
||||
transform="matrix(1.25,0,0,-1.25,-349.53714,320.45453)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 2.273,0 0,-2.458 -2.273,0 0,-4.198 c 0,-0.905 0.348,-1.323 1.276,-1.323 0.255,0 0.58,0.024 0.928,0.14 l 0.069,0 0,-2.412 c -0.394,-0.14 -0.997,-0.301 -1.878,-0.301 -2.483,0 -3.457,1.136 -3.457,3.757 l 0,4.337 -3.92,0 0,-4.198 c 0,-0.905 0.348,-1.323 1.275,-1.323 0.256,0 0.581,0.024 0.929,0.14 l 0.069,0 0,-2.412 c -0.394,-0.14 -0.998,-0.301 -1.878,-0.301 -2.483,0 -3.457,1.136 -3.457,3.757 l 0,4.337 -1.578,0 0,2.458 1.578,0 0,2.829 3.062,0 0,-2.829 3.92,0 0,2.829 L 0,2.829 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3370" />
|
||||
</g>
|
||||
<g
|
||||
id="g3372"
|
||||
transform="matrix(1.25,0,0,-1.25,-333.79964,324.13703)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 c 1.602,0 2.366,0.904 2.366,2.203 0,1.346 -0.764,2.25 -2.366,2.25 l -1.995,0 L -1.995,0 0,0 Z m 5.568,2.203 c 0,-3.155 -2.111,-4.87 -5.313,-4.87 l -2.25,0 0,-4.708 -3.153,0 0,14.495 5.403,0 c 3.202,0 5.313,-1.716 5.313,-4.917"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3374" />
|
||||
</g>
|
||||
<g
|
||||
id="g3376"
|
||||
transform="matrix(1.25,0,0,-1.25,-318.43214,329.29703)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 0,0.881 c -0.464,0.254 -1.066,0.347 -1.693,0.347 -0.997,0 -1.6,-0.37 -1.6,-1.205 0,-0.859 0.603,-1.23 1.507,-1.23 0.858,0 1.508,0.441 1.786,1.207 z m 0.093,-2.227 c -0.673,-0.812 -1.669,-1.206 -2.738,-1.206 -2.017,0 -3.665,1.228 -3.665,3.41 0,2.017 1.648,3.362 4.013,3.362 0.742,0 1.509,-0.116 2.297,-0.347 l 0,0.184 c 0,1.114 -0.626,1.6 -2.272,1.6 -1.045,0 -2.042,-0.3 -2.901,-0.788 l -0.115,0 0,2.459 c 0.788,0.463 2.181,0.858 3.548,0.858 3.109,0 4.802,-1.484 4.802,-4.082 l 0,-6.47 -2.969,0 0,1.02"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3378" />
|
||||
</g>
|
||||
<g
|
||||
id="g3380"
|
||||
transform="matrix(1.25,0,0,-1.25,-312.66214,326.92078)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 c 0,3.317 2.344,5.404 5.406,5.404 1.09,0 2.11,-0.232 2.876,-0.788 l 0,-2.621 -0.117,0 C 7.492,2.505 6.704,2.807 5.8,2.807 4.269,2.807 3.109,1.762 3.109,0 c 0,-1.762 1.16,-2.783 2.691,-2.783 0.904,0 1.692,0.302 2.365,0.813 l 0.117,0 0,-2.621 C 7.516,-5.148 6.496,-5.38 5.406,-5.38 2.344,-5.38 0,-3.317 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3382" />
|
||||
</g>
|
||||
<g
|
||||
id="g3384"
|
||||
transform="matrix(1.25,0,0,-1.25,-296.07714,327.50078)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 0,-4.684 -3.061,0 0,14.495 3.061,0 0,-8.256 3.086,4.082 3.479,0 0,-0.116 -3.711,-4.685 3.711,-5.404 0,-0.116 -3.503,0 L 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3386" />
|
||||
</g>
|
||||
<g
|
||||
id="g3388"
|
||||
transform="matrix(1.25,0,0,-1.25,-279.28839,329.29703)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 0,0.881 c -0.463,0.254 -1.067,0.347 -1.693,0.347 -0.997,0 -1.6,-0.37 -1.6,-1.205 0,-0.859 0.603,-1.23 1.506,-1.23 0.86,0 1.509,0.441 1.787,1.207 z m 0.093,-2.227 c -0.673,-0.812 -1.671,-1.206 -2.737,-1.206 -2.019,0 -3.665,1.228 -3.665,3.41 0,2.017 1.646,3.362 4.014,3.362 0.742,0 1.506,-0.116 2.295,-0.347 l 0,0.184 c 0,1.114 -0.626,1.6 -2.273,1.6 -1.043,0 -2.042,-0.3 -2.9,-0.788 l -0.116,0 0,2.459 c 0.789,0.463 2.181,0.858 3.549,0.858 3.11,0 4.803,-1.484 4.803,-4.082 l 0,-6.47 -2.97,0 0,1.02"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3390" />
|
||||
</g>
|
||||
<g
|
||||
id="g3392"
|
||||
transform="matrix(1.25,0,0,-1.25,-269.02339,322.54203)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="M 0,0 C 0.556,1.137 1.369,1.786 2.506,1.786 2.923,1.786 3.34,1.693 3.501,1.6 l 0,-2.922 -0.115,0 C 3.038,-1.182 2.621,-1.09 2.041,-1.09 1.09,-1.09 0.348,-1.647 0.092,-2.713 l 0,-5.938 -3.061,0 0,10.321 L 0,1.67 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3394" />
|
||||
</g>
|
||||
<g
|
||||
id="g3396"
|
||||
transform="matrix(1.25,0,0,-1.25,-254.49714,328.97828)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 0,3.317 c -0.51,0.742 -1.182,1.066 -1.949,1.066 -1.344,0 -2.249,-0.975 -2.249,-2.737 0,-1.762 0.905,-2.713 2.249,-2.713 0.767,0 1.439,0.325 1.949,1.067 z m 0.092,-2.436 c -0.649,-0.835 -1.67,-1.298 -3.061,-1.298 -2.645,0 -4.338,2.411 -4.338,5.38 0,2.969 1.693,5.404 4.338,5.404 1.345,0 2.319,-0.418 2.969,-1.183 l 0,5.125 3.062,0 0,-14.494 -2.97,0 0,1.066"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3398" />
|
||||
</g>
|
||||
<g
|
||||
id="g3400"
|
||||
transform="matrix(1.25,0,0,-1.25,-435.04464,339.27328)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 8.954,0 0,-1.762 -6.936,0 0,-4.429 6.286,0 0,-1.717 -6.286,0 0,-4.824 6.936,0 0,-1.762 -8.954,0 L 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3402" />
|
||||
</g>
|
||||
<g
|
||||
id="g3404"
|
||||
transform="matrix(1.25,0,0,-1.25,-414.60339,344.37453)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 c 2.296,0 3.572,-1.508 3.572,-3.988 l 0,-6.425 -1.925,0 0,6.378 c 0,1.322 -0.673,2.273 -2.134,2.273 -1.206,0 -2.227,-0.766 -2.575,-1.855 l 0,-6.796 -1.925,0 0,10.204 1.925,0 0,-1.484 C -2.459,-0.742 -1.438,0 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3406" />
|
||||
</g>
|
||||
<g
|
||||
id="g3408"
|
||||
transform="matrix(1.25,0,0,-1.25,-403.67089,344.63578)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 2.621,0 0,-1.647 -2.621,0 0,-5.496 c 0,-1.159 0.603,-1.554 1.693,-1.554 0.301,0 0.626,0.046 0.858,0.139 l 0.07,0 0,-1.646 c -0.278,-0.116 -0.673,-0.209 -1.206,-0.209 -2.39,0 -3.34,1.091 -3.34,3.084 l 0,5.682 -1.763,0 0,1.647 1.763,0 0,2.712 L 0,2.712 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3410" />
|
||||
</g>
|
||||
<g
|
||||
id="g3412"
|
||||
transform="matrix(1.25,0,0,-1.25,-396.36464,349.76578)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="M 0,0 5.08,0 C 5.011,1.507 4.268,2.666 2.691,2.666 1.23,2.666 0.278,1.576 0,0 Z m 3.039,-6.309 c -2.993,0 -5.034,1.995 -5.034,5.195 0,3.201 1.902,5.427 4.663,5.427 2.807,0 4.268,-2.018 4.268,-5.009 l 0,-0.882 -7.006,0 c 0.209,-2.064 1.532,-3.061 3.364,-3.061 1.137,0 1.948,0.255 2.853,0.928 l 0.07,0 0,-1.694 C 5.382,-6.054 4.291,-6.309 3.039,-6.309"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3414" />
|
||||
</g>
|
||||
<g
|
||||
id="g3416"
|
||||
transform="matrix(1.25,0,0,-1.25,-382.44714,346.60703)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 c 0.441,1.09 1.416,1.739 2.528,1.739 0.442,0 0.836,-0.069 0.998,-0.162 l 0,-1.901 -0.069,0 C 3.178,-0.186 2.714,-0.116 2.25,-0.116 1.207,-0.116 0.325,-0.811 0,-1.971 l 0,-6.656 -1.925,0 0,10.204 L 0,1.577 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3418" />
|
||||
</g>
|
||||
<g
|
||||
id="g3420"
|
||||
transform="matrix(1.25,0,0,-1.25,-370.26964,355.47703)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 c 1.902,0 3.016,1.507 3.016,3.572 0,2.04 -1.114,3.57 -3.016,3.57 -1.044,0 -2.018,-0.626 -2.528,-1.622 l 0,-3.921 C -2.018,0.603 -1.044,0 0,0 Z m 0.325,8.882 c 3.038,0 4.662,-2.482 4.662,-5.31 0,-2.831 -1.624,-5.312 -4.662,-5.312 -1.253,0 -2.32,0.649 -2.853,1.346 l 0,-5.057 -1.926,0 0,14.124 1.926,0 0,-1.159 c 0.533,0.719 1.6,1.368 2.853,1.368"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3422" />
|
||||
</g>
|
||||
<g
|
||||
id="g3424"
|
||||
transform="matrix(1.25,0,0,-1.25,-358.78714,346.60703)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 c 0.44,1.09 1.415,1.739 2.528,1.739 0.441,0 0.835,-0.069 0.997,-0.162 l 0,-1.901 -0.069,0 C 3.178,-0.186 2.714,-0.116 2.25,-0.116 1.206,-0.116 0.325,-0.811 0,-1.971 l 0,-6.656 -1.925,0 0,10.204 L 0,1.577 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3426" />
|
||||
</g>
|
||||
<g
|
||||
id="g3428"
|
||||
transform="matrix(1.25,0,0,-1.25,-350.90089,339.47578)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 c 0.673,0 1.229,-0.533 1.229,-1.206 0,-0.673 -0.556,-1.206 -1.229,-1.206 -0.649,0 -1.23,0.533 -1.23,1.206 C -1.23,-0.533 -0.649,0 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3430" />
|
||||
</g>
|
||||
<path
|
||||
d="m -352.08964,357.39078 2.4075,0 0,-12.755 -2.4075,0 0,12.755 z"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3432" />
|
||||
<g
|
||||
id="g3434"
|
||||
transform="matrix(1.25,0,0,-1.25,-341.09964,349.94078)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="m 0,0 c 1.461,-0.463 3.084,-1.066 3.084,-3.014 0,-2.088 -1.716,-3.155 -3.919,-3.155 -1.346,0 -2.691,0.325 -3.457,0.928 l 0,1.832 0.093,0 c 0.859,-0.788 2.134,-1.136 3.34,-1.136 1.09,0 2.065,0.418 2.065,1.299 0,0.904 -0.811,1.113 -2.413,1.646 -1.438,0.464 -3.038,0.998 -3.038,2.922 0,1.972 1.623,3.131 3.688,3.131 1.206,0 2.273,-0.255 3.131,-0.835 l 0,-1.856 -0.069,0 C 1.671,2.435 0.695,2.83 -0.511,2.83 -1.717,2.83 -2.39,2.296 -2.39,1.577 -2.39,0.765 -1.648,0.534 0,0"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3436" />
|
||||
</g>
|
||||
<g
|
||||
id="g3438"
|
||||
transform="matrix(1.25,0,0,-1.25,-332.66214,349.76578)"
|
||||
style="fill:#ffffff">
|
||||
<path
|
||||
d="M 0,0 5.079,0 C 5.01,1.507 4.268,2.666 2.69,2.666 1.229,2.666 0.278,1.576 0,0 Z m 3.038,-6.309 c -2.992,0 -5.033,1.995 -5.033,5.195 0,3.201 1.902,5.427 4.662,5.427 2.808,0 4.268,-2.018 4.268,-5.009 l 0,-0.882 -7.005,0 c 0.209,-2.064 1.531,-3.061 3.363,-3.061 1.138,0 1.949,0.255 2.853,0.928 l 0.07,0 0,-1.694 C 5.382,-6.054 4.291,-6.309 3.038,-6.309"
|
||||
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
|
||||
id="path3440" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 10 KiB |
|
@ -1,54 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="1000"
|
||||
height="400"
|
||||
id="svg4448"
|
||||
inkscape:version="0.48.5 r10040"
|
||||
sodipodi:docname="IBM_logo.svg">
|
||||
<metadata
|
||||
id="metadata4456">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs4454" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1126"
|
||||
inkscape:window-height="635"
|
||||
id="namedview4452"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.328"
|
||||
inkscape:cx="-39.634146"
|
||||
inkscape:cy="200"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg4448" />
|
||||
<path
|
||||
d="M 0,0 0,27.367 194.64844,27.367 194.64844,0 0,0 z M 222.22657,0 222.22657,27.367 499.60937,27.367 C 499.60936,27.367 471.27625,0 433.75,0 L 222.22657,0 z M 554.02344,0 554.02344,27.367 721.83594,27.367 711.875,0 554.02344,0 z M 842.14844,0 832.1875,27.367 998.47656,27.367 998.47656,0 842.14844,0 z M 0,53.22221 0,80.589202 194.64844,80.589202 194.64844,53.22221 0,53.22221 z M 222.22657,53.260975 222.22657,80.589202 531.79688,80.589202 C 531.79688,80.589214 528.18125,59.526386 521.875,53.260975 L 222.22657,53.260975 z M 554.02344,53.260975 554.02344,80.589202 740.23438,80.589202 731.01562,53.260975 554.02344,53.260975 z M 822.22656,53.260975 813.00781,80.589202 998.47656,80.589202 998.47656,53.260975 822.22656,53.260975 z M 55.937496,106.44442 55.937496,133.85017 140.23437,133.85017 140.23437,106.44442 55.937496,106.44442 z M 278.16407,106.44442 278.16407,133.85017 362.46093,133.85017 362.46093,106.44442 278.16407,106.44442 z M 444.45313,106.44442 444.45313,133.85017 528.75,133.85017 C 528.75001,133.85017 534.10156,119.37715 534.10156,106.44442 L 444.45313,106.44442 z M 609.96094,106.44442 609.96094,133.85017 759.41407,133.85017 749.45313,106.44442 609.96094,106.44442 z M 803.86719,106.44442 793.86719,133.85017 944.0625,133.85017 944.0625,106.44442 803.86719,106.44442 z M 55.937496,159.7054 55.937496,187.07238 140.23437,187.07238 140.23437,159.7054 55.937496,159.7054 z M 278.16407,159.7054 278.16407,187.07238 493.47657,187.07238 C 493.47658,187.07237 511.48781,173.0301 517.22656,159.7054 L 278.16407,159.7054 z M 609.96094,159.7054 609.96094,187.07238 694.25781,187.07238 694.25781,171.83835 699.60937,187.07238 854.02344,187.07238 859.76563,171.83835 859.76563,187.07238 944.0625,187.07238 944.0625,159.7054 785.82031,159.7054 777.42187,182.88593 768.98438,159.7054 609.96094,159.7054 z M 55.937496,212.92761 55.937496,240.29459 140.23437,240.29459 140.23437,212.92761 55.937496,212.92761 z M 278.16407,212.92761 278.16407,240.29459 517.22656,240.29459 C 511.48657,227.01331 493.47657,212.92761 493.47657,212.92761 L 278.16407,212.92761 z M 609.96094,212.92761 609.96094,240.29459 694.25781,240.29459 694.25781,212.92761 609.96094,212.92761 z M 709.57031,212.92761 719.76563,240.29459 835.54688,240.29459 845.23438,212.92761 709.57031,212.92761 z M 859.76563,212.92761 859.76563,240.29459 944.0625,240.29459 944.0625,212.92761 859.76563,212.92761 z M 55.937496,266.14982 55.937496,293.5168 140.23437,293.5168 140.23437,266.14982 55.937496,266.14982 z M 278.16407,266.14982 278.16407,293.5168 362.46093,293.5168 362.46093,266.14982 278.16407,266.14982 z M 444.45313,266.14982 444.45313,293.5168 534.10156,293.5168 C 534.10158,280.60147 528.75,266.14982 528.75,266.14982 L 444.45313,266.14982 z M 609.96094,266.14982 609.96094,293.5168 694.25781,293.5168 694.25781,266.14982 609.96094,266.14982 z M 728.71093,266.14982 738.59375,293.5168 816.21093,293.5168 826.17187,266.14982 728.71093,266.14982 z M 859.76563,266.14982 859.76563,293.5168 944.0625,293.5168 944.0625,266.14982 859.76563,266.14982 z M 1.52343,319.37203 1.52343,346.77778 196.17187,346.77778 196.17187,319.37203 1.52343,319.37203 z M 222.22657,319.37203 222.22657,346.77778 521.875,346.77778 C 528.18125,340.50245 531.79688,319.37203 531.79688,319.37203 L 222.22657,319.37203 z M 555.54687,319.37203 555.54687,346.77778 694.25781,346.77778 694.25781,319.37203 555.54687,319.37203 z M 747.89062,319.37203 758.04687,346.77778 797.53906,346.77778 807.07031,319.37203 747.89062,319.37203 z M 859.76563,319.37203 859.76563,346.77778 1000,346.77778 1000,319.37203 859.76563,319.37203 z M 1.52343,372.633 1.52343,400 196.17187,400 196.17187,372.633 1.52343,372.633 z M 222.22657,372.633 222.22657,399.96124 433.75,399.96124 C 471.27624,399.96122 499.60937,372.633 499.60937,372.633 L 222.22657,372.633 z M 555.54687,372.633 555.54687,400 694.25781,400 694.25781,372.633 555.54687,372.633 z M 767.14844,372.633 776.91407,399.92246 778.59375,399.96124 788.51563,372.633 767.14844,372.633 z M 859.76563,372.633 859.76563,400 1000,400 1000,372.633 859.76563,372.633 z"
|
||||
fill="#1f70c1"
|
||||
id="path4450"
|
||||
style="fill:#ffffff;fill-opacity:1" />
|
||||
</svg>
|
Before Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 5.3 MiB |
Before Width: | Height: | Size: 347 KiB |
Before Width: | Height: | Size: 1 MiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 1 MiB |
Before Width: | Height: | Size: 232 KiB |
Before Width: | Height: | Size: 38 KiB |
Before Width: | Height: | Size: 380 KiB |
Before Width: | Height: | Size: 208 KiB |
Before Width: | Height: | Size: 341 KiB |
Before Width: | Height: | Size: 100 KiB |
Before Width: | Height: | Size: 522 KiB |
Before Width: | Height: | Size: 821 KiB |
Before Width: | Height: | Size: 6.4 MiB |
Before Width: | Height: | Size: 3 MiB |
Before Width: | Height: | Size: 3 MiB |
Before Width: | Height: | Size: 52 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 25 KiB |
Before Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 61 KiB |
Before Width: | Height: | Size: 8.5 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 29 KiB |
Before Width: | Height: | Size: 48 KiB |
Before Width: | Height: | Size: 20 KiB |
Before Width: | Height: | Size: 25 KiB |
|
@ -1,13 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 57 57" style="enable-background:new 0 0 57 57;" xml:space="preserve">
|
||||
<style type="text/css">
|
||||
.st0{fill:#3BB0C9;}
|
||||
</style>
|
||||
<g>
|
||||
<path class="st0" d="M28.5,0C12.8,0,0,12.8,0,28.5C0,44.2,12.8,57,28.5,57C44.2,57,57,44.2,57,28.5C57,12.8,44.2,0,28.5,0z
|
||||
M34.6,28.5h-4c0,6.4,0,14.2,0,14.2h-5.9c0,0,0-7.8,0-14.2h-2.8v-5h2.8v-3.3c0-2.3,1.1-6,6-6l4.4,0v4.9c0,0-2.7,0-3.2,0
|
||||
c-0.5,0-1.3,0.3-1.3,1.4v3h4.5L34.6,28.5z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 700 B |
|
@ -1,12 +0,0 @@
|
|||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 57 55.76">
|
||||
<defs>
|
||||
<style>
|
||||
.squid {
|
||||
fill: currentColor;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<title>gitlab</title>
|
||||
<path class="squid" d="M57,28.5A28.5,28.5,0,1,0,20.17,55.76l0-.06a1.47,1.47,0,0,0,1.29-.82V49.23s-3.84.59-5.61-.08-3-1.65-4.35-4.9-3.45-2.67-3.69-3.84,2.27-.67,3.13-0.16a8.88,8.88,0,0,1,2.24,2.16c0.71,0.86,1.69,3.3,5.06,3.3a5.2,5.2,0,0,0,2.31-.08A11.15,11.15,0,0,1,21.86,45a4.64,4.64,0,0,1,1.49-4S11,40.84,10.56,28.21c0,0-.08-5.33,3.06-8.55a13.43,13.43,0,0,1,.08-7.43s3.82-.47,7.79,3a19.3,19.3,0,0,1,6.9-1.15,24.15,24.15,0,0,1,7.48,1.2,13.29,13.29,0,0,1,7.58-3.09,12.45,12.45,0,0,1,.21,7.32,11.54,11.54,0,0,1,3,8.05c0,5.23-1.78,12.5-12.86,13.39,0,0,1.88,2.51,1.88,4.71s-0.1,8.47-.1,8.47a1.76,1.76,0,0,0,1.35,1.61A28.51,28.51,0,0,0,57,28.5Z"
|
||||
transform="translate(0)" />
|
||||
</svg>
|
Before Width: | Height: | Size: 934 B |
|
@ -1,6 +0,0 @@
|
|||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 28.9 29" style="enable-background:new 0 0 28.9 29;" xml:space="preserve">
|
||||
<line id="bottom" fill="none" stroke="currentColor" stroke-width="3" x1="0" y1="27.5" x2="28.9" y2="27.5"/>
|
||||
<line id="top" fill="none" stroke="currentColor" stroke-width="3" x1="0" y1="1.5" x2="28.9" y2="1.5"/>
|
||||
<line id="middle" fill="none" stroke="currentColor" stroke-width="3" x1="0" y1="14.5" x2="28.9" y2="14.5"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 541 B |
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 24 KiB |
Before Width: | Height: | Size: 30 KiB |
Before Width: | Height: | Size: 9.6 KiB |
Before Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 18 KiB |
Before Width: | Height: | Size: 14 KiB |
|
@ -1,25 +0,0 @@
|
|||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 57 57">
|
||||
<defs>
|
||||
<style>
|
||||
.li-cls-1 {
|
||||
fill: none;
|
||||
}
|
||||
|
||||
.li-cls-2 {
|
||||
clip-path: url(#clip-path);
|
||||
}
|
||||
|
||||
.li-cls-3 {
|
||||
fill: currentColor;
|
||||
}
|
||||
</style>
|
||||
<clipPath id="clip-path">
|
||||
<rect class="li-cls-1" width="57" height="57" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<title>linked in</title>
|
||||
<g class="li-cls-2">
|
||||
<path class="li-cls-3" d="M41.48,38.41H36.07V29.7c0-2.19-.78-3.68-2.74-3.68a3,3,0,0,0-2.78,2,3.68,3.68,0,0,0-.18,1.32v9.09H25S25,23.66,25,22.13h5.41v2.3a5.37,5.37,0,0,1,4.88-2.69c3.56,0,6.23,2.32,6.23,7.32v9.33ZM19.26,19.91h0a2.82,2.82,0,1,1,.07-5.63,2.82,2.82,0,1,1,0,5.63M22,38.41H16.55V22.13H22V38.41ZM28.5,0A28.5,28.5,0,1,0,57,28.5,28.5,28.5,0,0,0,28.5,0"
|
||||
/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 981 B |
|
@ -1,62 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Generator: Adobe Illustrator 19.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
||||
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
||||
viewBox="0 0 352.7 98.6" enable-background="new 0 0 352.7 98.6" xml:space="preserve">
|
||||
<g>
|
||||
<path fill="#3BB0C9" d="M212.7,88.8v0.5l-3.5,8.3l4.7,1l3.7-9.5v-4.7h-9.6v4.4H212.7z M201.4,84.4l-4.9,2.9l1.3,3.4l2.9-1.2v8.8
|
||||
h4.8V84.4H201.4z M189.4,88.7c0.1,0.2,0.1,0.6,0.1,1c0,0.4,0,1.1,0,2.2c0,1.1,0,1.8-0.1,2.2c-0.1,0.4-0.3,0.6-0.6,0.6
|
||||
s-0.5-0.2-0.6-0.6c-0.1-0.4-0.1-1.3-0.1-2.7c0-1.4,0-2.3,0.1-2.7c0.1-0.2,0.1-0.4,0.2-0.5c0.1-0.1,0.2-0.1,0.4-0.1s0.3,0,0.4,0.1
|
||||
C189.3,88.3,189.4,88.4,189.4,88.7 M184.6,96.9c0.8,1.1,2.2,1.7,4.3,1.7c2.1,0,3.5-0.6,4.3-1.7c0.8-1.1,1.2-3,1.2-5.6
|
||||
c0-2.6-0.4-4.4-1.2-5.5c-0.8-1.1-2.2-1.7-4.3-1.7s-3.5,0.6-4.3,1.7c-0.8,1.1-1.2,3-1.2,5.5C183.3,93.9,183.7,95.8,184.6,96.9
|
||||
M181.1,94.5h-4.3l1.4-1c1.2-0.8,1.9-1.6,2.4-2.3c0.4-0.7,0.6-1.7,0.6-3c0-1.3-0.5-2.3-1.4-3c-0.9-0.7-2.2-1.1-3.8-1.1
|
||||
s-3.1,0.3-4.6,0.8l0.2,3.6l0.4-0.1c0.8-0.2,1.8-0.2,2.8-0.2c0.5,0,0.9,0,1.1,0.1c0.2,0.1,0.3,0.3,0.3,0.7c0,0.2,0,0.3-0.1,0.5
|
||||
c0,0.1-0.2,0.4-0.3,0.7c-0.2,0.3-0.4,0.6-0.7,0.8l-0.9,0.9c-0.4,0.4-0.7,0.7-1.1,1.1l-1.8,1.8v3.6h9.7V94.5z M159.9,93.9l4.1-9.7
|
||||
h-5.2l-1.4,4.2l-1.3-4.2H151l4,9.7v4.4h4.9V93.9z M142.5,90.8V88h1.1c0.8,0,1.2,0.5,1.2,1.4c0,0.9-0.3,1.4-1,1.4H142.5z
|
||||
M144.5,98.3h5l-1.4-4.8c1-0.8,1.6-2.3,1.6-4.2c0-2-0.5-3.3-1.4-4s-2.5-1.1-4.7-1.1h-6v14.2h4.9v-3.7h1.2L144.5,98.3z M129.2,88
|
||||
L130,93h-2.1l0.8-4.9H129.2z M126.9,98.3l0.3-1.6h3.2l0.4,1.6h4.9l-3.2-14.2h-7.4l-3.1,14.2H126.9z M107.9,84.2v9.1
|
||||
c0,2,0.5,3.4,1.5,4.2c1,0.8,2.6,1.2,4.7,1.2c2.1,0,3.7-0.4,4.7-1.2c1-0.8,1.5-2.2,1.5-4.2v-9h-4.9v9.3c0,0.4-0.1,0.7-0.3,0.9
|
||||
s-0.5,0.3-1,0.3c-0.5,0-0.8-0.1-1-0.3c-0.2-0.2-0.3-0.5-0.3-0.9v-9.3H107.9z M97.1,98.3v-5.8h0.3l3.2,5.8h4.8V84.2h-4.9v5.4h-0.3
|
||||
L97,84.2h-4.8v14.2H97.1z M83.8,88l0.8,4.9h-2.1l0.8-4.9H83.8z M81.5,98.3l0.3-1.6h3.2l0.4,1.6h4.9l-3.2-14.2h-7.4l-3.1,14.2H81.5z
|
||||
M70,84.2v7.4c0,1,0,1.7-0.1,2.1c0,0.3-0.1,0.4-0.1,0.5c0,0.1-0.1,0.2-0.2,0.3c-0.1,0.1-0.2,0.1-0.3,0.1c-0.1,0-0.2,0-0.4,0v4
|
||||
c0.8,0,1.5,0,2.1-0.1c1.4-0.1,2.3-0.4,2.8-0.9c0.7-0.6,1-1.7,1-3V84.2H70z M56.7,88.7c0.1,0.2,0.1,0.6,0.1,1c0,0.4,0,1.1,0,2.2
|
||||
c0,1.1,0,1.8-0.1,2.2c-0.1,0.4-0.3,0.6-0.6,0.6c-0.3,0-0.5-0.2-0.6-0.6c-0.1-0.4-0.1-1.3-0.1-2.7c0-1.4,0-2.3,0.1-2.7
|
||||
c0.1-0.2,0.1-0.4,0.2-0.5c0.1-0.1,0.2-0.1,0.4-0.1s0.3,0,0.4,0.1C56.6,88.3,56.7,88.4,56.7,88.7 M51.8,96.9
|
||||
c0.8,1.1,2.2,1.7,4.3,1.7s3.5-0.6,4.3-1.7c0.8-1.1,1.2-3,1.2-5.6c0-2.6-0.4-4.4-1.2-5.5c-0.8-1.1-2.2-1.7-4.3-1.7
|
||||
c-2,0-3.5,0.6-4.3,1.7c-0.8,1.1-1.2,3-1.2,5.5C50.6,93.9,51,95.8,51.8,96.9 M48.3,94.5h-4.3l1.4-1c1.2-0.8,1.9-1.6,2.4-2.3
|
||||
c0.4-0.7,0.6-1.7,0.6-3c0-1.3-0.5-2.3-1.4-3c-0.9-0.7-2.2-1.1-3.8-1.1c-1.6,0-3.1,0.3-4.6,0.8l0.2,3.6l0.4-0.1
|
||||
c0.8-0.2,1.8-0.2,2.8-0.2c0.5,0,0.9,0,1.1,0.1c0.2,0.1,0.3,0.3,0.3,0.7c0,0.2,0,0.3-0.1,0.5c0,0.1-0.2,0.4-0.3,0.7
|
||||
c-0.2,0.3-0.4,0.6-0.7,0.8l-0.9,0.9c-0.4,0.4-0.7,0.7-1.1,1.1l-1.8,1.8v3.6h9.7V94.5z M35.9,89.1H25.3v4.2h10.6V89.1z M18.9,93.8
|
||||
c0,0.7-0.3,1-1,1c-0.5,0-0.8-0.1-0.9-0.4c-0.2-0.3-0.2-0.7-0.2-1.4c0.4-0.2,0.8-0.3,1.2-0.3C18.6,92.8,18.9,93.1,18.9,93.8
|
||||
M22.5,88.3l0.3-3.5l-0.8-0.2c-1.6-0.4-3-0.5-4.2-0.5c-0.7,0-1.4,0.1-2.1,0.3c-0.7,0.2-1.3,0.6-1.8,1.1c-1.2,1.1-1.7,3.1-1.7,5.9
|
||||
c0,2.4,0.5,4.1,1.4,5.3c0.9,1.2,2.3,1.8,4.3,1.8c1.6,0,2.9-0.4,3.9-1.2c0.9-0.8,1.4-2,1.4-3.6c0-1.6-0.4-2.8-1.1-3.6
|
||||
c-0.8-0.8-1.9-1.2-3.6-1.2c-0.5,0-1,0.1-1.5,0.3l-0.2,0.1c0-0.5,0.2-0.8,0.4-1.1c0.2-0.2,0.6-0.4,1.2-0.4
|
||||
C19.6,88,21,88.1,22.5,88.3 M5.1,84.4l-4.9,2.9l1.3,3.4l2.9-1.2v8.8h4.8V84.4H5.1z"/>
|
||||
<path fill="#0B486B" d="M325.3,42.4v20c0,4.4,1.1,7.4,3.3,9.2c2.2,1.7,5.7,2.6,10.4,2.6c4.7,0,8.2-0.9,10.4-2.7
|
||||
c2.2-1.8,3.3-4.9,3.3-9.3V42.4h-10.8v20.4c0,0.9-0.2,1.5-0.7,1.9c-0.4,0.4-1.2,0.6-2.2,0.6c-1.1,0-1.8-0.2-2.3-0.6
|
||||
c-0.4-0.4-0.7-1-0.7-1.9V42.4H325.3z M307,50.9l1.7,10.9h-4.6l1.8-10.9H307z M302,73.5l0.7-3.6h7.1l0.9,3.6h10.9l-7-31.1h-16.3
|
||||
l-6.9,31.1H302z M287.8,64.3h-10.6v9.2h10.6V64.3z M261.4,73.5V65h8.9v-8.8h-8.9v-5h11.7v-8.8h-22.4v31.1H261.4z M226.6,73.5V60.9
|
||||
h0.7l7.1,12.7h10.6V42.4h-10.8v11.8h-0.7l-7.2-11.8h-10.6v31.1H226.6z M207.4,45.6c-2.4-2.6-6.1-3.8-11.3-3.8
|
||||
c-5.2,0-8.9,1.3-11.3,3.8c-2.4,2.6-3.5,6.7-3.5,12.3c0,5.7,1.2,9.8,3.6,12.3c2.4,2.6,6.1,3.9,11.3,3.9c5.2,0,8.9-1.3,11.3-3.8
|
||||
c2.4-2.6,3.5-6.7,3.5-12.3C211,52.3,209.8,48.2,207.4,45.6 M192.9,52.3c0.5-1.2,1.6-1.7,3.2-1.7s2.7,0.6,3.2,1.7
|
||||
c0.5,1.1,0.7,3,0.7,5.7c0,2.7-0.2,4.6-0.7,5.7c-0.5,1.1-1.6,1.7-3.2,1.7c-1.6,0-2.7-0.6-3.2-1.7c-0.5-1.2-0.8-3.1-0.8-5.7
|
||||
C192.2,55.3,192.4,53.4,192.9,52.3 M177,64.8l-7.3,0.3c-1.5,0-2.5-0.2-3.2-0.5c-0.7-0.3-1.1-1-1.4-2c-0.3-1-0.4-2.8-0.4-5.3
|
||||
c0-2.6,0.3-4.3,0.9-5.1c0.6-0.8,2-1.2,4.2-1.2c2.2,0,4.5,0.2,7,0.5l0.3-8.3l-1.6-0.3c-3-0.6-5.7-0.9-7.9-0.9c-5.4,0-9,1.1-10.9,3.4
|
||||
c-1.9,2.3-2.9,6.5-2.9,12.7c0,4.3,0.4,7.6,1.2,9.9s2.2,3.9,4,4.9c1.9,1,4.5,1.5,7.9,1.5c3.4,0,6.8-0.4,10.1-1.2L177,64.8z
|
||||
M149.2,64.3h-10.6v9.2h10.6V64.3z M107.4,42.4l6.6,16.2l-6.6,14.9h11l2.8-8.3l2.7,8.3H135l-6.3-16.3l6.7-14.8h-10.6l-3.6,8.6
|
||||
l-2.8-8.6H107.4z M76.4,42.4v20c0,4.4,1.1,7.4,3.3,9.2c2.2,1.7,5.7,2.6,10.4,2.6s8.2-0.9,10.4-2.7c2.2-1.8,3.3-4.9,3.3-9.3V42.4H93
|
||||
v20.4c0,0.9-0.2,1.5-0.7,1.9c-0.4,0.4-1.2,0.6-2.2,0.6c-1.1,0-1.8-0.2-2.3-0.6c-0.4-0.4-0.7-1-0.7-1.9V42.4H76.4z M52.6,73.5V60.9
|
||||
h0.7l7.1,12.7H71V42.4H60.2v11.8h-0.7l-7.2-11.8H41.8v31.1H52.6z M36.3,42.4H25.5v31.1h10.8V42.4z M20.9,64.8H10.8V42.4H0v31.1
|
||||
h20.9V64.8z"/>
|
||||
<path fill="#0B486B" d="M167.3,9.4v22.4h10.8V9.4h6V0.6h-23.2v8.8H167.3z M141.2,15.2V9.1h2.4c1.7,0,2.6,1,2.6,3c0,2-0.8,3-2.3,3
|
||||
H141.2z M145.7,31.7h11l-3.1-10.6c2.3-1.9,3.4-4.9,3.4-9.3c0-4.3-1-7.3-3.1-8.9c-2.1-1.6-5.5-2.4-10.3-2.4h-13.1v31.1h10.8v-8h2.6
|
||||
L145.7,31.7z M112.1,9.1l1.7,10.9h-4.6l1.8-10.9H112.1z M107,31.7l0.7-3.6h7.1l0.9,3.6h10.9l-7-31.1h-16.3l-6.9,31.1H107z
|
||||
M82.2,8.3c0.4,0.4,0.6,1,0.6,1.9s-0.2,1.5-0.6,1.9c-0.4,0.4-1,0.6-2,0.6h-2.4v-5h2.4C81.1,7.7,81.8,7.9,82.2,8.3 M82.5,20
|
||||
c0.4,0.4,0.6,1,0.6,2c0,1-0.2,1.6-0.6,2c-0.4,0.4-1.1,0.5-2.2,0.5h-2.5v-5.1h2.5C81.4,19.4,82.1,19.6,82.5,20 M67.1,31.7h14.3
|
||||
c8,0,12-2.9,12-8.8c0-2.2-0.3-3.8-0.9-4.7c-0.6-0.9-1.6-1.7-3.1-2.4c1.3-0.9,2.2-1.9,2.6-3c0.4-1.1,0.6-2.6,0.6-4.5
|
||||
c0-5.1-3.8-7.7-11.4-7.7H67.1V31.7z M58.7,3.8C56.3,1.3,52.5,0,47.4,0c-5.2,0-8.9,1.3-11.3,3.8c-2.4,2.6-3.5,6.7-3.5,12.3
|
||||
c0,5.7,1.2,9.8,3.6,12.3c2.4,2.6,6.1,3.9,11.3,3.9c5.2,0,8.9-1.3,11.3-3.8c2.4-2.6,3.5-6.7,3.5-12.3C62.2,10.5,61,6.4,58.7,3.8
|
||||
M44.2,10.5c0.5-1.2,1.6-1.7,3.2-1.7s2.7,0.6,3.2,1.7c0.5,1.1,0.7,3,0.7,5.7s-0.2,4.6-0.7,5.7c-0.5,1.1-1.6,1.7-3.2,1.7
|
||||
c-1.6,0-2.7-0.6-3.2-1.7c-0.5-1.2-0.8-3.1-0.8-5.7C43.4,13.5,43.7,11.6,44.2,10.5 M27.7,31.7V0.6H16.9v11.5h-6.1V0.6H0v31.1h10.8
|
||||
V20.9h6.1v10.9H27.7z"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 6.6 KiB |
|
@ -1,25 +0,0 @@
|
|||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 57 57">
|
||||
<defs>
|
||||
<style>
|
||||
.twtr-cls-1 {
|
||||
fill: none;
|
||||
}
|
||||
|
||||
.twtr-cls-2 {
|
||||
clip-path: url(#clip-path);
|
||||
}
|
||||
|
||||
.twtr-cls-3 {
|
||||
fill: currentColor;
|
||||
}
|
||||
</style>
|
||||
<clipPath id="clip-path" transform="translate(0 0)">
|
||||
<rect class="twtr-cls-1" width="57" height="57" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<title>twitter</title>
|
||||
<g class="twtr-cls-2">
|
||||
<path class="twtr-cls-3" d="M39.83,22.69c0,0.25,0,.5,0,0.75,0,7.73-5.88,16.64-16.64,16.64a16.55,16.55,0,0,1-9-2.63,12.38,12.38,0,0,0,1.4.08A11.72,11.72,0,0,0,22.91,35,5.86,5.86,0,0,1,17.45,31a6,6,0,0,0,1.1.1,5.89,5.89,0,0,0,1.54-.2,5.86,5.86,0,0,1-4.69-5.73V25.07A5.82,5.82,0,0,0,18,25.8,5.85,5.85,0,0,1,16.23,18,16.59,16.59,0,0,0,28.29,24.1a5.85,5.85,0,0,1,10-5.33A11.66,11.66,0,0,0,42,17.35a5.87,5.87,0,0,1-2.57,3.24,11.65,11.65,0,0,0,3.36-.92,11.84,11.84,0,0,1-2.92,3M28.5,0A28.5,28.5,0,1,0,57,28.5,28.5,28.5,0,0,0,28.5,0"
|
||||
transform="translate(0 0)" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,25 +0,0 @@
|
|||
<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 57 57">
|
||||
<defs>
|
||||
<style>
|
||||
.web-cls-1 {
|
||||
fill: none;
|
||||
}
|
||||
|
||||
.web-cls-2 {
|
||||
clip-path: url(#clip-path);
|
||||
}
|
||||
|
||||
.web-cls-3 {
|
||||
fill: currentColor;
|
||||
}
|
||||
</style>
|
||||
<clipPath id="clip-path">
|
||||
<rect class="web-cls-1" width="57" height="57" />
|
||||
</clipPath>
|
||||
</defs>
|
||||
<title>website</title>
|
||||
<g class="web-cls-2">
|
||||
<path class="web-cls-3" d="M33.78,43.33A9.74,9.74,0,0,1,27,40.49l-2.84-2.84a1.1,1.1,0,0,1,0-1.59l1.59-1.59a1.09,1.09,0,0,1,1.59,0l2.84,2.84a5,5,0,1,0,7-7l-2.84-2.84a1.1,1.1,0,0,1,0-1.59l1.59-1.59a1.1,1.1,0,0,1,1.59,0l2.84,2.84a9.56,9.56,0,0,1,2.84,6.82,9.41,9.41,0,0,1-9.44,9.44M23.21,24.81l1.59-1.59a1.09,1.09,0,0,1,1.59,0l7.5,7.5a1.09,1.09,0,0,1,0,1.59L32.3,33.9a1.09,1.09,0,0,1-1.59,0l-7.5-7.5a1.09,1.09,0,0,1,0-1.59m-0.57,6.48-1.59,1.59a1.1,1.1,0,0,1-1.59,0L16.62,30a9.56,9.56,0,0,1,6.71-16.37,9.72,9.72,0,0,1,6.82,2.84L33,19.35a1.09,1.09,0,0,1,0,1.59L31.4,22.53a1.1,1.1,0,0,1-1.6,0L27,19.69a5,5,0,0,0-3.52-1.48,5,5,0,0,0-5,5,5,5,0,0,0,1.48,3.52l2.84,2.84a1.81,1.81,0,0,1-.11,1.7M28.5,0A28.5,28.5,0,1,0,57,28.5,28.5,28.5,0,0,0,28.5,0"
|
||||
/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 377 KiB |
Before Width: | Height: | Size: 11 MiB |
Before Width: | Height: | Size: 1.5 MiB |
Before Width: | Height: | Size: 329 KiB |
Before Width: | Height: | Size: 2.2 MiB |
|
@ -1,53 +0,0 @@
|
|||
|
||||
function setupEditor(editor, textarea) {
|
||||
const session = editor.getSession();
|
||||
//editor.setTheme('ace/theme/tomorrow');
|
||||
editor.$blockScrolling = Infinity;
|
||||
editor.setOption('scrollPastEnd', false);
|
||||
session.setMode('ace/mode/markdown');
|
||||
session.setValue(textarea.val());
|
||||
session.setUseWrapMode(true);
|
||||
session.on('change', () => {
|
||||
textarea.val(session.getValue());
|
||||
});
|
||||
editor.renderer.setShowGutter(true);
|
||||
session.setTabSize(4);
|
||||
session.setUseSoftTabs(true);
|
||||
}
|
||||
|
||||
function setEditorSize(reportDiv, textArea)
|
||||
{
|
||||
var w = textArea.width();
|
||||
var h = textArea.height();
|
||||
var border = textArea.css("border");
|
||||
|
||||
reportDiv.width(w);
|
||||
reportDiv.height(h);
|
||||
|
||||
reportDiv.css("position", "relative");
|
||||
reportDiv.css("border", border);
|
||||
textArea.css("display", "none");
|
||||
}
|
||||
|
||||
function loadEditor(id) {
|
||||
var i = id;
|
||||
var el = `#${i}`;
|
||||
const editorId = `markdown-editor-${i}`;
|
||||
const reportDiv = $('<div>').attr('id', editorId);
|
||||
const $formGroup = $(el).closest('.form-group');
|
||||
const $textarea = $(el);
|
||||
|
||||
$textarea.after(reportDiv);
|
||||
editor = ace.edit(editorId);
|
||||
|
||||
setupEditor(editor, $textarea);
|
||||
|
||||
$textarea.resize(() => {
|
||||
setEditorSize(reportDiv, $textarea);
|
||||
editor.resize();
|
||||
});
|
||||
|
||||
$textarea.resize();
|
||||
|
||||
return editor;
|
||||
}
|
|
@ -1,8 +0,0 @@
|
|||
body.account-settings .account-settings,
|
||||
body.account-password .account-password,
|
||||
body.account-delete .account-delete {
|
||||
z-index: 2; // Place active items above their siblings for proper border styling
|
||||
color: @list-group-active-color;
|
||||
background-color: @list-group-active-bg;
|
||||
border-color: @list-group-active-border;
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
body {
|
||||
padding-top: 50px;
|
||||
position: relative;
|
||||
}
|
||||
section {
|
||||
padding: 20px 0px;
|
||||
}
|
||||
.modal form {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
footer {
|
||||
padding-bottom: 20px;
|
||||
}
|
||||
p.login-signup {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.feature-columns {
|
||||
.make-row();
|
||||
|
||||
> div {
|
||||
i.fa {
|
||||
margin-bottom: 0.2em;
|
||||
}
|
||||
.make-sm-column(4);
|
||||
.text-center;
|
||||
margin: 2em 0;
|
||||
}
|
||||
}
|
||||
|
||||
body.reviews.review-list .review-list,
|
||||
body.reviews.voting-status .voting-status,
|
||||
body.reviews.review-results .review-results {
|
||||
z-index: 2; // Place active items above their siblings for proper border styling
|
||||
color: @list-group-active-color;
|
||||
background-color: @list-group-active-bg;
|
||||
border-color: @list-group-active-border;
|
||||
}
|
||||
|
||||
body.reviews.voting-status {
|
||||
&.positive a.positive,
|
||||
&.negative a.negative,
|
||||
&.indifferent a.indifferent,
|
||||
&.controversial a.controversial,
|
||||
&.too_few a.too_few {
|
||||
z-index: 2;
|
||||
color: #333;
|
||||
background-color: #e6e6e6;
|
||||
border-color: #adadad;
|
||||
outline: 0;
|
||||
background-image: none;
|
||||
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
||||
}
|
||||
}
|
|
@ -1,25 +0,0 @@
|
|||
form {
|
||||
#id_body,
|
||||
#id_comment,
|
||||
#id_message,
|
||||
#id_text,
|
||||
#id_abstract,
|
||||
#id_additional_notes,
|
||||
#id_content_override,
|
||||
#id_description,
|
||||
#id_biography,
|
||||
.modal-body textarea {
|
||||
display: none
|
||||
}
|
||||
.ace_editor {
|
||||
min-height: 200px;
|
||||
width: 100%;
|
||||
border: 1px dotted #CCC;
|
||||
}
|
||||
.ace_content {
|
||||
padding: 5px;
|
||||
}
|
||||
textarea.ace_text-input {
|
||||
display: block;
|
||||
}
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
@import "bootstrap";
|
||||
@import "font-awesome";
|
||||
|
||||
@import "variables.less";
|
||||
|
||||
// Account
|
||||
@import "account.less";
|
||||
|
||||
// Symposion UI components
|
||||
@import "editor.less";
|
||||
@import "symposion-components.less";
|
||||
@import "symposion-schedule.less";
|
||||
|
||||
// Site overrides
|
||||
@import "custom.less";
|
|
@ -1,121 +0,0 @@
|
|||
// General
|
||||
body {
|
||||
padding-top: @navbar-height * 1.2;
|
||||
}
|
||||
label:not(.checkbox):not(.radio) {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
// Header
|
||||
header {
|
||||
position: relative;
|
||||
margin-bottom: 24px;
|
||||
|
||||
h1 {
|
||||
margin-bottom: 9px;
|
||||
font-size: 48px;
|
||||
letter-spacing: -1px;
|
||||
line-height: 1;
|
||||
-webkit-margin-before: 0;
|
||||
-webkit-margin-after: 0;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 30px;
|
||||
line-height: 36px;
|
||||
}
|
||||
|
||||
a, a:hover, a:visited {
|
||||
color: @gray-dark;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
// Boxes
|
||||
.content-box.editable {
|
||||
border: 1px dashed #ccc;
|
||||
padding: 1px;
|
||||
min-height: 30px;
|
||||
}
|
||||
.edit-toggle {
|
||||
position: relative;
|
||||
float: right;
|
||||
}
|
||||
|
||||
// Markitup
|
||||
div.box-content .markItUpEditor {
|
||||
font-family: @font-family-monospace;
|
||||
padding:5px;
|
||||
width:600px;
|
||||
height:320px;
|
||||
clear:both; display:block;
|
||||
overflow:auto;
|
||||
}
|
||||
|
||||
// Markitup Modal
|
||||
.modal div.markItUp {
|
||||
width: 500px;
|
||||
}
|
||||
.modal textarea.markItUpEditor {
|
||||
width: 500px;
|
||||
height: 250px;
|
||||
}
|
||||
|
||||
// Titled Form
|
||||
.titled-form {
|
||||
position: relative;
|
||||
clear: both;
|
||||
width: auto;
|
||||
margin-bottom: 2em;
|
||||
overflow: hidden;
|
||||
|
||||
.titled-form-header {
|
||||
position: relative;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
background-color: @navbar-default-bg;
|
||||
border: 1px solid #D5D5D5;
|
||||
border-radius: 4px 4px 0 0;
|
||||
-webkit-background-clip: padding-box;
|
||||
|
||||
h3 {
|
||||
position: relative;
|
||||
top: 2px;
|
||||
left: 10px;
|
||||
display: inline-block;
|
||||
margin-right: 3em;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
color: @gray-dark;
|
||||
line-height: 18px;
|
||||
text-shadow: 1px 1px 2px rgba(255,255,255,.5);
|
||||
}
|
||||
}
|
||||
|
||||
.titled-form-content {
|
||||
border: 1px solid #D5D5D5;
|
||||
.box-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
|
||||
background-color: #fff;
|
||||
border-top: none;
|
||||
padding-top: 20px;
|
||||
}
|
||||
|
||||
.form-actions {
|
||||
margin-top: 0px;
|
||||
border-radius: 0 0 4px 4px;
|
||||
.box-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
|
||||
border: 1px solid #D5D5D5;
|
||||
border-top: none;
|
||||
}
|
||||
}
|
||||
|
||||
// Footer
|
||||
.footer {
|
||||
margin-top: 45px;
|
||||
padding: 25px 0 26px;
|
||||
border-top: 1px solid #e5e5e5;
|
||||
}
|
||||
.footer p {
|
||||
margin-bottom: 0;
|
||||
color: #555;
|
||||
}
|
|
@ -1,52 +0,0 @@
|
|||
table.calendar {
|
||||
background-color: #fffff;
|
||||
table-layout: fixed;
|
||||
font-size: 12px;
|
||||
|
||||
tr {
|
||||
min-height: 36px;
|
||||
}
|
||||
|
||||
th {
|
||||
text-align: center;
|
||||
|
||||
&.time {
|
||||
width: 40px;
|
||||
}
|
||||
}
|
||||
|
||||
td {
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
|
||||
&.time {
|
||||
vertical-align: top;
|
||||
padding-top: 0;
|
||||
margin-top: 0;
|
||||
color: #444;
|
||||
font-size: 11px;
|
||||
}
|
||||
|
||||
&.slot {
|
||||
font-weight: bold;
|
||||
text-shadow: #fff 0px 1px 0px;
|
||||
|
||||
// Customize for slot types per site
|
||||
&.slot-break { background-color: #ECFFFF; }
|
||||
&.slot-plenary { background-color: lighten(#DCDCFF, 3%); }
|
||||
p {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
|
||||
span.title {
|
||||
font-weight: bold;
|
||||
display: block;
|
||||
}
|
||||
span.speaker {
|
||||
font-weight: normal;
|
||||
display:block;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,3 +0,0 @@
|
|||
@font-family-sans-serif: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
||||
@font-family-serif: Georgia, "Times New Roman", Times, serif;
|
||||
@font-family-monospace: Menlo, Monaco, Consolas, "Courier New", monospace;
|
Before Width: | Height: | Size: 38 KiB |