new-style themes
|
|
@ -1,959 +0,0 @@
|
|||
/* fixme: it wouldn't hurt if focus was blue */
|
||||
|
||||
html:fullscreen {
|
||||
background: rgb(16, 16, 16);
|
||||
}
|
||||
html:-moz-full-screen {
|
||||
background: rgb(16, 16, 16);
|
||||
}
|
||||
html:-webkit-full-screen {
|
||||
background: rgb(16, 16, 16);
|
||||
}
|
||||
|
||||
body.OxThemeModern {
|
||||
background: rgb(16, 16, 16);
|
||||
}
|
||||
.OxThemeModern a {
|
||||
color: rgb(128, 128, 255);
|
||||
}
|
||||
.OxThemeModern div {
|
||||
color: rgb(240, 240, 240);
|
||||
}
|
||||
.OxThemeModern .OxHighlight {
|
||||
//background: rgb(255, 255, 0);
|
||||
//font-weight: bold;
|
||||
//color: rgb(0, 0, 0);
|
||||
color: rgb(255, 255, 0);
|
||||
}
|
||||
.OxThemeModern .OxBright {
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
.OxThemeModern .OxLight {
|
||||
color: rgb(128, 128, 128);
|
||||
}
|
||||
.OxThemeModern .OxGrid {
|
||||
background-color: rgb(8, 8, 8);
|
||||
background-image:
|
||||
-moz-linear-gradient(45deg, rgb(24, 24, 24) 25%, transparent 25%, transparent 75%, rgb(24, 24, 24) 75%, rgb(24, 24, 24)),
|
||||
-moz-linear-gradient(45deg, rgb(24, 24, 24) 25%, transparent 25%, transparent 75%, rgb(24, 24, 24) 75%, rgb(24, 24, 24));
|
||||
background-image:
|
||||
-o-linear-gradient(45deg, rgb(24, 24, 24) 25%, transparent 25%, transparent 75%, rgb(24, 24, 24) 75%, rgb(24, 24, 24)),
|
||||
-o-linear-gradient(45deg, rgb(24, 24, 24) 25%, transparent 25%, transparent 75%, rgb(24, 24, 24) 75%, rgb(24, 24, 24));
|
||||
background-image:
|
||||
-webkit-linear-gradient(45deg, rgb(24, 24, 24) 25%, transparent 25%, transparent 75%, rgb(24, 24, 24) 75%, rgb(24, 24, 24)),
|
||||
-webkit-linear-gradient(45deg, rgb(24, 24, 24) 25%, transparent 25%, transparent 75%, rgb(24, 24, 24) 75%, rgb(24, 24, 24));
|
||||
background-size: 32px 32px;
|
||||
background-position: 0 0, 16px 16px
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Bars
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxBar.OxHorizontal {
|
||||
//background: -moz-linear-gradient(left top, left bottom, from(rgb(96, 96, 96)), to(rgb(64, 64, 64)));
|
||||
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(96, 96, 96)), to(rgb(64, 64, 64)));
|
||||
background-image: -moz-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
|
||||
background-image: -o-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
|
||||
background-image: -webkit-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
|
||||
}
|
||||
|
||||
.OxThemeModern .OxProgressbar {
|
||||
border-color: rgb(48, 48, 48);
|
||||
background-image: -moz-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background-image: -o-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background-image: -webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
}
|
||||
.OxThemeModern .OxProgressbar .OxTrack {
|
||||
border-color: rgb(48, 48, 48);
|
||||
background-image: -moz-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
|
||||
background-image: -o-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
|
||||
background-image: -webkit-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
|
||||
}
|
||||
.OxThemeModern .OxProgressbar .OxProgress {
|
||||
border-color: rgb(48, 48, 48);
|
||||
background-image:
|
||||
-moz-repeating-linear-gradient(
|
||||
-45deg, transparent 0, transparent 25%,
|
||||
rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 50%,
|
||||
transparent 50%, transparent 75%,
|
||||
rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 100%
|
||||
),
|
||||
-moz-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background-image:
|
||||
-o-repeating-linear-gradient(
|
||||
-45deg, transparent 0, transparent 25%,
|
||||
rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 50%,
|
||||
transparent 50%, transparent 75%,
|
||||
rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 100%
|
||||
),
|
||||
-o-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background-image:
|
||||
-webkit-repeating-linear-gradient(
|
||||
-45deg, transparent 0, transparent 25%,
|
||||
rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.05) 50%,
|
||||
transparent 50%, transparent 75%,
|
||||
rgba(255, 255, 255, 0.05) 75%, rgba(255, 255, 255, 0.05) 100%
|
||||
),
|
||||
-webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background-size: 32px 32px, 16px 16px;
|
||||
}
|
||||
.OxThemeModern .OxProgressbar .OxProgress.OxAnimate {
|
||||
background-image:
|
||||
-moz-repeating-linear-gradient(
|
||||
-45deg, transparent 0, transparent 25%,
|
||||
rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 50%,
|
||||
transparent 50%, transparent 75%,
|
||||
rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.1) 100%
|
||||
),
|
||||
-moz-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background-image:
|
||||
-o-repeating-linear-gradient(
|
||||
-45deg, transparent 0, transparent 25%,
|
||||
rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 50%,
|
||||
transparent 50%, transparent 75%,
|
||||
rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.1) 100%
|
||||
),
|
||||
-o-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background-image:
|
||||
-webkit-repeating-linear-gradient(
|
||||
-45deg, transparent 0, transparent 25%,
|
||||
rgba(255, 255, 255, 0.1) 25%, rgba(255, 255, 255, 0.1) 50%,
|
||||
transparent 50%, transparent 75%,
|
||||
rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.1) 100%
|
||||
),
|
||||
-webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
}
|
||||
|
||||
.OxThemeModern .OxResizebar > .OxLine {
|
||||
background-color: rgb(48, 48, 48);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Calendar
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxCalendar .OxTimeline > div.odd {
|
||||
background-image: -moz-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
|
||||
background-image: -o-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
|
||||
background-image: -webkit-linear-gradient(top, rgb(64, 64, 64), rgb(32, 32, 32));
|
||||
}
|
||||
|
||||
.OxThemeModern .OxCalendar .OxTimeline > div.even {
|
||||
background-image: -moz-linear-gradient(top, rgb(48, 48, 48), rgb(24, 24, 24));
|
||||
background-image: -o-linear-gradient(top, rgb(48, 48, 48), rgb(24, 24, 24));
|
||||
background-image: -webkit-linear-gradient(top, rgb(48, 48, 48), rgb(24, 24, 24));
|
||||
}
|
||||
|
||||
.OxThemeModern .OxCalendar .OxBackground > div {
|
||||
//background: rgb(20, 20, 20);
|
||||
background: rgb(24, 24, 24);
|
||||
}
|
||||
.OxThemeModern .OxCalendar .OxBackground > div.line {
|
||||
background: rgb(32, 32, 32);
|
||||
}
|
||||
|
||||
.OxThemeModern .OxCalendar .OxLine > .OxEvent {
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
.OxThemeModern .OxCalendar .OxLine > .OxEvent.OxSelected {
|
||||
box-shadow: inset 0 0 1px rgb(255, 255, 255),
|
||||
inset 0 0 1px rgb(255, 255, 255),
|
||||
inset 0 0 1px rgb(255, 255, 255),
|
||||
inset 0 0 1px rgb(255, 255, 255);
|
||||
}
|
||||
.OxThemeModern .OxEvent.OxDate {
|
||||
background: -moz-linear-gradient(top, rgba(96, 96, 192, 0.9), rgba(64, 64, 160, 0.9));
|
||||
background: -o-linear-gradient(top, rgba(96, 96, 192, 0.9), rgba(64, 64, 160, 0.9));
|
||||
background: -webkit-linear-gradient(top, rgba(96, 96, 255, 0.9), rgba(64, 64, 224, 0.9));
|
||||
}
|
||||
.OxThemeModern .OxEvent.OxPlace {
|
||||
background: -moz-linear-gradient(top, rgba(0, 128, 96, 0.9), rgba(0, 96, 64, 0.9));
|
||||
background: -o-linear-gradient(top, rgba(0, 128, 96, 0.9), rgba(0, 96, 64, 0.9));
|
||||
background: -webkit-linear-gradient(top, rgba(0, 128, 96, 0.9), rgba(0, 96, 64, 0.9));
|
||||
}
|
||||
.OxThemeModern .OxEvent.OxPerson {
|
||||
background: -moz-linear-gradient(top, rgba(255, 96, 0, 0.9), rgba(224, 64, 0, 0.9));
|
||||
background: -o-linear-gradient(top, rgba(255, 96, 0, 0.9), rgba(224, 64, 0, 0.9));
|
||||
background: -webkit-linear-gradient(top, rgba(255, 96, 0, 0.9), rgba(224, 64, 0, 0.9));
|
||||
}
|
||||
.OxThemeModern .OxEvent.OxOther {
|
||||
background: -moz-linear-gradient(top, rgba(192, 32, 32, 0.9), rgba(160, 0, 0, 0.9));
|
||||
background: -o-linear-gradient(top, rgba(192, 32, 32, 0.9), rgba(160, 0, 0, 0.9));
|
||||
background: -webkit-linear-gradient(top, rgba(192, 32, 32, 0.9), rgba(160, 0, 0, 0.9));
|
||||
}
|
||||
|
||||
|
||||
.OxThemeModern .OxCalendar .OxOverlay div:nth-child(even) {
|
||||
background-color: rgba(255, 255, 255, 0.25);
|
||||
box-shadow: inset 0 0 2px rgb(255, 255, 255);
|
||||
}
|
||||
.OxThemeModern .OxCalendar .OxOverlay div:nth-child(odd) {
|
||||
background-color: rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
||||
.OxThemeModern .OxCalendar .OxCalendarControl,
|
||||
.OxThemeModern .OxCalendar .OxEventControl {
|
||||
border-color: rgb(192, 192, 192);
|
||||
background: rgba(0, 0, 0, 0.75);
|
||||
color: rgb(192, 192, 192);
|
||||
}
|
||||
|
||||
.OxThemeModern .OxCalendarEditor .OxWarning {
|
||||
border-bottom: 2px dotted rgb(192, 0, 0);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Dialog
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxDialog {
|
||||
-moz-box-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
|
||||
-o-box-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
|
||||
-webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, 1);
|
||||
}
|
||||
|
||||
.OxThemeModern .OxDialog .OxBar {
|
||||
background: -moz-linear-gradient(top, rgba(64, 64, 64, 0.95), rgba(32, 32, 32, 0.95));
|
||||
background: -o-linear-gradient(top, rgba(64, 64, 64, 0.95), rgba(32, 32, 32, 0.95));
|
||||
background: -webkit-linear-gradient(top, rgba(64, 64, 64, 0.95), rgba(32, 32, 32, 0.95));
|
||||
}
|
||||
|
||||
.OxThemeModern .OxDialog .OxContent {
|
||||
background: rgba(48, 48, 48, 0.95);
|
||||
}
|
||||
.OxThemeModern .OxDialog .OxIconList .OxContent {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
.OxThemeModern .OxLayer {
|
||||
background: rgb(0, 0, 0);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
DocPage
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxFailed {
|
||||
color: rgb(192, 0, 0);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Document
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxDocument code {
|
||||
color: rgb(192, 192, 255);
|
||||
}
|
||||
.OxThemeModern .OxDocument div {
|
||||
border-color: rgb(48, 48, 48);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Forms
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
/*
|
||||
.OxThemeModern .OxInput::-selection {
|
||||
background: rgb(80, 80, 80);
|
||||
}
|
||||
*/
|
||||
|
||||
.OxThemeModern input.OxCheckbox,
|
||||
.OxThemeModern input.OxInput,
|
||||
.OxThemeModern textarea,
|
||||
.OxThemeModern .OxButton,
|
||||
.OxThemeModern .OxLabel,
|
||||
.OxThemeModern .OxTrack {
|
||||
//border: 1px solid rgb(80, 80, 80);
|
||||
border-color: rgb(48, 48, 48);
|
||||
color: rgb(192, 192, 192);
|
||||
}
|
||||
.OxThemeModern .OxSelect {
|
||||
border-color: rgb(48, 48, 48);
|
||||
}
|
||||
.OxThemeModern .OxSelect > .OxTitle {
|
||||
color: rgb(192, 192, 192);
|
||||
}
|
||||
|
||||
.OxThemeModern .OxInput {
|
||||
color: rgb(192, 192, 192);
|
||||
}
|
||||
.OxThemeModern .OxButton,
|
||||
.OxThemeModern div.OxInput,
|
||||
.OxThemeModern .OxSelect {
|
||||
background: -moz-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background: -o-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background: -webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
//background: -moz-linear-gradient(left top, left bottom, from(rgb(64, 64, 64)), to(rgb(32, 32, 32)));
|
||||
//background: -webkit-gradient(linear, left top, left bottom, from(rgb(64, 64, 64)), to(rgb(32, 32, 32)));
|
||||
}
|
||||
.OxThemeModern div.OxInput.OxTextarea {
|
||||
background: transparent;
|
||||
}
|
||||
.OxThemeModern .OxButton:active {
|
||||
background: rgb(80, 80, 80);
|
||||
color: rgb(208, 208, 208);
|
||||
}
|
||||
.OxThemeModern .OxCheckbox:active {
|
||||
background: -moz-linear-gradient(top, rgb(16, 16, 16), rgb(48, 48, 48));
|
||||
background: -o-linear-gradient(top, rgb(16, 16, 16), rgb(48, 48, 48));
|
||||
background: -webkit-linear-gradient(top, rgb(16, 16, 16), rgb(48, 48, 48));
|
||||
}
|
||||
|
||||
.OxThemeModern .OxButton.OxDisabled {
|
||||
background: rgb(80, 80, 80);
|
||||
color: rgb(128, 128, 128);
|
||||
}
|
||||
.OxThemeModern .OxButton.OxSymbol.OxDisabled {
|
||||
background: rgba(0, 0, 0, 0);
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.OxThemeModern .OxButton.OxSelected,
|
||||
.OxThemeModern .OxSelect.OxSelected,
|
||||
.OxThemeModern .OxCollapsePanel > .OxBar > .OxExtras > .OxSelect.OxSelected {
|
||||
background: -moz-linear-gradient(top, rgb(32, 32, 32), rgb(64, 64, 64));
|
||||
background: -o-linear-gradient(top, rgb(32, 32, 32), rgb(64, 64, 64));
|
||||
background: -webkit-linear-gradient(top, rgb(32, 32, 32), rgb(64, 64, 64));
|
||||
color: rgb(224, 224, 224);
|
||||
}
|
||||
.OxThemeModern .OxButton.OxTab.OxSelected {
|
||||
border-bottom: 1px solid rgb(64, 64, 64);
|
||||
}
|
||||
|
||||
.OxThemeModern .OxFileInput.OxDisabled > .OxBar {
|
||||
background: rgb(80, 80, 80);
|
||||
}
|
||||
.OxThemeModern .OxFileInput.OxDisabled > .OxBar > div {
|
||||
color: rgb(128, 128, 128);
|
||||
}
|
||||
|
||||
.OxThemeModern .OxFormMessage {
|
||||
color: rgb(255, 64, 64);
|
||||
}
|
||||
|
||||
.OxThemeModern .OxLabel.OxDisabled {
|
||||
color: rgb(128, 128, 128);
|
||||
}
|
||||
.OxThemeModern .OxDocPage .OxLabel.OxSquare,
|
||||
.OxThemeModern .OxExamplePage .OxLabel.OxSquare {
|
||||
background: rgb(16, 16, 16);
|
||||
}
|
||||
|
||||
.OxThemeModern input.OxCheckbox,
|
||||
.OxThemeModern input.OxInput,
|
||||
.OxThemeModern textarea,
|
||||
.OxThemeModern .OxTrack {
|
||||
background: -moz-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
|
||||
background: -o-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
|
||||
background: -webkit-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
|
||||
}
|
||||
.OxThemeModern div.OxInput.OxError input {
|
||||
color: rgb(255, 64, 64);
|
||||
}
|
||||
.OxThemeModern div.OxInput.OxFocus,
|
||||
.OxThemeModern .OxSelect.OxFocus {
|
||||
//border: 1px solid rgb(80, 80, 80);
|
||||
-moz-box-shadow: 0 0 2px rgb(128, 128, 128);
|
||||
-o-box-shadow: 0 0 2px rgb(128, 128, 128);
|
||||
-webkit-box-shadow: 0 0 2px rgb(128, 128, 128);
|
||||
}
|
||||
.OxThemeModern div.OxInput.OxFocus > .OxInputLabel {
|
||||
border-color: rgb(80, 80, 80);
|
||||
}
|
||||
.OxThemeModern .OxInput.OxPlaceholder {
|
||||
color: rgb(96, 96, 96)
|
||||
}
|
||||
.OxThemeModern .OxLabel {
|
||||
border-color: rgb(48, 48, 48);
|
||||
background: rgb(80, 80, 80);
|
||||
color: rgb(192, 192, 192);
|
||||
}
|
||||
|
||||
.OxThemeModern input.OxCheckbox.OxDisabled,
|
||||
.OxThemeModern input.OxInput:disabled {
|
||||
background: rgb(16, 16, 16);
|
||||
}
|
||||
|
||||
.OxThemeModern .OxLabelSelect > .OxTitle {
|
||||
border-color: rgb(48, 48, 48);
|
||||
background: -moz-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background: -o-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
background: -webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
}
|
||||
.OxThemeModern .OxLabelSelect.OxSelected > .OxTitle {
|
||||
background: -moz-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32) 10%, rgb(64, 64, 64));
|
||||
background: -o-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32) 10%, rgb(64, 64, 64));
|
||||
background: -webkit-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32) 10%, rgb(64, 64, 64));
|
||||
}
|
||||
|
||||
.OxThemeModern .OxFileInput > .OxBar,
|
||||
.OxThemeModern .OxFileInput > .OxFiles {
|
||||
border-color: rgb(48, 48, 48);
|
||||
}
|
||||
|
||||
.OxThemeModern .OxArrayEditable.OxArrayEditableTextarea .OxEditableElement {
|
||||
border-top-color: rgb(48, 48, 48);
|
||||
}
|
||||
.OxThemeModern .OxEditableElement.OxSelected {
|
||||
background: rgb(48, 48, 48);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Images
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxReflection > div {
|
||||
background: -moz-linear-gradient(top, rgba(16, 16, 16, 0.75), rgba(16, 16, 16, 1));
|
||||
background: -o-linear-gradient(top, rgba(16, 16, 16, 0.75), rgba(16, 16, 16, 1));
|
||||
background: -webkit-linear-gradient(top, rgba(16, 16, 16, 0.75), rgba(16, 16, 16, 1));
|
||||
}
|
||||
.OxThemeModern .OxDialog .OxReflection > div {
|
||||
background: -moz-linear-gradient(top, rgba(48, 48, 48, 0.75), rgba(48, 48, 48, 1));
|
||||
background: -o-linear-gradient(top, rgba(48, 48, 48, 0.75), rgba(48, 48, 48, 1));
|
||||
background: -webkit-linear-gradient(top, rgba(48, 48, 48, 0.75), rgba(48, 48, 48, 1));
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Lists
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxIconList .OxItem > .OxIcon > img.OxLoading,
|
||||
.OxThemeModern .OxInfoList .OxItem .OxIcon > img.OxLoading {
|
||||
border-color: rgb(48, 48, 48);
|
||||
background: -moz-linear-gradient(top, rgb(32, 32, 32), rgb(0, 0, 0));
|
||||
background: -o-linear-gradient(top, rgb(32, 32, 32), rgb(0, 0, 0));
|
||||
background: -webkit-linear-gradient(top, rgb(32, 32, 32), rgb(0, 0, 0));
|
||||
}
|
||||
.OxThemeModern .OxIconList .OxItem.OxSelected > .OxIcon > img,
|
||||
.OxThemeModern .OxIconList .OxItem.OxSelected > .OxIcon > .OxVideoPlayer,
|
||||
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxIcon > img,
|
||||
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxIcon > .OxVideoPlayer {
|
||||
border-color: rgb(64, 64, 64);
|
||||
-moz-box-shadow: 0 0 4px rgba(64, 64, 64, 1);
|
||||
-o-box-shadow: 0 0 4px rgba(64, 64, 64, 1);
|
||||
-webkit-box-shadow: 0 0 4px rgba(64, 64, 64, 1);
|
||||
}
|
||||
.OxThemeModern .OxIconList.OxFocus .OxItem.OxSelected > .OxIcon > img,
|
||||
.OxThemeModern .OxIconList.OxFocus .OxItem.OxSelected > .OxIcon .OxVideoPlayer,
|
||||
.OxThemeModern .OxInfoList.OxFocus .OxItem.OxSelected .OxIcon > img,
|
||||
.OxThemeModern .OxInfoList.OxFocus .OxItem.OxSelected .OxIcon .OxVideoPlayer {
|
||||
border-color: rgb(128, 128, 128);
|
||||
-moz-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
|
||||
-o-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
|
||||
-webkit-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
|
||||
}
|
||||
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxIconList .OxIcon > img,
|
||||
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxIconList .OxIcon .OxVideoPlayer {
|
||||
border-color: rgba(0, 0, 0, 0);
|
||||
-moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
||||
-o-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
||||
-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
||||
}
|
||||
.OxThemeModern .OxIconList .OxItem > .OxText > div,
|
||||
.OxThemeModern .OxInfoList .OxItem .OxText > div {
|
||||
text-shadow: rgb(0, 0, 0) -1px -1px 0,
|
||||
rgb(0, 0, 0) -1px 1px 0,
|
||||
rgb(0, 0, 0) 1px -1px 0,
|
||||
rgb(0, 0, 0) 1px 1px 0;
|
||||
}
|
||||
.OxThemeModern .OxIconList .OxItem.OxSelected > .OxText > div,
|
||||
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxText > div {
|
||||
border-color: rgb(92, 92, 92);
|
||||
background: rgba(92, 92, 92, 0.5);
|
||||
text-shadow: rgb(16, 16, 16) -1px -1px 0,
|
||||
rgb(16, 16, 16) -1px 1px 0,
|
||||
rgb(16, 16, 16) 1px -1px 0,
|
||||
rgb(16, 16, 16) 1px 1px 0;
|
||||
-moz-box-shadow: 0 0 4px rgba(64, 64, 64, 1);
|
||||
-o-box-shadow: 0 0 4px rgba(64, 64, 64, 1);
|
||||
-webkit-box-shadow: 0 0 4px rgba(64, 64, 64, 1);
|
||||
}
|
||||
.OxThemeModern .OxIconList.OxFocus .OxItem.OxSelected > .OxText > div,
|
||||
.OxThemeModern .OxInfoList.OxFocus .OxItem.OxSelected .OxText > div {
|
||||
border-color: rgb(128, 128, 128);
|
||||
background: rgba(128, 128, 128, 0.5);
|
||||
text-shadow: rgb(32, 32, 32) -1px -1px 0,
|
||||
rgb(32, 32, 32) -1px 1px 0,
|
||||
rgb(32, 32, 32) 1px -1px 0,
|
||||
rgb(32, 32, 32) 1px 1px 0;
|
||||
-moz-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
|
||||
-o-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
|
||||
-webkit-box-shadow: 0 0 4px rgba(128, 128, 128, 1);
|
||||
}
|
||||
.OxThemeModern .OxIconList .OxItem > .OxText > div > .OxInfo,
|
||||
.OxThemeModern .OxInfoList .OxItem .OxText > div > .OxInfo {
|
||||
color: rgb(128, 128, 128);
|
||||
}
|
||||
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon > img,
|
||||
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxInfoElement .OxIcon .OxVideoPlayer,
|
||||
.OxThemeModern .OxInfoList .OxItem.OxSelected .OxInfoElement .OxText > div {
|
||||
border-color: rgba(0, 0, 0, 0);
|
||||
background: rgba(0, 0, 0, 0);
|
||||
-moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
||||
-o-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
||||
-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
|
||||
}
|
||||
|
||||
|
||||
.OxThemeModern .OxTableList .OxContent {
|
||||
background: rgb(16, 16, 16);
|
||||
}
|
||||
.OxThemeModern .OxTableList .OxItem .OxCell {
|
||||
border-right-color: rgb(32, 32, 32);
|
||||
}
|
||||
.OxThemeModern .OxCustomList .OxItem:nth-child(odd),
|
||||
.OxThemeModern .OxTableList .OxItem:nth-child(odd) {
|
||||
background: rgb(14, 14, 14);
|
||||
}
|
||||
.OxThemeModern .OxCustomList .OxItem:nth-child(even),
|
||||
.OxThemeModern .OxTableList .OxItem:nth-child(even) {
|
||||
background: rgb(18, 18, 18);
|
||||
}
|
||||
.OxThemeModern .OxCustomList .OxItem.OxSelected:nth-child(odd),
|
||||
.OxThemeModern .OxTableList .OxItem.OxSelected:nth-child(odd) {
|
||||
background: rgb(46, 46, 46);
|
||||
}
|
||||
.OxThemeModern .OxCustomList .OxItem.OxSelected:nth-child(even),
|
||||
.OxThemeModern .OxTableList .OxItem.OxSelected:nth-child(even) {
|
||||
background: rgb(50, 50, 50);
|
||||
}
|
||||
.OxThemeModern .OxCustomList .OxFocus .OxItem.OxSelected:nth-child(odd),
|
||||
.OxThemeModern .OxTableList .OxFocus .OxItem.OxSelected:nth-child(odd) {
|
||||
background: rgb(62, 62, 62);
|
||||
}
|
||||
.OxThemeModern .OxCustomList .OxFocus .OxItem.OxSelected:nth-child(even),
|
||||
.OxThemeModern .OxTableList .OxFocus .OxItem.OxSelected:nth-child(even) {
|
||||
background: rgb(66, 66, 66);
|
||||
}
|
||||
.OxThemeModern .OxTableList .OxItem.OxDroppable.OxDrop:nth-child(odd) .OxCell {
|
||||
background: rgb(78, 78, 78);
|
||||
}
|
||||
.OxThemeModern .OxTableList .OxItem.OxDroppable.OxDrop:nth-child(even) .OxCell {
|
||||
background: rgb(82, 82, 82);
|
||||
}
|
||||
|
||||
|
||||
.OxThemeModern .OxTableList .OxHead .OxSelected {
|
||||
background: -moz-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
|
||||
background: -o-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
|
||||
background: -webkit-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
.OxThemeModern .OxTableList .OxHead .OxResize .OxCenter {
|
||||
background: rgb(24, 24, 24);
|
||||
}
|
||||
.OxThemeModern .OxTableList .OxBar .OxSelect:not(.OxSelected) {
|
||||
background: rgba(0, 0, 0, 0);
|
||||
}
|
||||
.OxThemeModern .OxTableList .OxHead .OxSelect,
|
||||
.OxThemeModern .OxTableList .OxBar .OxClear {
|
||||
border-color: rgb(24, 24, 24);
|
||||
}
|
||||
.OxThemeModern .OxTableList .OxBody .OxItem .OxCell {
|
||||
border-right-color: rgb(24, 24, 24);
|
||||
}
|
||||
.OxThemeModern .OxTableList .OxItem.OxSelected .OxCell {
|
||||
border-right-color: rgb(40, 40, 40);
|
||||
}
|
||||
.OxThemeModern .OxTableList .OxFocus .OxItem.OxSelected .OxCell {
|
||||
border-right-color: rgb(72, 72, 72);
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
.OxThemeModern .OxTableList .OxBody .OxItem .OxLine {
|
||||
background: rgb(24, 24, 24);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Maps
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxMap .OxMapControl,
|
||||
.OxThemeModern .OxMap .OxPlaceControl {
|
||||
border-color: rgb(192, 192, 192);
|
||||
background: rgba(0, 0, 0, 0.5);
|
||||
color: rgb(192, 192, 192);
|
||||
}
|
||||
.OxThemeModern .OxTypeIcon {
|
||||
border-color: rgb(255, 255, 255);
|
||||
}
|
||||
.OxThemeModern .OxMapEditor .OxWarning {
|
||||
border-bottom: 2px dotted rgb(192, 0, 0);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Menus
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxMainMenu > .OxTitle.OxSelected {
|
||||
background: -moz-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
|
||||
background: -o-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
|
||||
background: -webkit-linear-gradient(top, rgb(80, 80, 80), rgb(48, 48, 48));
|
||||
}
|
||||
|
||||
.OxThemeModern .OxMenu {
|
||||
-moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
|
||||
-o-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
|
||||
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.75);
|
||||
}
|
||||
.OxThemeModern .OxMenu .OxBottom,
|
||||
.OxThemeModern .OxMenu .OxItem,
|
||||
.OxThemeModern .OxMenu .OxScrollbar,
|
||||
.OxThemeModern .OxMenu .OxSpace,
|
||||
.OxThemeModern .OxMenu .OxTop {
|
||||
background: rgba(48, 48, 48, 0.96);
|
||||
}
|
||||
.OxThemeModern .OxMenu .OxItem.OxSelected,
|
||||
.OxThemeModern .OxMenu .OxLine,
|
||||
.OxThemeModern .OxMenu .OxScrollbar.OxSelected {
|
||||
background: rgba(64, 64, 64, 0.96);
|
||||
}
|
||||
.OxThemeModern .OxMenu .OxItem.OxDisabled .OxCell {
|
||||
color: rgb(128, 128, 128);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Scrollbars
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern ::-webkit-scrollbar:horizontal {
|
||||
border-top: 1px solid rgb(48, 48, 48);
|
||||
border-bottom: 1px solid rgb(48, 48, 48);
|
||||
background: -webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar:vertical {
|
||||
border-left: 1px solid rgb(48, 48, 48);
|
||||
border-right: 1px solid rgb(48, 48, 48);
|
||||
background: -webkit-linear-gradient(left, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-button:horizontal:decrement {
|
||||
background: url(../png/scrollbarHorizontalDecrement.png);
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-button:horizontal:increment {
|
||||
background: url(../png/scrollbarHorizontalIncrement.png);
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-button:vertical:decrement {
|
||||
background: url(../png/scrollbarVerticalDecrement.png);
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-button:vertical:increment {
|
||||
background: url(../png/scrollbarVerticalIncrement.png);
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-corner {
|
||||
border-right: 1px solid rgb(48, 48, 48);
|
||||
border-bottom: 1px solid rgb(48, 48, 48);
|
||||
background: -webkit-linear-gradient(left top, rgb(96, 96, 96), rgb(32, 32, 32));
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-thumb {
|
||||
border: 1px solid rgb(48, 48, 48);
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-thumb:horizontal {
|
||||
background: -webkit-linear-gradient(top, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-thumb:vertical {
|
||||
background: -webkit-linear-gradient(left, rgb(96, 96, 96), rgb(64, 64, 64));
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-track {
|
||||
border: 1px solid rgb(32, 32, 32);
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-track:horizontal {
|
||||
background: -webkit-linear-gradient(top, rgb(0, 0, 0), rgb(32, 32, 32));
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar-track:vertical {
|
||||
background: -webkit-linear-gradient(left, rgb(0, 0, 0), rgb(32, 32, 32));
|
||||
}
|
||||
.OxThemeModern ::-webkit-scrollbar:active,
|
||||
.OxThemeModern ::-webkit-scrollbar-thumb:active {
|
||||
background: rgb(64, 64, 64);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
SourceViewer
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxSourceViewer .OxComment {
|
||||
border-color: rgb(48, 48, 48);
|
||||
}
|
||||
.OxThemeModern .OxSourceViewer .OxComment code {
|
||||
background-color: rgb(0, 0, 0);
|
||||
box-shadow: 0 0 1px rgb(255, 255, 255);
|
||||
}
|
||||
.OxThemeModern .OxSourceViewer .OxComment pre > code {
|
||||
background-color: transparent;
|
||||
box-shadow: none;
|
||||
}
|
||||
.OxThemeModern .OxSourceViewer .OxCode {
|
||||
background-color: rgb(0, 0, 0);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
SyntaxHighlighter
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxSyntaxHighlighter {
|
||||
background-color: rgb(0, 0, 0);
|
||||
}
|
||||
.OxThemeModern .OxSyntaxHighlighter .OxLineNumbers {
|
||||
background-color: rgb(32, 32, 32);
|
||||
color: rgb(128, 128, 128);
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxComment {
|
||||
color: rgb(128, 128, 128);
|
||||
font-style: italic;
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxConstant {
|
||||
color: rgb(192, 64, 64);
|
||||
font-weight: bold;
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxError {
|
||||
color: rgb(255, 255, 255);
|
||||
background: rgb(255, 0, 0);
|
||||
font-weight: bold;
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxIdentifier {
|
||||
color: rgb(192, 192, 192);
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxKeyword {
|
||||
color: rgb(128, 128, 225);
|
||||
font-weight: bold;
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxLinebreak {
|
||||
color: rgb(64, 64, 64);
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxMethod {
|
||||
color: rgb(64, 192, 192);
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxNumber {
|
||||
color: rgb(192, 64, 64);
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxObject {
|
||||
color: rgb(64, 192, 192);
|
||||
font-weight: bold;
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxOperator {
|
||||
color: rgb(128, 128, 255);
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxProperty {
|
||||
color: rgb(64, 192, 64);
|
||||
font-weight: bold;
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxRegexp {
|
||||
color: rgb(192, 192, 64);
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxString {
|
||||
color: rgb(64, 192, 64);
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxWhitespace {
|
||||
color: rgb(64, 64, 64);
|
||||
}
|
||||
.OxThemeModern .OxSourceCode .OxWhitespace.OxLeading,
|
||||
.OxThemeModern .OxSourceCode .OxWhitespace.OxTrailing {
|
||||
background: rgb(255, 255, 0);
|
||||
}
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Video
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxAnnotation {
|
||||
border-color: rgb(48, 48, 48);
|
||||
}
|
||||
.OxThemeModern .OxAnnotation.OxSelected {
|
||||
background: rgb(48, 48, 48);
|
||||
}
|
||||
|
||||
|
||||
.OxThemeModern .OxSmallVideoTimeline .OxMarkerPlay {
|
||||
border-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.OxThemeModern .OxSmallVideoTimeline .OxMarkerPlay > div {
|
||||
border-color: rgba(255, 255, 255, 1);
|
||||
}
|
||||
.OxThemeModern .OxSmallVideoTimeline .OxMarkerPlay.OxPaused > div {
|
||||
border-color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
.OxThemeModern .OxSmallVideoTimeline .OxMarkerPlay > div > div {
|
||||
border-color: rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
|
||||
.OxThemeModern .OxVideoPlayer .OxButton.OxDisabled {
|
||||
background: transparent;
|
||||
opacity: 0.25;
|
||||
}
|
||||
|
||||
.OxThemeModern .OxVideoPlayer .OxControls.OxOnScreen {
|
||||
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
background-image: -o-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
background-image: -webkit-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer .OxFind {
|
||||
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
background-image: -o-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
background-image: -webkit-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer div.OxInput {
|
||||
background: transparent;
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer input.OxInput {
|
||||
background-image: -moz-linear-gradient(top, rgba(32, 32, 32, 0.75), rgba(64, 64, 64, 0.75));
|
||||
background-image: -o-linear-gradient(top, rgba(32, 32, 32, 0.75), rgba(64, 64, 64, 0.75));
|
||||
background-image: -webkit-linear-gradient(top, rgba(32, 32, 32, 0.75), rgba(64, 64, 64, 0.75));
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer .OxFind input.OxInput {
|
||||
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.75), rgba(64, 64, 64, 0.75));
|
||||
background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.75), rgba(64, 64, 64, 0.75));
|
||||
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.75), rgba(64, 64, 64, 0.75));
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer .OxSettings > div {
|
||||
background-color: rgba(32, 32, 32, 0.5);
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer .OxSettings > div.OxSelected {
|
||||
background-image: -moz-linear-gradient(top, rgba(48, 48, 48, 0.5), rgba(16, 16, 16, 0.5));
|
||||
background-image: -o-linear-gradient(top, rgba(48, 48, 48, 0.5), rgba(16, 16, 16, 0.5));
|
||||
background-image: -webkit-linear-gradient(top, rgba(48, 48, 48, 0.5), rgba(16, 16, 16, 0.5));
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer .OxSettings > div.OxLine {
|
||||
background-color: rgba(64, 64, 64, 0.5);
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer .OxVolume {
|
||||
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
background-image: -o-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
background-image: -webkit-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer .OxVolume .OxRange .OxTrack {
|
||||
background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(64, 64, 64, 0.5));
|
||||
background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(64, 64, 64, 0.5));
|
||||
background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.75), rgba(64, 64, 64, 0.75));
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer .OxVolume .OxRange .OxThumb {
|
||||
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
background-image: -o-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
background-image: -webkit-linear-gradient(top, rgba(64, 64, 64, 0.75), rgba(0, 0, 0, 0.75));
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer .OxVolume .OxRange .OxThumb:active {
|
||||
background-image: -moz-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
background-image: -o-linear-gradient(top, rgba(64, 64, 64, 0.5), rgba(0, 0, 0, 0.5));
|
||||
background-image: -webkit-linear-gradient(top, rgba(64, 64, 64, 1), rgba(0, 0, 0, 1));
|
||||
}
|
||||
|
||||
|
||||
// fixme: used?
|
||||
.OxThemeModern .OxVideoPlayer .OxSelect {
|
||||
border-color: transparent;
|
||||
//margin-left: 0px;
|
||||
//margin-right: -18px;
|
||||
background: transparent;
|
||||
//font-size: 9px;
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer .OxSelect.OxFocus {
|
||||
-moz-box-shadow: 0 0 0;
|
||||
-o-box-shadow: 0 0 0;
|
||||
-webkit-box-shadow: 0 0 0;
|
||||
}
|
||||
.OxThemeModern .OxVideoPlayer .OxSelect div {
|
||||
//padding: 0 0 0 2px;
|
||||
//font-size: 9px;
|
||||
}
|
||||
|
||||
.OxThemeModern .OxVideoPlayer .OxSelect input {
|
||||
//display: none;
|
||||
}
|
||||
|
||||
/* FIXME: the first three should apply for every ArrayEditable */
|
||||
.OxThemeModern .OxAnnotationFolder .OxArrayEditable .OxSeparator {
|
||||
color: rgb(160, 160, 160);
|
||||
}
|
||||
.OxThemeModern .OxAnnotationFolder .OxEditableElement.OxPlaceholder .OxValue {
|
||||
color: rgb(96, 96, 96);
|
||||
}
|
||||
.OxThemeModern .OxAnnotationFolder .OxEditableElement.OxWarning .OxValue {
|
||||
border-bottom: 2px dotted rgb(192, 0, 0);
|
||||
}
|
||||
.OxThemeModern .OxAnnotationFolder .OxArrayEditable .OxEditableElement.OxEditable.OxSelected {
|
||||
background: rgb(64, 64, 192);
|
||||
}
|
||||
.OxThemeModern .OxAnnotationFolder .OxArrayEditableInput .OxEditableElement.OxSelected {
|
||||
box-shadow: 0 0 1px rgb(255, 255, 255);
|
||||
}
|
||||
.OxThemeModern .OxAnnotationFolder .OxArrayEditableTextarea .OxEditableElement.OxEditable.OxEditing {
|
||||
background: rgb(64, 128, 64);
|
||||
}
|
||||
.OxThemeModern .OxAnnotationFolder .OxArrayEditable .OxInput.OxFocus {
|
||||
box-shadow: none;
|
||||
}
|
||||
.OxThemeModern .OxAnnotationFolder .OxEditableElement input {
|
||||
background: rgb(64, 128, 64);
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
.OxThemeModern .OxAnnotationFolder .OxEditableElement textarea {
|
||||
background: rgb(64, 128, 64);
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
================================================================================
|
||||
Miscellaneous
|
||||
================================================================================
|
||||
*/
|
||||
|
||||
.OxThemeModern .OxSelectableElement.OxSelected {
|
||||
background: rgb(48, 48, 48);
|
||||
}
|
||||
.OxThemeModern .OxSelectableElement.OxSelected.OxFocus {
|
||||
background: rgb(64, 64, 64);
|
||||
}
|
||||
|
||||
.OxThemeModern .OxScreen {
|
||||
background: rgb(32, 32, 32);
|
||||
color: rgb(224, 224, 224);
|
||||
}
|
||||
.OxThemeModern .OxScreen .OxReflection {
|
||||
background-image: -moz-linear-gradient(top, rgba(32, 32, 32, 0.75), rgba(32, 32, 32, 1), rgba(32, 32, 32, 1));
|
||||
background-image: -o-linear-gradient(top, rgba(32, 32, 32, 0.75), rgba(32, 32, 32, 1), rgba(32, 32, 32, 1));
|
||||
background-image: -webkit-linear-gradient(top, rgba(32, 32, 32, 0.75), rgba(32, 32, 32, 1), rgba(32, 32, 32, 1));
|
||||
}
|
||||
|
||||
.OxThemeModern .OxTooltip {
|
||||
border: 1px solid rgba(128, 128, 128, 0.96);
|
||||
background: rgba(0, 0, 0, 0.96);
|
||||
color: rgba(128, 128, 128, 1);
|
||||
-moz-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
||||
-o-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
||||
-webkit-box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.OxThemeModern ::selection {
|
||||
background: rgb(192, 192, 192);
|
||||
//color: rgb(255, 255, 255);
|
||||
}
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
{
|
||||
"color": {
|
||||
"failed": [192, 0, 0],
|
||||
"passed": [0, 192, 0]
|
||||
},
|
||||
"lightness": {
|
||||
"background": 0.25,
|
||||
"color": 0.75
|
||||
},
|
||||
"timeline": {
|
||||
"default": [255, 255, 255],
|
||||
"editing": [128, 128, 255],
|
||||
"result": [255, 255, 128],
|
||||
"selected": [128, 255, 128]
|
||||
}
|
||||
}
|
||||
203
source/Ox.UI/themes/modern/json/theme.jsonc
Normal file
|
|
@ -0,0 +1,203 @@
|
|||
{
|
||||
|
||||
"themeName": "Dark",
|
||||
"themeLightnessBackground": 0.25,
|
||||
"themeLightnessColor": 0.75,
|
||||
|
||||
"barGradient": [[64, 64, 64], [32, 32, 32]],
|
||||
"barSelectedColor": [255, 255, 255],
|
||||
"barSelectedGradient": [[80, 80, 80], [48, 48, 48]],
|
||||
|
||||
"bodyBackground": [16, 16, 16],
|
||||
"bodyBorder": [48, 48, 48],
|
||||
"bodyColor": [240, 240, 240],
|
||||
"bodyBrightColor": [255, 255, 255],
|
||||
"bodyHighlightBackground": [16, 16, 16],
|
||||
"bodyHighlightColor": [255, 255, 0],
|
||||
"bodyLightColor": [128, 128, 128],
|
||||
"bodyWarningBorder": [192, 0, 0],
|
||||
|
||||
"buttonGradient": [[96, 96, 96], [64, 64, 64]],
|
||||
"buttonActiveColor": [208, 208, 208],
|
||||
"buttonActiveGradient": [[80, 80, 80], [80, 80, 80]],
|
||||
"buttonDisabledColor": [128, 128, 128],
|
||||
"buttonDisabledGradient": [[80, 80, 80], [80, 80, 80]],
|
||||
"buttonSelectedColor": [224, 224, 224],
|
||||
"buttonSelectedGradient": [[32, 32, 32], [64, 64, 64]],
|
||||
|
||||
"calendarBackground": [24, 24, 24],
|
||||
"calendarControlBackground": [0, 0, 0, 0.75],
|
||||
"calendarControlBorder": [192, 192, 192],
|
||||
"calendarControlColor": [192, 192, 192],
|
||||
"calendarEventColor": [255, 255, 255],
|
||||
"calendarEventShadow": [255, 255, 255],
|
||||
"calendarEventDateGradient": [[96, 96, 192, 0.9], [64, 64, 160, 0.9]],
|
||||
"calendarEventOtherGradient": [[192, 32, 32, 0.9], [160, 0, 0, 0.9]],
|
||||
"calendarEventPersonGradient": [[255, 96, 0, 0.9], [224, 64, 0, 0.9]],
|
||||
"calendarEventPlaceGradient": [[0, 128, 96, 0.9], [0, 96, 64, 0.9]],
|
||||
"calendarLineBackground": [32, 32, 32],
|
||||
"calendarOverlayOddBackground": [0, 0, 0, 0.25],
|
||||
"calendarOverlayEvenBackground": [255, 255, 255, 0.25],
|
||||
"calendarOverlayEvenShadow": [255, 255, 255],
|
||||
"calendarTimelineOddGradient": [[64, 64, 64], [32, 32, 32]],
|
||||
"calendarTimelineEvenGradient": [[48, 48, 48], [24, 24, 24]], // wrong?
|
||||
|
||||
"dialogBackground": [48, 48, 48, 0.95],
|
||||
"dialogShadow": [0, 0, 0],
|
||||
"dialogBarGradient": [[64, 64, 64, 0.95], [32, 32, 32, 0.95]],
|
||||
"dialogLayerBackground": [0, 0, 0],
|
||||
"dialogReflectionGradient": [[48, 48, 48, 0.75], [48, 48, 48, 1]],
|
||||
|
||||
"documentBorder": [48, 48, 48],
|
||||
"documentLabelBackground": [16, 16, 16],
|
||||
"documentCodeColor": [192, 192, 255],
|
||||
"documentWarningColor": [192, 0, 0],
|
||||
|
||||
"formelementBorder": [48, 48, 48],
|
||||
"formelementColor": [192, 192, 192],
|
||||
"formelementFocusShadow": [128, 128, 128], // used to be for inputs only, not buttons
|
||||
|
||||
"gridGradient": [[8, 8, 8], [24, 24, 24]],
|
||||
|
||||
"inputGradient": [[0, 0, 0], [32, 32, 32]],
|
||||
"inputActiveGradient": [[16, 16, 16], [48, 48, 48]],
|
||||
"inputDisabledGradient": [[16, 16, 16], [16, 16, 16]],
|
||||
"inputErrorColor": [255, 64, 64],
|
||||
"inputPlaceholderColor": [96, 96, 96],
|
||||
|
||||
"labelBackground": [80, 80, 80],
|
||||
"labelDisabledColor": [128, 128, 128],
|
||||
|
||||
"linkColor": [128, 128, 255],
|
||||
|
||||
"listCellBorder": [24, 24, 24],
|
||||
"listCellFocusSelectedBorder": [72, 72, 72],
|
||||
"listCellFocusSelectedColor": [255, 255, 255],
|
||||
"listCellSelectedBorder": [40, 40, 40],
|
||||
"listCellSelectedColor": [240, 240, 240],
|
||||
|
||||
"listHeadBorder": [24, 24, 24],
|
||||
|
||||
"listIconLoadingBorder": [48, 48, 48],
|
||||
"listIconLoadingGradient": [[32, 32, 32], [0, 0, 0]],
|
||||
"listIconFocusSelectedBorder": [128, 128, 128],
|
||||
"listIconFocusSelectedShadow": [128, 128, 128],
|
||||
"listIconSelectedBorder": [64, 64, 64],
|
||||
"listIconSelectedShadow": [64, 64, 64],
|
||||
"listIconLabelFocusSelectedBackground": [128, 128, 128, 0.5],
|
||||
"listIconLabelFocusSelectedBorder": [128, 128, 128],
|
||||
"listIconLabelFocusSelectedShadow": [128, 128, 128],
|
||||
"listIconLabelSelectedBackground": [92, 92, 92], // wrong?
|
||||
"listIconLabelSelectedBorder": [92, 92, 92], // wrong?
|
||||
"listIconLabelSelectedShadow": [64, 64, 64], // wrong?
|
||||
"listIconTextShadow": [0, 0, 0],
|
||||
"listIconTextFocusSelectedShadow": [32, 32, 32],
|
||||
"listIconTextSelectedShadow": [16, 16, 16],
|
||||
|
||||
"listItemBorder": [32, 32, 32],
|
||||
"listItemOddBackground": [14, 14, 14],
|
||||
"listItemEvenBackground": [18, 18, 18],
|
||||
"listItemDropOddBackground": [78, 78, 78],
|
||||
"listItemDropEvenBackground": [82, 82, 82],
|
||||
"listItemFocusSelectedBackground": [64, 64, 64],
|
||||
"listItemFocusSelectedOddBackground": [62, 62, 62],
|
||||
"listItemFocusSelectedEvenBackground": [68, 68, 68],
|
||||
"listItemSelectedBackground": [48, 48, 48],
|
||||
"listItemSelectedOddBackground": [46, 46, 46],
|
||||
"listItemSelectedEvenBackground": [50, 50, 50],
|
||||
|
||||
"mapControlBackground": [0, 0, 0, 0.5],
|
||||
"mapControlBorder": [192, 192, 192],
|
||||
"mapControlColor": [192, 192, 192],
|
||||
"mapPlaceBorder": [0, 0, 0],
|
||||
"mapPlaceEditingBorder": [128, 128, 255],
|
||||
"mapPlaceSelectedBorder": [255, 255, 255],
|
||||
"mapPlaceBoroughColor": [255, 128, 0],
|
||||
"mapPlaceBuildingColor": [255, 64, 128],
|
||||
"mapPlaceCityColor": [255, 0, 0],
|
||||
"mapPlaceCountryColor": [64, 64, 255],
|
||||
"mapPlaceFeatureColor": [0, 192, 0],
|
||||
"mapPlaceRegionColor": [0, 192, 192],
|
||||
"mapPlaceStreetColor": [255, 255, 0],
|
||||
|
||||
"menuShadow": [0, 0, 0, 0.75],
|
||||
"menuBackground": [48, 48, 48, 0.96],
|
||||
"menuDisabledColor": [128, 128, 128],
|
||||
"menuSelectedBackground": [64, 64, 64, 0.96],
|
||||
|
||||
"progressbarBackground": [255, 255, 255, 0.05],
|
||||
"progressbarAnimateBackground": [255, 255, 255, 0.1],
|
||||
|
||||
"reflectionGradient": [[16, 16, 16, 0.75], [16, 16, 16, 1]],
|
||||
|
||||
"screenBackground": [32, 32, 32],
|
||||
"screenColor": [224, 224, 224],
|
||||
"screenReflectionGradient": [[32, 32, 32, 0.75], [32, 32, 32, 1], [32, 32, 32, 1]],
|
||||
|
||||
"scrollbarCornerGradient": [[96, 96, 96], [32, 32, 32]],
|
||||
|
||||
"selectionBackground": [192, 192, 192],
|
||||
|
||||
"sourcecodeBackground": [0, 0, 0],
|
||||
"sourcecodeCommentColor": [128, 128, 128],
|
||||
"sourcecodeConstantColor": [192, 64, 64],
|
||||
"sourcecodeErrorBackground": [255, 0, 0],
|
||||
"sourcecodeErrorColor": [255, 255, 255],
|
||||
"sourcecodeIdentifierColor": [192, 192, 192],
|
||||
"sourcecodeKeywordColor": [128, 128, 255],
|
||||
"sourcecodeLinenumbersBackground": [32, 32, 32],
|
||||
"sourcecodeLinenumbersColor": [128, 128, 128],
|
||||
"sourcecodeMethodColor": [64, 192, 192],
|
||||
"sourcecodeNumberColor": [192, 64, 64],
|
||||
"sourcecodeObjectColor": [64, 192, 192],
|
||||
"sourcecodeOperatorColor": [128, 128, 255],
|
||||
"sourcecodePropertyColor": [64, 192, 64],
|
||||
"sourcecodeRegexpColor": [192, 192, 64],
|
||||
"sourcecodeSpecialColor": [64, 64, 64],
|
||||
"sourcecodeStringColor": [64, 192, 64],
|
||||
"sourcecodeWhitespaceBackground": [255, 255, 0],
|
||||
|
||||
"sourceviewerCodeBackground": [0, 0, 0],
|
||||
"sourceviewerCodeShadow": [255, 255, 255], // wrong?
|
||||
|
||||
"symbolDefaultColor": [192, 192, 192],
|
||||
"symbolDisabledColor": [128, 128, 128],
|
||||
"symbolFailedColor": [192, 0, 0],
|
||||
"symbolPassedColor": [0, 192, 0],
|
||||
"symbolSelectedColor": [255, 255, 255],
|
||||
"symbolVideoColor": [255, 255, 255],
|
||||
"symbolWarningColor": [255, 0, 0],
|
||||
|
||||
"tooltipBackground": [0, 0, 0, 0.96],
|
||||
"tooltipBorder": [128, 128, 128, 0.96],
|
||||
"tooltipColor": [128, 128, 128],
|
||||
"tooltipShadow": [0, 0, 0, 0.5],
|
||||
|
||||
"videoBarGradient": [[64, 64, 64, 0.5], [0, 0, 0, 0.5]],
|
||||
"videoButtonGradient": [[64, 64, 64, 0.75], [0, 0, 0, 0.75]],
|
||||
"videoButtonActiveGradient": [[64, 64, 64], [0, 0, 0]],
|
||||
"videoInputGradient": [[32, 32, 32, 0.75], [64, 64, 64, 0.75]],
|
||||
"videoMenuBackground": [32, 32, 32, 0.5],
|
||||
"videoMenuBorder": [64, 64, 64, 0.5],
|
||||
"videoMenuSelectedGradient": [[48, 48, 48, 0.5], [16, 16, 16, 0.5]],
|
||||
|
||||
"videoAnnotationEditableEditingBackground": [64, 128, 64],
|
||||
"videoAnnotationEditableEditingColor": [255, 255, 255],
|
||||
"videoAnnotationEditableSelectedBackground": [64, 64, 192],
|
||||
"videoAnnotationEditableSelectedShadow": [255, 255, 255],
|
||||
"videoAnnotationSelectedBackground": [48, 48, 48],
|
||||
"videoAnnotationSeparatorColor": [160, 160, 160],
|
||||
|
||||
"videoMarkerBackground": [0, 0, 0],
|
||||
"videoMarkerBorder": [255, 255, 255],
|
||||
|
||||
"videoTimelineDefaultGradient": [[32, 32, 32], [244, 244, 244]],
|
||||
"videoTimelineEditableGradient": [[0, 0, 128], [128, 128, 255]],
|
||||
"videoTimelineEditingGradient": [[0, 128, 0], [128, 255, 128]],
|
||||
"videoTimelineResultGradient": [[0, 0, 0], [255, 255, 0]],
|
||||
"videoTimelineSelectedGradient": [[0, 0, 0], [255, 255, 255]],
|
||||
"videoTimelineMarkerShadow": [0, 0, 0, 0.5],
|
||||
"videoTimelineMarkerPausedBorder": [255, 255, 255, 0.5],
|
||||
"videoTimelineMarkerPlayingBorder": [255, 255, 255]
|
||||
|
||||
}
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="64,144 80,120 120,160 176,48 192,80 128,208" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 155 B |
|
|
@ -1,5 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="64,128 120,192" stroke-width="32" stroke="#C0C0C0"/>
|
||||
<circle cx="120" cy="192" r="16" fill="#C0C0C0"/>
|
||||
<polygon points="120,192 192,64" stroke-width="32" stroke="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 274 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="48,128 96,128" stroke-width="64" stroke="#C0C0C0"/>
|
||||
<polygon points="64,128 144,48 144,208" fill="#C0C0C0"/>
|
||||
<path d="M 160,96 a 60,60 0 0,1 0,64" fill="none" stroke-width="16" stroke="#C0C0C0"/>
|
||||
<path d="M 176,64 a 96,96 0 0,1 0,128" fill="none" stroke-width="16" stroke="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 389 B |
|
|
@ -1,5 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<rect x="40" y="40" width="176" height="176" fill="none" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="101" y1="40" x2="101" y2="216" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="155" y1="40" x2="155" y2="216" stroke="#C0C0C0" stroke-width="16"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 334 B |
|
|
@ -1,10 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<rect x="40" y="40" width="64" height="64" fill="#C0C0C0" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="144" y1="40" x2="224" y2="40" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="144" y1="72" x2="224" y2="72" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="144" y1="104" x2="224" y2="104" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<rect x="40" y="152" width="64" height="64" fill="#C0C0C0" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="144" y1="152" x2="224" y2="152" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="144" y1="184" x2="224" y2="184" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="144" y1="216" x2="224" y2="216" stroke="#C0C0C0" stroke-width="16"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 765 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<rect x="40" y="40" width="64" height="64" fill="#C0C0C0" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<rect x="152" y="40" width="64" height="64" fill="#C0C0C0" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<rect x="40" y="152" width="64" height="64" fill="#C0C0C0" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<rect x="152" y="152" width="64" height="64" fill="#C0C0C0" stroke="#C0C0C0" stroke-width="16"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 472 B |
|
|
@ -1,8 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<line x1="32" y1="40" x2="224" y2="40" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="32" y1="72" x2="224" y2="72" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="32" y1="104" x2="224" y2="104" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="32" y1="152" x2="224" y2="152" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="32" y1="184" x2="224" y2="184" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<line x1="32" y1="216" x2="224" y2="216" stroke="#C0C0C0" stroke-width="16"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 560 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<g stroke="#C0C0C0" stroke-width="48">
|
||||
<line x1="128" y1="16" x2="128" y2="240"/>
|
||||
<line x1="16" y1="128" x2="240" y2="128"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 231 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<line x1="128" y1="0" x2="128" y2="128" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<polygon points="32,128 224,128 128,256" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 215 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="0,128 128,32 128,224" fill="#C0C0C0"/>
|
||||
<line x1="128" y1="128" x2="256" y2="128" stroke="#C0C0C0" stroke-width="48"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 215 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<line x1="0" y1="128" x2="128" y2="128" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<polygon points="128,32 256,128 128,224" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 215 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="32,128 128,0 224,128" fill="#C0C0C0"/>
|
||||
<line x1="128" y1="128" x2="128" y2="256" stroke="#C0C0C0" stroke-width="48"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 215 B |
|
|
@ -1,8 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<path d="M 80,24 a 312,208 0 0,0 0,208" fill="none" stroke="#C0C0C0" stroke-linecap="round" stroke-width="48"/>
|
||||
<path d="M 176,24 a 312,208 0 0,1 0,208" fill="none" stroke="#C0C0C0" stroke-linecap="round" stroke-width="48"/>
|
||||
<!--
|
||||
<path d="M 96,24 a 56,56 0 0,0 -56,56 l 0,96 a 56,56 0 0,0 56,56" fill="none" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<path d="M 160,24 a 56,56 0 0,1 56,56 l 0,96 a 56,56 0 0,1 -56,56" fill="none" stroke="#C0C0C0" stroke-width="48"/>
|
||||
-->
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 561 B |
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<circle cx="128" cy="128" r="80" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 126 B |
|
|
@ -1,8 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<path d="M 48,144 l 64,64 l 96,-160" fill="none" stroke="#C0C0C0" stroke-linecap="round" stroke-width="48"/>
|
||||
<!--
|
||||
<line x1="32" y1="128" x2="112" y2="224" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<circle cx="112" cy="224" r="24" fill="#C0C0C0"/>
|
||||
<line x1="112" y1="224" x2="208" y2="32" stroke="#C0C0C0" stroke-width="48"/>
|
||||
-->
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 420 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<g stroke="#C0C0C0" stroke-width="48">
|
||||
<line x1="40" y1="40" x2="216" y2="216"/>
|
||||
<line x1="40" y1="216" x2="216" y2="40"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 225 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<g stroke="#C0C0C0" stroke-width="48">
|
||||
<circle cx="128" cy="128" r="104" fill="none"/>
|
||||
<line x1="40" y1="40" x2="216" y2="216"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 230 B |
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="32,56 224,56 128,248" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 132 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<line x1="128" y1="16" x2="128" y2="128" stroke="#C0C0C0" stroke-width="96"/>
|
||||
<polygon points="0,128 256,128 128,256" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 215 B |
|
|
@ -1,8 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="32,224 64,160 96,192" fill="#C0C0C0"/>
|
||||
<line x1="88" y1="168" x2="184" y2="72" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<line x1="192" y1="64" x2="208" y2="48" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<line x1="112" y1="220" x2="224" y2="220" stroke="#C0C0C0" stroke-width="8"/>
|
||||
<line x1="128" y1="204" x2="224" y2="204" stroke="#C0C0C0" stroke-width="8"/>
|
||||
<line x1="144" y1="188" x2="224" y2="188" stroke="#C0C0C0" stroke-width="8"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 541 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<line x1="88" y1="56" x2="24" y2="128" stroke="#C0C0C0" stroke-linecap="round" stroke-width="48"/>
|
||||
<line x1="24" y1="128" x2="88" y2="200" stroke="#C0C0C0" stroke-linecap="round" stroke-width="48"/>
|
||||
<line x1="168" y1="56" x2="232" y2="128" stroke="#C0C0C0" stroke-linecap="round" stroke-width="48"/>
|
||||
<line x1="232" y1="128" x2="168" y2="200" stroke="#C0C0C0" stroke-linecap="round" stroke-width="48"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 490 B |
|
|
@ -1,5 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="64,64 128,0 192,64" fill="#C0C0C0"/>
|
||||
<rect x="32" y="96" width="192" height="64" fill="#C0C0C0"/>
|
||||
<polygon points="64,192 192,192 128,256" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 258 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<g stroke="#C0C0C0" stroke-width="48">
|
||||
<circle cx="104" cy="104" r="64" fill="none"/>
|
||||
<line x1="160" y1="160" x2="216" y2="216"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 232 B |
|
|
@ -1,5 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="64,16 192,16 128,80" fill="#C0C0C0"/>
|
||||
<rect x="32" y="96" width="192" height="64" fill="#C0C0C0"/>
|
||||
<polygon points="64,240 128,176 192,240" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 259 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<line x1="48" y1="224" x2="48" y2="32" stroke="#C0C0C0" stroke-width="32"/>
|
||||
<path d="M 64,32 a 64,64 0 0,1 80,0 a 64,64 0 0,0 80,0 l 0,128 a 64,64 0 0,1 -80,0 a 64,64 0 0,0 -80,0" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 277 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<line x1="64" y1="32" x2="64" y2="224" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<polygon points="120,128 216,32 216,224" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 214 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="40,32 136,128 40,224" fill="#C0C0C0"/>
|
||||
<line x1="192" y1="32" x2="192" y2="224" stroke="#C0C0C0" stroke-width="48"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 214 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="40,32 136,128 40,224" fill="#C0C0C0"/>
|
||||
<line x1="128" y1="48" x2="208" y2="48" stroke="#C0C0C0" stroke-width="32"/>
|
||||
<line x1="192" y1="32" x2="192" y2="224" stroke="#C0C0C0" stroke-width="32"/>
|
||||
<line x1="208" y1="208" x2="128" y2="208" stroke="#C0C0C0" stroke-width="32"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 378 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="32,32 128,32 32,128" fill="#C0C0C0"/>
|
||||
<line x1="72" y1="72" x2="120" y2="120" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<line x1="136" y1="136" x2="184" y2="184" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<polygon points="128,224 224,128 224,224" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 359 B |
|
|
@ -1,10 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<path d="M 80,72 a 48,48 0 1,1 88,32 l -40,48" fill="none" stroke="#C0C0C0" stroke-linecap="round" stroke-width="48"/>
|
||||
<!--
|
||||
<path d="M 72,72 a 56,56 0 1,1 96,48 a 128,128 0 0,0 -40,48" fill="none" stroke="#C0C0C0" stroke-linecap="round" stroke-width="48"/>
|
||||
-->
|
||||
<circle cx="128" cy="224" r="32" fill="#C0C0C0"/>
|
||||
<!--
|
||||
<circle cx="128" cy="232" r="24" fill="#C0C0C0"/>
|
||||
-->
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 474 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<circle cx="128" cy="48" r="32" fill="#C0C0C0"/>
|
||||
<line x1="96" y1="112" x2="128" y2="112" stroke="#C0C0C0" stroke-linecap="round" stroke-width="32"/>
|
||||
<line x1="128" y1="120" x2="128" y2="216" stroke="#C0C0C0" stroke-linecap="round" stroke-width="48"/>
|
||||
<line x1="96" y1="224" x2="160" y2="224" stroke="#C0C0C0" stroke-linecap="round" stroke-width="32"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 441 B |
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="8,128 200,32 200,224" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 132 B |
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<path d="M 128,248 l -96,-128 a 56,56 0 1,1 96,-64 a 56,56 0 1,1 96,64 l -96,128" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 175 B |
|
|
@ -1,16 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<g transform="translate(128, 128)" stroke="#FFFFFF" stroke-linecap="round" stroke-width="28">
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(0)" opacity="1"/>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(30)" opacity="0.083333"/>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(60)" opacity="0.166667"/>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(90)" opacity="0.25"/>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(120)" opacity="0.333333"/>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(150)" opacity="0.416667"/>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(180)" opacity="0.5"/>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(210)" opacity="0.583333"/>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(240)" opacity="0.666667"/>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(270)" opacity="0.75"/>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(300)" opacity="0.833333"/>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(330)" opacity="0.916667"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.2 KiB |
|
|
@ -1,40 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<g transform="translate(128, 128)" stroke="#FFFFFF" stroke-linecap="round" stroke-width="28">
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(0)" opacity="1">
|
||||
<animate attributeName="opacity" from="1" to="0" begin="0s" dur="1s" repeatCount="indefinite"></animate>
|
||||
</line>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(30)" opacity="0.083333">
|
||||
<animate attributeName="opacity" from="1" to="0" begin="-0.916667s" dur="1s" repeatCount="indefinite"></animate>
|
||||
</line>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(60)" opacity="0.166667">
|
||||
<animate attributeName="opacity" from="1" to="0" begin="-0.833333s" dur="1s" repeatCount="indefinite"></animate>
|
||||
</line>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(90)" opacity="0.25">
|
||||
<animate attributeName="opacity" from="1" to="0" begin="-0.75s" dur="1s" repeatCount="indefinite"></animate>
|
||||
</line>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(120)" opacity="0.333333">
|
||||
<animate attributeName="opacity" from="1" to="0" begin="-0.666667s" dur="1s" repeatCount="indefinite"></animate>
|
||||
</line>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(150)" opacity="0.416667">
|
||||
<animate attributeName="opacity" from="1" to="0" begin="-0.583333s" dur="1s" repeatCount="indefinite"></animate>
|
||||
</line>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(180)" opacity="0.5">
|
||||
<animate attributeName="opacity" from="1" to="0" begin="-0.5s" dur="1s" repeatCount="indefinite"></animate>
|
||||
</line>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(210)" opacity="0.583333">
|
||||
<animate attributeName="opacity" from="1" to="0" begin="-0.416667" dur="1s" repeatCount="indefinite"></animate>
|
||||
</line>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(240)" opacity="0.666667">
|
||||
<animate attributeName="opacity" from="1" to="0" begin="-0.333333s" dur="1s" repeatCount="indefinite"></animate>
|
||||
</line>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(270)" opacity="0.75">
|
||||
<animate attributeName="opacity" from="1" to="0" begin="-0.25s" dur="1s" repeatCount="indefinite"></animate>
|
||||
</line>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(300)" opacity="0.833333">
|
||||
<animate attributeName="opacity" from="1" to="0" begin="-0.166667s" dur="1s" repeatCount="indefinite"></animate>
|
||||
</line>
|
||||
<line x1="0" y1="-114" x2="0" y2="-70" transform="rotate(330)" opacity="0.916667">
|
||||
<animate attributeName="opacity" from="1" to="0" begin="-0.083333" dur="1s" repeatCount="indefinite"></animate>
|
||||
</line>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.8 KiB |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<rect x="40" y="112" width="176" height="104" fill="#C0C0C0"/>
|
||||
<path d="M 184,128 l 0,-48 a 56,56 0 0,0 -112,0" fill="none" stroke="#C0C0C0" stroke-width="32"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 241 B |
|
|
@ -1,5 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="48,80 128,0 208,80" fill="#C0C0C0"/>
|
||||
<line x1="48" y1="128" x2="208" y2="128" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<polygon points="48,176 208,176 128,256" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 274 B |
|
|
@ -1,7 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<rect x="16" y="88" width="64" height="80" fill="#C0C0C0"/>
|
||||
<polygon points="40,128 144,24 144,232" fill="#C0C0C0"/>
|
||||
<path d="M 160,96 a 48,48 0 0,1 0,64" fill="none" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<path d="M 176,64 a 88,88 0 0,1 0,128" fill="none" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<path d="M 192,32 a 128,128 0 0,1 0,192" fill="none" stroke="#C0C0C0" stroke-width="16"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 474 B |
|
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256"/>
|
||||
|
Before Width: | Height: | Size: 66 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<g stroke="#C0C0C0" stroke-width="48">
|
||||
<line x1="80" y1="32" x2="80" y2="224"/>
|
||||
<line x1="176" y1="32" x2="176" y2="224"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 224 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<line x1="72" y1="32" x2="72" y2="224" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<polygon points="144,32 240,128 144,224" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 214 B |
|
|
@ -1,5 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<circle cx="68" cy="188" r="28" fill="#C0C0C0"/>
|
||||
<path d="M 40,104 a 112,112 0 0,1 112,112" fill="none" stroke="#C0C0C0" stroke-width="32"/>
|
||||
<path d="M 40,40 a 176,176 0 0,1 176,176" fill="none" stroke="#C0C0C0" stroke-width="32"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 316 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<path d="M 208,144 a 80,80 0 1,1 -80,-80 l 16,0" fill="none" stroke-width="48" stroke="#C0C0C0"/>
|
||||
<polygon points="128,0 232,64 128,128" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 234 B |
|
|
@ -1,5 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<g stroke="#C0C0C0" stroke-width="48">
|
||||
<line x1="16" y1="128" x2="240" y2="128"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 175 B |
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="56,32 248,128 56,224" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 133 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="32,104 128,8 224,104" fill="#C0C0C0"/>
|
||||
<polygon points="32,152 224,152 128,248" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 195 B |
|
|
@ -1,13 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<g transform="translate(128, 128)">
|
||||
<circle cx="0" cy="0" r="64" fill="none" stroke="#C0C0C0" stroke-width="64"/>
|
||||
<rect x="-24" y="-128" width="48" height="48" transform="rotate(0)" fill="#C0C0C0"/>
|
||||
<rect x="-24" y="-128" width="48" height="48" transform="rotate(45)" fill="#C0C0C0"/>
|
||||
<rect x="-24" y="-128" width="48" height="48" transform="rotate(90)" fill="#C0C0C0"/>
|
||||
<rect x="-24" y="-128" width="48" height="48" transform="rotate(135)" fill="#C0C0C0"/>
|
||||
<rect x="-24" y="-128" width="48" height="48" transform="rotate(180)" fill="#C0C0C0"/>
|
||||
<rect x="-24" y="-128" width="48" height="48" transform="rotate(225)" fill="#C0C0C0"/>
|
||||
<rect x="-24" y="-128" width="48" height="48" transform="rotate(270)" fill="#C0C0C0"/>
|
||||
<rect x="-24" y="-128" width="48" height="48" transform="rotate(315)" fill="#C0C0C0"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 963 B |
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="16,208 208,16 208,208" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 133 B |
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="48,16 240,208 48,208" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 132 B |
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<rect x="80" y="48" width="96" height="160" fill="none" stroke="#C0C0C0" stroke-width="32"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 169 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<line x1="40" y1="40" x2="96" y2="96" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<polygon points="32,128 128,32 128,128" fill="#C0C0C0"/>
|
||||
<polygon points="128,128 224,128 128,224" fill="#C0C0C0"/>
|
||||
<line x1="160" y1="160" x2="216" y2="216" stroke="#C0C0C0" stroke-width="48"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 359 B |
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="128,0 200,232 8,88 248,88 56,232" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 145 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<path d="M 48,128 a 80,80 0 0,1 136,-56" fill="none" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<polygon points="144,112 224,32 224,112" fill="#C0C0C0" stroke="#C0C0C0" stroke-width="1"/>
|
||||
<path d="M 208,128 a 80,80 0 0,1 -136,56" fill="none" stroke="#C0C0C0" stroke-width="48"/>
|
||||
<polygon points="32,144 112,144 32,224" fill="#C0C0C0" stroke="#C0C0C0" stroke-width="1"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 452 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<path d="M 48,144 a 80,80 0 1,0 80,-80 l -16,0" fill="none" stroke-width="48" stroke="#C0C0C0"/>
|
||||
<polygon points="24,64 128,0 128,128" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 232 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<rect x="40" y="112" width="176" height="104" fill="#C0C0C0"/>
|
||||
<path d="M 184,128 l 0,-48 a 56,56 0 0,0 -112,0 l 0,48" fill="none" stroke="#C0C0C0" stroke-width="32"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 248 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="32,112 128,16 224,112" fill="#C0C0C0"/>
|
||||
<line x1="32" y1="176" x2="224" y2="176" stroke="#C0C0C0" stroke-width="48"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 215 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<rect x="16" y="88" width="64" height="80" fill="#C0C0C0"/>
|
||||
<polygon points="40,128 144,24 144,232" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 197 B |
|
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<polygon points="32,200 128,8 224,200" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 132 B |
|
|
@ -1,5 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<ellipse cx="128" cy="80" rx="64" ry="80" fill="#C0C0C0"/>
|
||||
<rect x="96" y="128" width="64" height="64" fill="#C0C0C0"/>
|
||||
<path d="M 32,224 a 96,64 0 0,1 192,0" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 261 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<path d="M 24,128 a 120,120 0 0,1 208,0 a 120,120 0 0,1 -208,0 a 120,120 0 0,1 208,0" fill="none" stroke="#C0C0C0" stroke-width="32"/>
|
||||
<circle cx="128" cy="128" r="32" fill="none" stroke="#C0C0C0" stroke-width="32"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 297 B |
|
|
@ -1,6 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<rect x="16" y="88" width="64" height="80" fill="#C0C0C0"/>
|
||||
<polygon points="40,128 144,24 144,232" fill="#C0C0C0"/>
|
||||
<path d="M 160,96 a 48,48 0 0,1 0,64" fill="none" stroke="#C0C0C0" stroke-width="16"/>
|
||||
<path d="M 176,64 a 96,96 0 0,1 0,128" fill="none" stroke="#C0C0C0" stroke-width="16"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 380 B |
|
|
@ -1,5 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<rect x="16" y="88" width="64" height="80" fill="#C0C0C0"/>
|
||||
<polygon points="40,128 144,24 144,232" fill="#C0C0C0"/>
|
||||
<path d="M 160,96 a 48,48 0 0,1 0,64" fill="none" stroke-width="16" stroke="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 288 B |
|
|
@ -1,4 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<line x1="128" y1="24" x2="128" y2="152" stroke="#C0C0C0" stroke-linecap="round" stroke-width="48"/>
|
||||
<circle cx="128" cy="224" r="32" fill="#C0C0C0"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 231 B |
|
|
@ -1,10 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256">
|
||||
<g transform="translate(128, 128)">
|
||||
<circle cx="0" cy="0" r="16" fill="#C0C0C0"/>
|
||||
<rect x="-16" y="-16" width="32" height="32" fill="#C0C0C0"/>
|
||||
<polygon points="-128,-0 -64,-48 -64,48" fill="#C0C0C0" transform="rotate(0)"/>
|
||||
<polygon points="-128,-0 -64,-48 -64,48" fill="#C0C0C0" transform="rotate(90)"/>
|
||||
<polygon points="-128,-0 -64,-48 -64,48" fill="#C0C0C0" transform="rotate(180)"/>
|
||||
<polygon points="-128,-0 -64,-48 -64,48" fill="#C0C0C0" transform="rotate(270)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 603 B |