14 Commits

Author SHA1 Message Date
npease 47737ff3ff Create main.css 2018-01-11 18:49:13 -05:00
npease 823227c5fa Update popup.html 2018-01-11 18:17:23 -05:00
npease 2bb82a0ee3 Made Even Taller 2018-01-11 18:06:51 -05:00
npease 44793e0167 Made Taller 2018-01-11 18:01:56 -05:00
npease c177d0690c Update manifest.json 2018-01-11 18:00:52 -05:00
npease cb3e843bfc Merge pull request #1 from Legend-of-iPhoenix/master
"Officiality"
2018-01-11 17:42:42 -05:00
_iPhoenix_ 0997d696b1 Add files via upload 2018-01-11 16:10:22 -05:00
npease 09aec831dc Update manifest.json 2018-01-11 14:11:40 -05:00
npease 97f6cf5a62 Update popup.html 2018-01-11 14:11:25 -05:00
npease 4357ac6235 Update manifest.json 2018-01-11 14:09:55 -05:00
npease 7f2d2eae6f Update popup.html 2018-01-11 14:09:38 -05:00
npease fa0c36b99e Update popup.html 2018-01-11 14:08:47 -05:00
npease d80f834e90 Update manifest.json 2018-01-11 14:04:49 -05:00
npease c4a95b0e18 Update popup.html 2018-01-11 14:04:25 -05:00
3 changed files with 167 additions and 8 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;
}
+2 -2
View File
@@ -2,8 +2,8 @@
"manifest_version": 2,
"name": "Unichat",
"description": "This Starts the Unichat Extension Popup",
"version": "1.1",
"description": "This is the Unichat Popup",
"version": "1.4.1",
"icons": {
"128": "7POdNS3.png"
},
+6 -6
View File
@@ -1,11 +1,11 @@
<html>
<head>
<style type="text/css">
body {width:600; height:310;}
</style>
</head>
<body>
<iframe src="https://lax18.github.io/UniChatDemo/Chrome%20Extension/UnichatEMBED.html" width="100%" height="100%" frameborder="0">
</iframe>
body {width:600; height:350;}
</style>
</head>
<body>
<iframe src="https://lax18.github.io/UniChatDemo/Chrome%20Extension/UnichatEMBED.html" width="100%" height="100%" frameborder="0">
</iframe>
</body>
</html>