Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Terminal Theme #8

Merged
merged 1 commit into from Oct 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Terminal Theme/Terminal Theme.zip
Binary file not shown.
41 changes: 41 additions & 0 deletions Terminal Theme/about.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
body {
background-color: #1D1F21;
color: #54AE3C;
}

img {
position: absolute;
}

@keyframes rotation {
from {}
to {
transform: rotate(360deg);
}
}

@keyframes scaling {
0% {
transform: scale(1, 1);
}
50% {
transform: scale(1.05, 1.05);
}
100% {
transform: scale(1, 1);
}
}

#backImage {
animation-name: rotation;
animation-duration: 5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}

#frontImage {
animation-name: scaling;
animation-duration: 1s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
3 changes: 3 additions & 0 deletions Terminal Theme/about.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Theme Edit by .etc#2834

Credits to: Silence & Valid for original code.
149 changes: 149 additions & 0 deletions Terminal Theme/actions.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,149 @@
#action-label {
padding: 10px 15px 10px 15px;
cursor: pointer;
outline: none;
}

button.opener {
background-color: #1D1F21;
color: #6CED49;
cursor: pointer;
padding: 8px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 14px;
transition: 0.4s;
}

button.openerChild {
background-color: #1D1F21;
color: #D5E063;
cursor: pointer;
padding: 6px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 12px;
transition: 0.25s;
}

button.openerChild.active,
button.openerChild:hover {
background-color: #1D1F21;
color: #6CED49;
}

button.opener:after {
content: '+';
color: #6CED49;
font-weight: bold;
float: right;
margin-left: 5px;
}

button.openerChild:after {
color: #6CED49;
font-weight: bold;
float: right;
margin-left: 5px;
}

button.opener.active:after {
content: "-";
}

div.dropContent {
background-color: white;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}

.ui.dropdown {
text-align: center;
width: 200px;
}

input[type=text] {
width: 90%;
}

.action-main {
background: black;
}
.action-input {
margin: 0 auto;
padding-top: 6px;
max-width: 640px;
width: 94%;
height: 80%;
}

.action-input h1 {
margin-top: 0;
}

#theHead {
right: 0;
top: 0;
left: 0;
background-color: #282A2E;
text-align: center;
}

.action-footer {
width: 100%;
position: absolute;
right: 0;
bottom: 0;
left: 0;
padding: 1rem;
background-color: #282A2E;
text-align: center;
}

#leSideBarContent {
margin-right: 10px;
width: 226px;
}

#leSideBar {
width: 232px;
margin: 10px;
}

#leSideBar::-webkit-scrollbar {
width: 6px;
background-color: #54AE3C;
}

#leSideBar::-webkit-scrollbar-track {
border-radius: 10px;
background-color: #54AE3C;
}

#leSideBar::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: #282A2E;
}

input::-webkit-calendar-picker-indicator {
opacity: 100;
background-color: transparent;
transform: scale(0.7, 0.7);
}

input::-webkit-calendar-picker-indicator:hover {
background-color: transparent;
}

input#searchfilter {
border-radius: 4px;
padding-left: 4px;
width: 94%;
height: 22px;
border: 1px solid #333333;
}
28 changes: 28 additions & 0 deletions Terminal Theme/emojis.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
body {
background-color: #1D1F21;
}

.emojiButton {
background-color: #282A2E; /* Green */
border: none;
color: white;
width: 36px;
height: 36px;
padding: 2px 2px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
background-color: #ffffff;
color: black;
border: 2px solid #1a1a1a;
}

.emojiButton:hover {
background-color: #1a1a1a;
color: white;
}
42 changes: 42 additions & 0 deletions Terminal Theme/load.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
body {
background-color: #373B41;
color: #6CED49;
font-size: 13px;
}

img {
position: absolute;
}

@keyframes rotation {
from {}
to {
transform: rotate(360deg);
}
}

@keyframes scaling {
0% {
transform: scale(1, 1);
}
50% {
transform: scale(1.05, 1.05);
}
100% {
transform: scale(1, 1);
}
}

#backImage {
animation-name: rotation;
animation-duration: 5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}

#frontImage {
animation-name: scaling;
animation-duration: 1s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
Loading