summaryrefslogtreecommitdiff
path: root/css
diff options
context:
space:
mode:
authorBulletin <bulletin@bulletinalpha.tk>2016-12-29 16:42:32 -0500
committerBulletin <bulletin@bulletinalpha.tk>2016-12-29 16:42:32 -0500
commit1a7fa60f6cb2ee26843ca19e37bb4ff44104ad55 (patch)
tree2fa1fbdea9992ab63ba2a7abbac8bbcd633d13f7 /css
downloadbulletin-1a7fa60f6cb2ee26843ca19e37bb4ff44104ad55.tar.gz
Added existing progress
Diffstat (limited to 'css')
-rw-r--r--css/chat.css82
-rw-r--r--css/internal.css140
-rw-r--r--css/logsup.css140
-rw-r--r--css/main.css307
-rw-r--r--css/main.css~216
5 files changed, 885 insertions, 0 deletions
diff --git a/css/chat.css b/css/chat.css
new file mode 100644
index 0000000..0076177
--- /dev/null
+++ b/css/chat.css
@@ -0,0 +1,82 @@
+.chexp {
+ bottom: 0px !important;
+}
+.chshr {
+ bottom: -232px !important;
+}
+.chwin {
+ z-index: 2;
+ position: fixed;
+ right: 0px;
+ height: 256px;
+ width: 400px;
+ border: #aaaaaa 1px solid;
+ border-left: #fb4d00 1px solid;
+ border-radius: 7px 0px 0px 0px;
+ background-color: #ffffff;
+ font-family: 'Myriad Pro';
+ font-size: 11pt;
+}
+.chhead {
+ height: calc(24px - 0.25em);
+ position: absolute;
+ background-color: #fb4d00;
+ top: 0px;
+ left: 0px;
+ width: calc(100% - 20px);
+ padding: 0.25em 10px 0px 10px;
+ border-radius: 4px 0px 0px 0px;
+ font-weight: bold;
+ font-size: 12pt;
+ cursor: pointer;
+}
+.chlist {
+ position: absolute;
+ top: 24px;
+ left: 0px;
+ width: calc(100% - 10px);
+ height: 205px;
+ list-style: none;
+ padding: 0px 5px 0px 5px;
+ margin: 0px;
+ border-style: solid;
+ border-width: 1px 0px 1px 0px;
+ border-color: #aaaaaa;
+}
+.chlist .chnick {
+ margin-right: .2em;
+ font-weight: bold;
+}
+.chlist li.chfailed {
+ color: #777777;
+ cursor: pointer;
+}
+.chinput {
+ position: absolute;
+ bottom: 3px;
+ left: 3px;
+ width: calc(100% - 8px);
+}
+.chshrbtn {
+ width: 16px;
+ height: 16px;
+ position: absolute;
+ top: 2px;
+ right: 24px;
+ cursor: pointer;
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AgJBjgR7kpV0gAAAB1JREFUOMtjYBgFwwAwIrH/k6OXiVIXMI1GwnAAAErlAQYUzSSWAAAAAElFTkSuQmCC');
+ background-position: center;
+}
+.chxbtn {
+ width: 16px;
+ height: 16px;
+ position: absolute;
+ top: 2px;
+ right: 2px;
+ cursor: pointer;
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AgJBwAR+BeDHgAAAAh0RVh0Q29tbWVudAD2zJa/AAAAUElEQVQ4y2NgGGjAiMT+j0OcAZ8aJiIU4hPDaQC6hv/EeAGvQlz6GIl1Ki5LGUkIA6zqmagZjVTxAkWB+B+PQpxyTEQ6FVdg4zSAkUixQQAACvINEiubgxcAAAAASUVORK5CYII=');
+ background-position: center;
+}
+.chshrbtn:hover, .chxbtn:hover {
+ background-color: rgba(0, 0, 0, 0.25);
+}
diff --git a/css/internal.css b/css/internal.css
new file mode 100644
index 0000000..18b2838
--- /dev/null
+++ b/css/internal.css
@@ -0,0 +1,140 @@
+@font-face {
+ font-family: 'Myriad Pro';
+ src: url('../ttf/myriad.ttf');
+}
+body {
+ margin: 0px;
+}
+#head {
+ width: 100%;
+ height: 110px;
+ border-style: none none solid none;
+ border-width: 1px;
+ border-color: #dddddd;
+}
+#head .logolink {
+ display: block;
+ margin: 0px auto 0px auto;
+ width: 334px;
+ height: 100%;
+ background-size: contain;
+ background-image: url('../img/5.png');
+ background-repeat: no-repeat;
+ background-position: center, center;
+}
+.box {
+ margin: 1em auto 1em auto;
+ display: table;
+ width: 450px;
+}
+.fullrow, .helper {
+ margin: 15px -15px 15px -15px;
+ width: 100%;
+ display: block;
+}
+.halfrowl {
+ display: inline-block;
+ width: 50%;
+ text-align: left;
+ float: left;
+}
+.halfrowr {
+ display: inline-block;
+ width: 50%;
+ text-align: right;
+}
+.box, .box input, .box select {
+ font-family: 'Myriad Pro';
+ font-size: 16pt;
+}
+.box select {
+ padding: 5px;
+ background-color: #ffffff;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #dddddd;
+ border-radius: 5px;
+ color: #000000;
+}
+.box select::invalid {
+ color: #aaaaaa;
+}
+.iama {
+ margin-right: 0.25em;
+}
+.box label {
+ font-size: 13pt;
+}
+input[type=text], input[type=password] {
+ width: calc(100% - 24px);
+ padding: 6px 12px;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #dddddd;
+ border-radius: 5px;
+}
+.err input {
+ border-color: #aa0000;
+}
+input[type=submit] {
+ margin-left: auto;
+ background-color: #fb4d00;
+ padding: 5px 50px 5px 50px;
+ border-style: none;
+ border-radius: 15px;
+ color: #ffffff;
+ font-size: 14pt;
+ font-weight: bold;
+ cursor: pointer;
+}
+input[type=submit]:hover {
+ background-color: #fb7700;
+}
+.box form {
+ margin-bottom: 2em;
+}
+.box p {
+ font-size: 12pt;
+ width: 100%;
+ text-align: center;
+}
+.box p a, .back a {
+ text-decoration: none;
+ color: #fb4d00;
+}
+.helper a:hover, .back a:hover {
+ color: #fb7700;
+}
+.ehelper {
+ color: #aa0000;
+ font-weight: bold;
+}
+.hr {
+ width: 450px;
+ height: 1px;
+ margin: auto;
+ background-color: #dddddd;
+}
+.back {
+ margin-top: 2em;
+ font-family: 'Myriad Pro';
+ font-weight: 8pt;
+ text-align: center;
+ color: #aaaaaa;
+}
+.copy {
+ color: #dddddd;
+ position: fixed;
+ z-index: -1;
+ bottom: 0px;
+ left: 0px;
+ right: 0px;
+ margin: auto;
+ text-align: center;
+ font-size: x-small;
+ font-family: 'Myriad Pro';
+}
+#inpext, #inparea, #inpphone2, #inpphone3 {
+ width: initial;
+ display: inline;
+}
diff --git a/css/logsup.css b/css/logsup.css
new file mode 100644
index 0000000..ae60e1d
--- /dev/null
+++ b/css/logsup.css
@@ -0,0 +1,140 @@
+@font-face {
+ font-family: 'Myriad Pro';
+ src: url('../ttf/myriad.ttf');
+}
+body {
+ margin: 0px;
+}
+#head {
+ width: 100%;
+ height: 110px;
+ border-style: none none solid none;
+ border-width: 1px;
+ border-color: #dddddd;
+}
+#head .logolink {
+ display: block;
+ margin: 0px auto 0px auto;
+ width: 334px;
+ height: 100%;
+ background-size: contain;
+ background-image: url('../img/5.png');
+ background-repeat: no-repeat;
+ background-position: center, center;
+}
+.logform {
+ margin: 1em auto 1em auto;
+ display: table;
+ width: 450px;
+}
+.fullrow, .helper {
+ margin: 15px -15px 15px -15px;
+ width: 100%;
+ display: block;
+}
+.halfrowl {
+ display: inline-block;
+ width: 50%;
+ text-align: left;
+ float: left;
+}
+.halfrowr {
+ display: inline-block;
+ width: 50%;
+ text-align: right;
+}
+.logform, .logform input, .logform select {
+ font-family: 'Myriad Pro';
+ font-size: 16pt;
+}
+.logform select {
+ padding: 5px;
+ background-color: #ffffff;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #dddddd;
+ border-radius: 5px;
+ color: #000000;
+}
+.logform select::invalid {
+ color: #aaaaaa;
+}
+.iama {
+ margin-right: 0.25em;
+}
+.logform label {
+ font-size: 13pt;
+}
+input[type=text], input[type=password] {
+ width: calc(100% - 24px);
+ padding: 6px 12px;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #dddddd;
+ border-radius: 5px;
+}
+.err input {
+ border-color: #aa0000;
+}
+input[type=submit] {
+ margin-left: auto;
+ background-color: #fb4d00;
+ padding: 5px 50px 5px 50px;
+ border-style: none;
+ border-radius: 15px;
+ color: #ffffff;
+ font-size: 14pt;
+ font-weight: bold;
+ cursor: pointer;
+}
+input[type=submit]:hover {
+ background-color: #fb7700;
+}
+.logform form {
+ margin-bottom: 2em;
+}
+.logform p {
+ font-size: 12pt;
+ width: 100%;
+ text-align: center;
+}
+.logform p a {
+ text-decoration: none;
+ color: #fb4d00;
+}
+.helper a:hover {
+ color: #fb7700;
+}
+.ehelper {
+ color: #aa0000;
+ font-weight: bold;
+}
+.hr {
+ width: 450px;
+ height: 1px;
+ margin: auto;
+ background-color: #dddddd;
+}
+.welcome {
+ margin-top: 2em;
+ font-family: 'Myriad Pro';
+ font-weight: 8pt;
+ text-align: center;
+ color: #aaaaaa;
+}
+.copy {
+ color: #dddddd;
+ position: fixed;
+ z-index: -1;
+ bottom: 0px;
+ left: 0px;
+ right: 0px;
+ margin: auto;
+ text-align: center;
+ font-size: x-small;
+ font-family: 'Myriad Pro';
+}
+#inpext, #inparea, #inpphone2, #inpphone3 {
+ width: initial;
+ display: inline;
+}
diff --git a/css/main.css b/css/main.css
new file mode 100644
index 0000000..a6a8672
--- /dev/null
+++ b/css/main.css
@@ -0,0 +1,307 @@
+@font-face {
+ font-family: 'Myriad Pro';
+ src: url('../ttf/myriad.ttf');
+}
+@font-face {
+ font-family: 'DejaVu Sans Extra-Light';
+ src: url('../ttf/deja.ttf');
+}
+
+body {
+ background-image: linear-gradient(135deg, rgba(0,0,0,0.7) 10%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0)),
+ url('../img/3.jpg');
+ background-size: cover;
+ background-repeat: no-repeat;
+ background-attachment: fixed;
+}
+#headerbar {
+ height: 48px;
+ width: 100%;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+}
+#headerimg {
+ background-image: url('../img/2.png');
+ background-size: contain;
+ background-repeat: no-repeat;
+ margin-left: 8%;
+ height: inherit;
+}
+#midbody {
+ margin-left: auto;
+ margin-right: auto;
+ height: 150px;
+ color: #ffffff;
+ text-align: center;
+ font-size: 20pt;
+ max-width: 66%;
+ position: absolute;
+ left: 0px;
+ right: 0px;
+ top: 43%;
+}
+.bigquote {
+ font-family: 'Myriad Pro';
+ font-size: 133%;
+ font-weight: bold;
+}
+#links {
+ margin-top: 3em;
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ height: 44px;
+ text-align: center;
+}
+.link {
+ cursor: pointer;
+ text-align: center;
+ margin: 0px 24px 0px 24px;
+ border-style: solid;
+ border-width: 1px;
+ border-radius: 10px;
+ display: flex;
+ flex-direction: column;
+ width: 112px;
+ justify-content: center;
+}
+.link a {
+ text-decoration: none;
+ font-family: 'Myriad Pro';
+ font-size: 16pt;
+ font-weight: bold;
+ color: #ffffff;
+}
+#link1 {
+ background-color: #fb3800;
+ border-color: #fb3800;
+}
+#link2 {
+ background-color: #a0a0a0;
+ border-color: #a0a0a0;
+}
+#cover {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ width: 100%;
+ height: calc(100% - 56px);
+ box-shadow: 0px 0px 5px rgba(0,0,0,0.75);
+}
+#about {
+ position: absolute;
+ top: 100%;
+ left: 0px;
+}
+
+/* Small screen security */
+@media screen and (max-width: 480px) {
+ #headerimg {
+ padding-left: 10px;
+ }
+ #midbody {
+ max-width: 100%;
+ }
+}
+#part2 {
+ width: 100%;
+ position: absolute;
+ top: 85vh;
+ left: 0px;
+}
+#header2 {
+ width: 100%;
+ height: 175px;
+ position: absolute;
+ z-index: 1;
+ top: 0px;
+ left: 0px;
+ background-color: #fe8242;
+ box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
+}
+#body2 {
+ background-color: #ffffff;
+ width: 100%;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ z-index: 0;
+}
+#footer {
+ width: 100%;
+ height: 14px;
+ position: absolute;
+ z-index: 1;
+ bottom: 0px;
+ left: 0px;
+ background-color: #f0f0f0;
+}
+#copy {
+ font-size: x-small;
+ font-family: 'Myriad Pro';
+ position: absolute;
+ text-align: center;
+ position: absolute;
+ bottom: 0px;
+ left: 0px;
+ right: 0px;
+ margin: auto;
+}
+#copy a {
+ color: #000000;
+ text-decoration: none;
+}
+a #lefth2 p, #midh2 p, #righth2 p {
+ margin: 0px;
+ color: #000000;
+}
+#lefth2 {
+ background-image: url('../img/2chainz.png');
+ left: 10%;
+ margin: 0px 0px 0px 0px;
+}
+#midh2 {
+ background-image: url('../img/handshake.png');
+ left: 0px;
+ right: 0px;
+ margin: 0px auto 0px auto;
+}
+#righth2 {
+ background-image: url('../img/talks.png');
+ right: 10%;
+ margin: 0px 0px 0px 5px;
+}
+#lefth2, #midh2, #righth2 {
+ width: 143px;
+ position: absolute;
+ top: 0px;
+ background-repeat: no-repeat;
+ background-size: 130px;
+ background-position: center 10px;
+ padding: 148px 16px 8px 16px;
+ font-family: 'DejaVu Sans Extra-Light';
+ font-size: 16px;
+ text-transform: uppercase;
+ text-align: center;
+ cursor: pointer;
+}
+a:hover #lefth2, a:hover #midh2, a:hover #righth2 {
+ background-color: rgba(0,0,0,0.2);
+}
+#header3 {
+ background-color: #f0f0f0;
+ height: 10px;
+}
+#header3 p {
+ padding-top: 0.25em;
+ padding-bottom: 0.25em;
+ margin-top: 0em;
+ margin-bottom: 0em;
+ font-family: 'DejaVu Sans Extra-Light';
+ font-size: 24pt;
+ text-align: center;
+}
+#header3 a {
+ text-decoration: none;
+ color: #000000;
+}
+#mission {
+ font-family: 'DejaVu Sans Extra-Light';
+ font-size: 12pt;
+ margin: 0vw 10vw 20px 10vw;
+}
+.bubble p {
+ margin: 0px;
+}
+p.bubblehead {
+ font-weight: bold;
+ font-size: 16pt;
+ margin: 0px 0px 0.5em 0px;
+}
+.bubble {
+ padding: 1em;
+ width: 20vw;
+ margin: 0 0.75vw 0 0.75vw;
+ border-style: solid;
+ border-width: 1px;
+ border-color: #aaaaaa;
+ border-radius: 15px;
+ text-align: center;
+ display: inline-block;
+ font-size: 14pt;
+ white-space: normal;
+}
+#dwnbtn:hover {
+ background-color: #cccccc;
+}
+#workers {
+ margin: 1.5em 0em 2em 0em;
+}
+#workers h2, #employers h2 {
+ margin: 0px 0px 1em 0px;
+ text-align: center;
+ font-size: 24pt;
+ font-weight: bold;
+}
+#workers a, #employers a {
+ text-decoration: none;
+}
+.workerbtn {
+ text-decoration: none;
+ color: #fb4d00;
+ border: 1px solid #fb4d00;
+ border-radius: 5px;
+ padding: 0.5em;
+ display: inline-block;
+ margin: 2em 0px 1em 33vw;
+ cursor: pointer;
+}
+.workerbtn:hover {
+ color: #eeeeee;
+ background-color: #fb4d00;
+}
+#employers {
+}
+.employerbtn {
+ text-decoration: none;
+ color: #fb4d00;
+ border: 1px solid #fb4d00;
+ border-radius: 5px;
+ padding: 0.5em;
+ display: inline-block;
+ margin: 2em 0px 1em 32vw;
+ cursor: pointer;
+}
+.employerbtn:hover {
+ color: #eeeeee;
+ background-color: #fb4d00;
+}
+#dwnbtn {
+ width: 45px;
+ height: 43px;
+ border-radius: 45px;
+ margin: auto;
+ z-index: 2;
+ background-color: #ffffff;
+ background-image: url('../img/dwn.png');
+ background-size: 24px 24px;
+ background-repeat: no-repeat;
+ background-position: center center;
+ position: absolute;
+ left: 0px;
+ right: 0px;
+ top: -17px;
+ box-shadow: 0px 0px 5px rgba(0,0,0,0.75);
+}
+.nowrap {
+ display: flex;
+ flex-flow: row nowrap;
+ justify-content: center;
+}
+.bubbleflash {
+ padding-top: 50px;
+ padding-bottom: 50px;
+ font-size: 60pt;
+ word-wrap: break-word;
+}
diff --git a/css/main.css~ b/css/main.css~
new file mode 100644
index 0000000..c8737f7
--- /dev/null
+++ b/css/main.css~
@@ -0,0 +1,216 @@
+@font-face {
+ font-family: Ubuntu;
+ src: url('../ttf/ubuntu.ttf');
+}
+@font-face {
+ font-family: OpenSans;
+ src: url('../ttf/opensans.ttf');
+}
+@font-face {
+ font-family: 'Roboto';
+ src: url('../ttf/roboto.ttf');
+}
+@font-face {
+ font-family: 'DejaVu Sans Extra-Light';
+ src: url('../ttf/deja.ttf');
+}
+
+#headerbar {
+ height: 48px;
+ width: 100%;
+ position: absolute;
+ top: 0px;
+ left: 0px;
+}
+#headerimg {
+ background-image: url('../img/2.png');
+ background-size: contain;
+ background-repeat: no-repeat;
+ margin-left: 8%;
+ height: inherit;
+}
+#midbody {
+ margin-left: auto;
+ margin-right: auto;
+ height: 150px;
+ color: #ffffff;
+ text-align: center;
+ font-size: 20pt;
+ max-width: 66%;
+ position: absolute;
+ left: 0px;
+ right: 0px;
+ top: 43%;
+}
+.bigquote {
+ font-family: OpenSans;
+ font-size: 133%;
+ font-weight: bold;
+}
+#links {
+ margin-left: auto;
+ margin-right: auto;
+ position: absolute;
+ left: 0px;
+ right: 0px;
+ top: 65%;
+ text-align: center;
+}
+.link {
+ cursor: pointer;
+ text-align: center;
+ margin: 0px 24px 0px 24px;
+ border-style: solid;
+ border-width: 1px;
+ border-radius: 10px;
+}
+.link a {
+ text-decoration: none;
+ font-family: Ubuntu;
+ font-size: 18pt;
+ color: #ffffff;
+}
+#link1 {
+ background-color: #fb3800;
+ border-color: #fb3800;
+ padding: 15px 28px 15px 28px;
+}
+#link2 {
+ background-color: #d0d0d0;
+ padding: 15px 20px 15px 20px;
+ border-color: #d0d0d0;
+}
+#cover {
+ position: absolute;
+ top: 0px;
+ left: 0px;
+ width: 100%;
+ height: 100%;
+ background-image: linear-gradient(135deg, rgba(0,0,0,0.7) 5%, rgba(0,0,0,0.4) 15%, rgba(0,0,0,0)),
+ url('../img/3.jpg');
+ background-size: cover;
+ background-repeat: no-repeat;
+/* border-style: solid;
+ border-width: 0px 0px 2px 0px;
+ border-color: #000000; */
+}
+
+#about {
+ position: absolute;
+ top: 100%;
+ left: 0px;
+}
+
+/* Small screen security */
+@media screen and (max-width: 480px) {
+ #headerimg {
+ padding-left: 10px;
+ }
+ #midbody {
+ max-width: 100%;
+ }
+}
+
+#part2 {
+ width: 100%;
+ height: calc(100% + 168px);
+ position: absolute;
+ top: 100%;
+ left: 0px;
+}
+#header2 {
+ width: 100%;
+ height: 200px;
+ position: absolute;
+ z-index: 1;
+ top: 0px;
+ left: 0px;
+ background-color: #ff9a66;
+ box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
+}
+#body2 {
+ background-color: #ffffff;
+ width: 100%;
+ height: calc(100% - 212px);
+ position: absolute;
+ top: 200px;
+ left: 0px;
+ z-index: 0;
+}
+#footer {
+ width: 100%;
+ height: 12px;
+ position: absolute;
+ z-index: 1;
+ bottom: 0px;
+ left: 0px;
+ background-color: #ff9a66;
+ box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.75);
+}
+#copy {
+ font-size: x-small;
+ font-family: Ubuntu;
+ position: absolute;
+ text-align: center;
+ position: absolute;
+ bottom: 0px;
+ left: 0px;
+ right: 0px;
+ margin: auto;
+}
+#copy a {
+ color: #000000;
+ text-decoration: none;
+}
+a #lefth2 p, #midh2 p, #righth2 p {
+ margin: 0px;
+ color: #000000;
+}
+#lefth2 {
+ background-image: url('../img/2chainz.png');
+ left: 10%;
+ margin: 0px 0px 0px 0px;
+}
+#midh2 {
+ background-image: url('../img/handshake.png');
+ left: 0px;
+ right: 0px;
+ margin: 0px auto 0px auto;
+}
+#righth2 {
+ background-image: url('../img/talks.png');
+ right: 10%;
+ margin: 0px 0px 0px 5px;
+}
+a #lefth2, #midh2, #righth2 {
+ width: 178px;
+ position: absolute;
+ top: 0px;
+ background-repeat: no-repeat;
+ background-size: 148px;
+ background-position: center 10px;
+ padding: 173px 16px 8px 16px;
+ font-family: 'DejaVu Sans Extra-Light';
+ font-size: 16px;
+ text-transform: uppercase;
+ text-align: center;
+ cursor: pointer;
+}
+a:hover #lefth2, a:hover #midh2, a:hover #righth2 {
+ background-color: rgba(0,0,0,0.2);
+}
+#header3 p {
+ margin-top: 0.5em;
+ margin-bottom: 0.5em;
+ font-family: 'DejaVu Sans Extra-Light';
+ font-size: 24pt;
+ text-align: center;
+}
+#mission {
+ font-family: 'DejaVu Sans Extra-Light';
+ font-size: 12pt;
+ margin: 0em 10em 0em 10em;
+}
+#mission p {
+ text-indent: 2em;
+}