Skip to content
Open
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
80 changes: 78 additions & 2 deletions code/css/popup.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,16 @@ min-width: 120px;
color: darkblue;
}

.fa2 {
font-size: 10px;
cursor: pointer;
user-select: none;
}

.fa2:hover {
color: darkblue;
}

.checked {
color: orange;
}
Expand Down Expand Up @@ -142,7 +152,7 @@ div#popup {
top:17%;
margin-left:-402px;
}

/*
form {
max-width:800px;
min-width:400px;
Expand All @@ -151,7 +161,7 @@ form {
border-radius:10px;
background-color:#fff
}

*/
h2 {
background-color:#fcee45;
padding:20px 35px;
Expand Down Expand Up @@ -181,6 +191,72 @@ hr {
color: #077bff;
}

.listLang {

display: inline-block;
width: 33%;
}

.switch {
position: relative;
display: inline-block;
width: 45px;
height: 25px;
}

.switch input {display:none;}

.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #ccc;
-webkit-transition: .4s;
transition: .4s;
}

.slider:before {
position: absolute;
content: "";
height: 18px;
width: 18px;
left: 4px;
bottom: 4px;
background-color: white;
-webkit-transition: .3s;
transition: .3s;
}

input:checked + .slider {
background-color: #2196F3;
}

input:focus + .slider {
box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
-webkit-transform: translateX(18px);
-ms-transform: translateX(18px);
transform: translateX(18px);
}

/* Rounded sliders */
.slider.round {
border-radius: 34px;
}

.slider.round:before {
border-radius: 50%;
}

.greencolor {
color: #000000;
}

ul.share-buttons{
list-style: none;
padding: 0;
Expand Down
50 changes: 50 additions & 0 deletions code/extensions/extensions.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
.cpp (366)
.md (312)
.py (206)
.java (211)
.c (190)
.go (103)
.js (102)
.swift (62)
.rb (58)
.cs (49)
.php (43)
.rs (43)
.hs (37)
.scala (26)
.m (25)
.sh (15)
.h (10)
.kt (10)
.ex (7)
.erl (6)
.ts (5)
.ml (4)
.clj (4)
.jl (4)
.fs (3)
.txt (3)
.lua (3)
.csv (2)
.sml (2)
.elm (2)
.exs (2)
.pl (2)
.vb (1)
.gitignore (1)
.rkt (1)
.nim (1)
.sc (1)
.purs (1)
.f (1)
.htm (1)
.bf (1)
.png (1)
.data (1)
.html (1)
.in (1)
.pde (1)
.ruby (1)
.hpp (1)
.ipynb (1)
.textClipping (1)
Loading