6 Commits

Author SHA1 Message Date
npease 0fbad43b50 Update manifest.json 2018-01-13 15:40:59 -05:00
npease eaa780ad63 Update popup.html 2018-01-13 15:40:38 -05:00
npease 670dbb1894 Update README.md 2018-01-13 15:27:56 -05:00
npease ceb6444234 Create main.css 2018-01-11 18:54:05 -05:00
npease 8b440b4a30 Update popup.html 2018-01-11 18:22:45 -05:00
npease fe9a985b0f Update popup.html 2018-01-11 18:22:07 -05:00
4 changed files with 162 additions and 3 deletions
+159
View File
@@ -0,0 +1,159 @@
* {
font-family: Lato, sans-serif;
color: #aaa;
}
.centered {
margin: 0 auto;
width: fit-content;
}
body {
color: #d8d8d8;
background-color: #2d2d2d;
}
a {
z-index: 0;
position: relative;
color: #999;
text-decoration: none;
}
a:before {
content: "";
position: absolute;
z-index: -1;
width: 100%;
height: 2px;
bottom: 1px;
left: 0;
background-color: #d1d1d1;
border-radius: 2px;
visibility: hidden;
-webkit-transform: scaleX(0);
transform: scaleX(0);
-webkit-transition: all 0.3s ease-in-out 0s;
transition: all 0.3s ease-in-out 0s, height 0.3s ease-in-out .3s;
}
.highlight a {
color: #777;
}
.highlight a:before {
background-color: #1f1f1f;
}
a:hover:before {
visibility: visible;
-webkit-transform: scaleX(1.05);
transform: scaleX(1.05);
height: 17px;
}
.battlesquid {
margin-top: 30px;
text-shadow: 0 0 10px #fefcc9, -4px -6px 15px #feec85, 11px 1px 20px #ffae34, 7px -14px 25px #ec760c, 8px -17px 30px #cd4606, -10px -20px 20px #973716, 2px -20px 50px #451b0e;
color: #FFF;
}
span {
border-radius: 2px;
color: #000;
font-size: 16px;
cursor: pointer;
text-align: center;
text-decoration: none;
background-color: #c4c4c4;
border: 1px solid #000;
display: inline-block;
margin: 4px;
padding: 2px 10px;
}
.tutorial {
padding: 7px;
}
.outputText:nth-child(odd) {
background-color: #2d2d2d;
}
.outputText:nth-child(even) {
background-color: #222;
}
.highlight {
color: #000;
background-color: #ddd;
}
#output {
width: 100%;
height: 50vh;
overflow-y: scroll;
border-radius: 5px;
background-color: #222;
box-shadow: 0 1px 5px #222 inset,0 1px 0 #666;
}
input[type=text],input[type=password] {
width: 90%;
box-sizing: border-box;
border: 3px solid #ccc;
-webkit-transition: .5s;
transition: .5s;
outline: none;
color: #222;
margin: 0 0 20px;
padding: 5px;
}
input[type=text]:focus,input[type=password]:focus {
border: 3px solid #454545;
}
input[type=button], button {
border-radius: 5px;
color: #000;
font-size: 16px;
cursor: pointer;
text-align: center;
text-decoration: none;
background-color: #c4c4c4;
border: 1px solid #000;
display: inline-block;
-webkit-transition-duration: .4s;
transition-duration: .4s;
margin: 4px;
padding: 2px 10px;
}
input[value="Send"] {
width: 10%;
}
input[type=button]:hover, button:hover {
box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.8);
}
h1 {
color: #ccc;
}
h3 {
color: #aaa;
}
ol,ul:.tags {
width: 33%;
color: #fff;
background-color: #222;
border-radius: 5px;
box-shadow: 0 1px 5px #222 inset,0 1px 0 #666;
}
strong {
color: #000;
}
+1 -1
View File
@@ -1,4 +1,4 @@
This is the repository for the Unichat Chrome Extension
To download, go to the releases section
and the installation instrustions are avaible here: http://techapple.net/2015/09/how-to-install-load-unpacked-extension-in-google-chrome-browser-os-chromebooks/
and the installation instrustions are avaible here: http://techapple.net/2015/09/how-to-install-load-unpacked-extension-in-google-chrome-browser-os-chromebooks/ and here: https://www.mattcutts.com/blog/how-to-install-a-chrome-extension-from-github/
+1 -1
View File
@@ -3,7 +3,7 @@
"name": "Unichat",
"description": "This is the Unichat Popup",
"version": "1.4.1",
"version": "1.5",
"icons": {
"128": "7POdNS3.png"
},
+1 -1
View File
@@ -1,7 +1,7 @@
<html>
<head>
<style type="text/css">
body {width:600; height:350;}
body {width:600; height:200;}
</style>
</head>
<body>