mirror of
https://github.com/paradoxxxzero/butterfly.git
synced 2026-05-26 07:08:08 +00:00
Remove useless scss files
This commit is contained in:
@@ -1,16 +0,0 @@
|
||||
@include termcolor(0, #2e3436);
|
||||
@include termcolor(1, #cc0000);
|
||||
@include termcolor(2, #4e9a06);
|
||||
@include termcolor(3, #c4a000);
|
||||
@include termcolor(4, #3465a4);
|
||||
@include termcolor(5, #75507b);
|
||||
@include termcolor(6, #06989a);
|
||||
@include termcolor(7, #d3d7cf);
|
||||
@include termcolor(8, #555753);
|
||||
@include termcolor(9, #ef2929);
|
||||
@include termcolor(10, #8ae234);
|
||||
@include termcolor(11, #fce94f);
|
||||
@include termcolor(12, #729fcf);
|
||||
@include termcolor(13, #ad7fa8);
|
||||
@include termcolor(14, #34e2e2);
|
||||
@include termcolor(15, #eeeeec);
|
||||
@@ -1,13 +0,0 @@
|
||||
$fg: #fff !default;
|
||||
$bg: #000 !default;
|
||||
$st: 00, 95, 135, 175, 215, 255;
|
||||
@for $i from 0 through 215{
|
||||
$r: nth($st, 1 + floor(($i / 36) % 6));
|
||||
$g: nth($st, 1 + floor(($i / 6) % 6));
|
||||
$b: nth($st, 1 + $i % 6);
|
||||
@include termcolor($i + 16, rgb($r, $g, $b));}
|
||||
@for $i from 0 through 23{
|
||||
$l: 8 + $i * 10;
|
||||
@include termcolor($i + 232, rgb($l, $l, $l));}
|
||||
@include termcolor(256, $bg);
|
||||
@include termcolor(257, $fg);
|
||||
@@ -1,20 +0,0 @@
|
||||
$shadow: 0 !default;
|
||||
$shadow-alpha: 0 !default;
|
||||
$bg: #110f13;
|
||||
$fg: #f4ead5;
|
||||
#wrapper{
|
||||
background-color: $bg;}
|
||||
.terminal{
|
||||
background-color: $bg;
|
||||
color: $fg;}
|
||||
@mixin termcolor($i, $color){
|
||||
.bg-color-#{$i}{
|
||||
background-color: $color;
|
||||
&.reverse-video{
|
||||
color: $color !important;}}
|
||||
.fg-color-#{$i}{
|
||||
color: $color;
|
||||
&.reverse-video{
|
||||
background-color: $color !important;}
|
||||
@if $shadow != 0{
|
||||
text-shadow: 0 0 $shadow rgba($color, $shadow-alpha);}}}
|
||||
@@ -1,6 +0,0 @@
|
||||
$fg: #fff !default;
|
||||
$shadow-alpha: 0 !default;
|
||||
.focus .cursor{
|
||||
transition: 300ms;}
|
||||
.cursor.reverse-video{
|
||||
box-shadow: 0 0 $shadow-alpha $fg;}
|
||||
@@ -1,10 +0,0 @@
|
||||
$weights: (ExtraLight 100) (Light 300) (Regular 400) (Medium 500) (Semibold 600) (Bold 700) (Black 900);
|
||||
@each $weight in $weights{
|
||||
$weight_name: nth($weight, 1);
|
||||
@font-face{
|
||||
font-family: "SourceCodePro";
|
||||
src: url("/static/fonts/SourceCodePro-#{$weight_name}.otf") format("woff");
|
||||
font-weight: nth($weight, 2);}}
|
||||
body{
|
||||
font-family: "SourceCodePro";
|
||||
line-height: 1.2;}
|
||||
@@ -1,28 +0,0 @@
|
||||
$fg: #fff !default;
|
||||
$shadow: 6px !default;
|
||||
$shadow-alpha: .5 !default;
|
||||
.terminal{
|
||||
text-shadow: 0 0 $shadow rgba($fg, $shadow-alpha);
|
||||
transition: 200ms;
|
||||
&.bell{
|
||||
-webkit-filter: blur(2px);}
|
||||
&.skip{
|
||||
-webkit-filter: sepia(1);}
|
||||
&.selection{
|
||||
-webkit-filter: unquote("saturate(2)");}
|
||||
&.dead{
|
||||
-webkit-filter: unquote("grayscale(1)");
|
||||
&:after{
|
||||
content: "CLOSED";
|
||||
font-size: 15em;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
transform: rotate(-45deg);
|
||||
opacity: .2;
|
||||
font-weight: 900;}}}
|
||||
@@ -1,11 +0,0 @@
|
||||
html, body{
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
line-height: 1.2;}
|
||||
#wrapper{
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;}
|
||||
.terminal{
|
||||
outline: none;}
|
||||
@@ -1,15 +0,0 @@
|
||||
$fg: #fff !default;
|
||||
$bg: #000 !default;
|
||||
.bold{
|
||||
font-weight: bold;}
|
||||
.underline{
|
||||
text-decoration: underline;}
|
||||
.blink{
|
||||
text-decoration: blink;}
|
||||
.invisible{
|
||||
visibility: hidden;}
|
||||
.reverse-video{
|
||||
color: $bg;
|
||||
background-color: $fg;}
|
||||
.blur .cursor.reverse-video{
|
||||
background: none;}
|
||||
@@ -1,8 +0,0 @@
|
||||
@import 'font';
|
||||
@import 'layout';
|
||||
@import 'fx';
|
||||
@import 'colors';
|
||||
@import '16_colors';
|
||||
@import '256_colors';
|
||||
@import 'cursor';
|
||||
@import 'term_styles';
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "butterfly",
|
||||
"version": "1.5.2",
|
||||
"version": "1.5.5",
|
||||
"description": "A sleek web based terminal emulator",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
||||
Reference in New Issue
Block a user