first commit

This commit is contained in:
etrombly
2018-01-09 21:43:20 -06:00
commit 34a1149f38
620 changed files with 43385 additions and 0 deletions

View File

@@ -0,0 +1,89 @@
.calc-button {
border-image: url("../buttons/button.svg") 7;
height: 40px;
width: 50px;
margin: 20px;
color: #fff;
}
.calc-button:hover {
border-image: url("../buttons/button-hover.svg") 7;
height: 40px;
width: 50px;
margin: 20px;
color: #fff;
}
.calc-button:active {
border-image: url("../buttons/button-pressed.svg") 7;
height: 40px;
width: 50px;
margin: 20px;
color: #fff;
}
.calc-button-padding {
padding: 2px;
}
.calc-mainBox {
padding: 2px;
}
.calc-displayArea {
padding: 3px;
}
.calc-displayWindow {
border-image: url("../misc-assets/entry-focused.svg") 7;
padding: 10px;
}
.calc-displayWindow-rpn {
border-image: url("../misc-assets/entry-focused.svg") 7;
padding: 10px;
}
.calc-displayText-primary {
font-size: 32px;
color: #000;
text-align: right;
}
.calc-displayText-secondary {
font-size: 9px;
color: #000;
text-align: right;
}
.calc-displayText-operation {
font-size: 24px;
color: #000;
}
.calc-displayText-status {
font-size: 8px;
color: #000;
}
.calc-displayText-rpn {
color: #000;
}
.calc-stackArea {
height: 85px;
padding-top: 8px;
}
.calc-navigation-box {
padding: 0 0 0 8px;
width: 22px;
}
.calc-navigation-icon {
color: #fff;
icon-size: 16px;
}
.calc-button .calc-navigation-button {
}

View File

@@ -0,0 +1,43 @@
.reddit-reader {
border-image: url("../background-assets/popup.svg") 7;
padding: 12px;
color: #fff;
}
.reddit-title-bar {
border-image: url("../misc-assets/entry.svg") 7;
padding: 10px;
font-size: 12pt;
font-weight: bold;
}
.reddit-header-icon {
padding-right: 6px;
icon-size: 16px;
}
.reddit-title {
padding-right: 6px;
font-size: 14pt;
}
.reddit-subtitle {
color: rgba(255, 255, 255, .3);
}
.reddit-posts-box {
padding-left: 10px;
padding-right: 16px;
padding-top: 12px;
}
.reddit-post {
color: #fff;
}
.reddit-info-box {
padding: 3px 10px 24px 0;
spacing: 10px;
font-size: 8pt;
color: rgba(255, 255, 255, .3);
}

View File

@@ -0,0 +1,98 @@
#sticky-scrollview StScrollBar {
padding: 0;
padding-left: 6px;
}
.sticky-button {
border-image: url("../buttons/button.svg") 7;
background-gradient-direction: none;
height: 24px;
width: 24px;
color: #fff;
}
.sticky-button-selected {
border-image: url("../buttons/button-hover.svg") 7;
background-gradient-direction: none;
height: 24px;
width: 24px;
color: #fff;
}
.sticky-button-box {
padding: 0;
height: 24px;
}
.sticky-main-box-staples {
border-image: url("../background-assets/popup.svg") 7;
background-color: transparent;
border-radius: 0;
text-shadow: none;
min-width: 210px;
padding: 4px 10px;
font-weight: bold;
color: #fff;
}
.sticky-main-box-none {
border-image: url("../background-assets/popup.svg") 7;
background-color: transparent;
border-radius: 0;
text-shadow: none;
min-width: 210px;
padding: 4px 10px;
font-weight: bold;
color: #fff;
}
.sticky-top-box {
font-weight: bold;
color: #fff;
}
.sticky-bottom-box {
font-weight: bold;
color: #fff;
}
.sticky-title-label {
padding: 0 4px 0 4px;
max-width: 100px;
text-align: center;
}
.sticky-information-label {
padding: 0 4px 0 4px;
}
.sticky-text-box {
background-gradient-direction: vertical;
background-gradient-start: rgba(0, 0, 0, 0);
background-gradient-end: rgba(0, 0, 0, 0);
box-shadow: inset 0 0 rgba(0, 0, 0, 0);
border: 0 rgba(0, 0, 0, 0);
border-radius: 0;
border-image: url("../misc-assets/entry.svg") 7;
padding: 6px;
}
.sticky-text-box:active {
background-gradient-direction: vertical;
background-gradient-start: rgba(0, 0, 0, 0);
background-gradient-end: rgba(0, 0, 0, 0);
box-shadow: inset 0 0 rgba(0, 0, 0, 0);
border: 0 rgba(0, 0, 0, 0);
border-radius: 0;
border-image: url("../misc-assets/entry-focused.svg") 7;
padding: 6px;
}
#sticky-note-entry {
padding: 6px;
color: #fff;
selected-color: #fff;
caret-color: #fff;
caret-size: 1px;
selection-background-color: #2975E9;
}