woodpecker/server/app/styles/drone.css

1035 lines
20 KiB
CSS
Raw Normal View History

2014-07-09 07:46:15 +00:00
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
list-style: none;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.hidden {
display: none !important;
visibility: hidden;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.invisible {
visibility: hidden;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.clearfix {
*zoom: 1;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.clearfix:before,
.clearfix:after {
content: "";
display: table;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.clearfix:after {
clear: both;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.nowrap {
white-space: nowrap;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.border_box {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.fix3d {
-webkit-transform: translate3D(0, 0, 0);
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.border_box {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.invert {
-webkit-filter: invert(100%);
-moz-filter: invert(100%);
-ms-filter: invert(100%);
-o-filter: invert(100%);
filter: invert(100%);
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
html {
height: 100%;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
body {
font-family: 'Open Sans';
font-weight: normal;
margin: 0px;
color: #262626;
background: #fff;
font-size: 13px;
line-height: 1.3;
-webkit-font-smoothing: antialiased;
height: 100%;
position: relative;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
[ng\:cloak],
[ng-cloak],
[data-ng-cloak],
[x-ng-cloak],
.ng-cloak,
.x-ng-cloak {
display: none;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#container {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
padding-top: 55px;
position: relative;
min-width: 100%;
min-height: 100%;
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
}
#header {
background: #262626;
position: fixed;
height: 55px;
top: 0;
left: 0;
right: 0;
z-index: 9;
color: #fff;
font-size: 15px;
line-height: 55px;
text-align: center;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#header .brand {
display: inline-block;
font-family: 'Orbitron';
font-size: 26px;
line-height: 55px;
text-decoration: none;
text-transform: uppercase;
color: #CCC;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#header .burger {
position: absolute;
top: 0px;
left: 31px;
height: 55px;
font-size: 22px;
color: #CCC;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#header .burger i.fa {
line-height: 55px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#header .login,
#header .user {
position: absolute;
right: 0px;
top: 0px;
bottom: 0px;
white-space: nowrap;
margin-right: 20px;
display: inline-block;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#header .login a,
#header .user a {
color: #CCC;
text-decoration: none;
text-transform: uppercase;
line-height: 55px;
font-size: 15px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#header .login a img,
#header .user a img {
border-radius: 50%;
float: right;
width: 32px;
height: 32px;
margin-top: 10px;
margin-left: 20px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#body {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
display: flex;
min-width: 100%;
flex-direction: row-reverse;
justify-content: space-between;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#body article {
width: 100%;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#drawer {
visibility: hidden;
position: fixed;
z-index: 10;
left: 0px;
top: 55px;
bottom: 0px;
width: 255px;
background: #363636;
-webkit-transition: all 0.2s;
-moz-transition: all 0.2s;
transition: all 0.2s;
-webkit-transform: translate3d(-100%, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(-100%, 0, 0);
}
#drawer ul {
margin-top: 20px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#drawer ul a {
color: #CCC;
text-decoration: none;
padding: 10px 0px 10px 30px;
display: block;
font-size: 14px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#drawer ul a i {
margin-right: 10px;
font-size: 16px;
opacity: 0.3;
min-width: 16px;
display: inline-block;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#drawer ul span.divider {
display: block;
height: 1px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
margin-top: 15px;
margin-bottom: 15px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#drawer .signout {
position: absolute;
bottom: 20px;
right: 30px;
color: #CCC;
font-size: 16px;
text-transform: uppercase;
text-decoration: none;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#drawer .signout i {
margin-left: 20px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#drawer-checkbox {
position: fixed;
top: 7px;
left: 10px;
width: 45px;
height: 40px;
display: block;
z-index: 9999;
opacity: 0;
background: none;
border: none;
cursor: pointer;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#drawer-checkbox:checked ~ #drawer {
visibility: visible;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#drawer-checkbox:checked ~ #drawer {
visibility: visible;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#drawer-checkbox:checked ~ #header .fa-bars:before {
content: "\f00d";
color: #999;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
nav {
padding-left: 30px;
background: #FFF;
min-height: 77px;
max-height: 77px;
line-height: 77px;
font-family: 'Open Sans';
font-size: 22px;
white-space: nowrap;
color: rgba(0, 0, 0, 0.7);
border-bottom: 1px solid #EEE;
position: relative;
z-index: 2;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
nav a {
text-decoration: none;
color: rgba(0, 0, 0, 0.7);
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
nav a:last-child {
color: #000;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
nav a span.fa {
margin-right: 20px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
@supports (position:sticky) {
nav {
position: sticky;
top: 55px;
}
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
@supports (position:-moz-sticky) {
nav {
position: -moz-sticky;
top: 55px;
}
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
@supports (position:-webkit-sticky) {
nav {
position: -webkit-sticky;
top: 55px;
}
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
padding-right: 20px;
padding-bottom: 20px;
text-decoration: none;
position: relative;
color: #262626;
font-family: 'Open Sans';
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card .l-box {
background: #FFF;
border: 1px solid #DDD;
position: relative;
padding: 30px 20px;
height: 200px;
-webkit-transition: 0.4s border linear;
-moz-transition: 0.4s border linear;
-ms-transition: 0.4s border linear;
-o-transition: 0.4s border linear;
transition: 0.4s border linear;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card .l-box:hover {
border: 1px solid #262626;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card .l-box em {
position: absolute;
bottom: 20px;
right: 20px;
left: 20px;
height: 30px;
line-height: 30px;
vertical-align: middle;
text-align: right;
padding-right: 45px;
padding-top: 20px;
font-size: 14px;
color: #666;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card .l-box img {
position: absolute;
right: 20px;
bottom: 20px;
border-radius: 50%;
width: 30px;
height: 30px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card .l-box .timeago {
position: absolute;
bottom: 85px;
left: 25px;
right: 25px;
text-align: right;
font-size: 14px;
color: #849299;
display: none;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card h2 {
font-size: 18px;
font-weight: normal;
min-height: 52px;
max-height: 52px;
height: 52px;
text-align: center;
vertical-align: middle;
line-height: 26px;
color: #262626;
text-overflow: ellipsis;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
display: -webkit-box;
overflow: hidden;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card h2 .separator {
margin: 0px 0px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card.card-inactive .l-box {
position: relative;
box-shadow: none;
background: #4ab1ce;
color: #FFF;
height: 180px;
border-color: #4ab1ce;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card.card-inactive .l-box:hover {
background: #3197b4;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card.card-inactive .l-box:hover:before {
background: #3197b4;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card.card-inactive h2 {
padding-top: 10px;
color: #FFF;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card.card-inactive em {
position: absolute;
border-top: 1px solid rgba(255, 255, 255, 0.5);
bottom: 15px;
font-size: 13px;
left: 25px;
right: 25px;
line-height: 1.3;
padding: 0px;
padding-top: 20px;
text-align: center;
display: block;
height: 30px;
text-transform: uppercase;
color: #FFF;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card.card-browse-inactive,
.cards .card.card-browse {
text-align: center;
color: #4ab1ce;
font-size: 16px;
font-weight: bold;
text-transform: uppercase;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card.card-browse-inactive .l-box,
.cards .card.card-browse .l-box {
padding-top: 75px;
background: #FFF;
height: 180px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .card.card-browse-inactive .l-box {
box-shadow: none;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .progressContainer {
height: 5px;
background-color: #e97041;
position: absolute;
bottom: 65px;
left: 20px;
right: 20px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .progressContainer .activeProgress,
.cards .progressContainer .secondaryProgress {
position: absolute;
top: 0;
left: 0;
bottom: 0;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .progressContainer .activeProgress {
background-color: #68c598;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
.cards .progressContainer .secondaryProgress {
background-color: #68c598;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#commitpage {
max-width: 1180px;
margin: 0px auto;
margin-bottom: 50px;
margin-top: 70px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#commitpage section {
margin-top: 30px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#commitpage section .commits {
border: 1px solid #DDD;
border-bottom: 0px solid #DDD;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#commitpage section .commits a {
padding: 20px 45px;
display: block;
border-bottom: 1px solid #dadcdd;
color: #262626;
text-decoration: none;
position: relative;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#commitpage section .commits a h2 {
font-family: 'Open Sans';
font-weight: bold;
font-size: 16px;
margin-bottom: 5px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#commitpage section .commits a img {
border-radius: 50%;
margin-right: 10px;
float: left;
display: none;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#commitpage section .commits a p {
color: #363636;
line-height: 22px;
vertical-align: middle;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#commitpage section .commits a[data-status]:before {
background: transparent;
width: 7px;
min-width: 7px;
max-width: 7px;
position: absolute;
left: -1px;
top: 0px;
bottom: 0px;
text-align: left;
color: #fff;
font-size: 20px;
line-height: 50px;
font-family: 'Open Sans';
padding-left: 2px;
overflow: hidden;
content: " ";
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#commitpage section .commits a[data-result="Killed"],
#commitpage section .commits a[data-status="Error"],
#commitpage section .commits a[data-status="Failure"] {
background: #fff9f5;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#commitpage section .commits a[data-result="Killed"]:before,
#commitpage section .commits a[data-status="Error"]:before,
#commitpage section .commits a[data-status="Failure"]:before {
background: #e97041;
content: "!";
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#commitpage section .commits a[data-status="Success"]:before {
background: #68c598;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#commitpage .date span {
display: inline-block;
text-align: right;
font-size: 14px;
width: 100%;
padding-right: 30px;
margin-top: 15px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#loginpage .pure-g {
padding: 30px;
border: 1px solid #DDD;
max-width: 400px;
margin: 0px auto;
margin-top: 50px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#loginpage .pure-g a {
display: block;
background: #45494b;
color: #fff;
padding: 14px 20px;
2014-06-04 21:25:38 +00:00
font-size: 15px;
2014-07-09 07:46:15 +00:00
border-radius: 5px;
2014-06-04 21:25:38 +00:00
text-decoration: none;
}
2014-07-09 07:46:15 +00:00
#loginpage .pure-g a:hover {
background: #262626;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#loginpage .pure-g [class*="fa-"] {
float: left;
font-size: 20px;
2014-06-04 21:25:38 +00:00
position: relative;
2014-07-09 07:46:15 +00:00
top: -3px;
left: -3px;
padding-right: 10px;
min-width: 27px;
min-height: 20px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#loginpage .pure-g .pure-u-1 a {
2014-06-04 21:25:38 +00:00
margin-bottom: 10px;
}
2014-07-09 07:46:15 +00:00
#loginpage .pure-g .pure-u-1:last-child a {
margin-bottom: 0px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#homepage {
width: 100%;
background: #f2f5f8;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#homepage section {
padding: 40px 0px 20px 0px;
border-bottom: 1px solid #EEE;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#homepage section div {
max-width: 1180px;
margin: 0px auto;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#homepage section:nth-child(2) {
background: #FFF;
padding: 40px 0px 20px 0px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#homepage section:nth-child(3) {
border-bottom: 0px solid #EEE;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#repospage {
width: 100%;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#repospage section {
max-width: 1180px;
margin: 0px auto;
margin-top: 30px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#userspage {
width: 100%;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#userspage section {
border-bottom: 1px solid #eee;
max-width: 768px;
margin: 0px auto;
margin-top: 30px;
}
#userspage section .user {
-webkit-transition: 0.4s border linear;
-moz-transition: 0.4s border linear;
-ms-transition: 0.4s border linear;
-o-transition: 0.4s border linear;
transition: 0.4s border linear;
border: 1px solid #eee;
border-bottom: 1px solid #fff;
text-decoration: none;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#userspage section .user:last-child {
border-bottom: 1px solid #fff;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#userspage section .user > div {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
padding: 20px 25px;
padding-right: 0px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#userspage section .user img {
2014-06-04 21:25:38 +00:00
border-radius: 50%;
2014-07-09 07:46:15 +00:00
width: 48px;
height: 48px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#userspage section .user h4 {
font-size: 24px;
margin-bottom: 2px;
color: #262626;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#userspage section .user h4 small {
font-size: 16px;
color: #666;
margin-left: 5px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#userspage section .user span {
color: #666;
font-size: 14px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#userspage section .user:hover {
border: 1px solid #262626;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#accountpage {
width: 100%;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#accountpage section {
position: relative;
max-width: 768px;
margin: 0px auto;
margin-top: 30px;
border: 1px solid #eee;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#accountpage section.profile > div:first-child {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
padding: 20px;
text-align: center;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#accountpage section.profile > div:last-child {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
padding: 20px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#accountpage section.profile .fullname {
font-size: 14px;
margin-bottom: 2px;
color: #666;
display: block;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#accountpage section.profile .email {
font-size: 14px;
color: #666;
display: block;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#accountpage section.token > div:first-child div {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
text-align: center;
2014-06-04 21:25:38 +00:00
padding: 20px;
2014-07-09 07:46:15 +00:00
color: #666;
font-size: 16px;
line-height: 22px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#accountpage section.token > div:first-child i {
margin-right: 7px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#accountpage section.token > div:last-child {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
padding: 20px;
color: #666;
line-height: 22px;
font-size: 14px;
}
#accountpage section h4 {
margin: 10px 0px;
font-size: 22px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#accountpage section img {
2014-06-04 21:25:38 +00:00
width: 64px;
height: 64px;
border-radius: 50%;
}
2014-07-09 07:46:15 +00:00
#accountpage section .notifications {
position: absolute;
top: 0px;
right: 0px;
margin: 20px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#repopage {
width: 100%;
background: #f2f5f8;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#repopage section {
padding: 40px 0px 20px 0px;
border-bottom: 1px solid #EEE;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#repopage section > div {
max-width: 1180px;
margin: 0px auto;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#repopage section:nth-child(even) {
background: #FFF;
2014-06-05 23:19:25 +00:00
}
2014-07-09 07:46:15 +00:00
#repopage section:first-child {
background: #FFF;
2014-06-05 23:19:25 +00:00
}
2014-07-09 07:46:15 +00:00
#repopage section .card[data-status="Success"]:nth-child(2) .l-box {
border-color: #68c598;
2014-06-05 23:19:25 +00:00
}
2014-07-09 07:46:15 +00:00
#repopage section .card[data-status="Success"] em {
border-top: 5px solid #68c598;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#repopage section .card[data-status="Killed"]:nth-child(2) .l-box,
#repopage section .card[data-status="Failure"]:nth-child(2) .l-box,
#repopage section .card[data-status="Error"]:nth-child(2) .l-box {
border-color: #e97041;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#repopage section .card[data-status="Killed"] em,
#repopage section .card[data-status="Failure"] em,
#repopage section .card[data-status="Error"] em {
border-top: 5px solid #e97041;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#repopage section .card[data-status="Started"] em:before,
#repopage section .card[data-status="Pending"] em:before {
2014-06-04 21:25:38 +00:00
-webkit-animation: progress 1s linear infinite;
-moz-animation: progress 1s linear infinite;
animation: progress 1s linear infinite;
position: absolute;
content: ' ';
2014-07-09 07:46:15 +00:00
height: 5px;
top: -5px;
2014-06-04 21:25:38 +00:00
left: 0px;
right: 0px;
2014-07-09 07:46:15 +00:00
margin: 0px;
2014-06-04 21:25:38 +00:00
background: #fee172;
background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.55) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.55) 75%, transparent 75%, transparent);
background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.55) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.55) 75%, transparent 75%, transparent);
background-repeat: repeat-x;
background-size: 30px 30px;
}
2014-07-09 07:46:15 +00:00
#repopage section .l-box:after {
font-family: 'FontAwesome';
content: "\f104";
content: "\f0d9";
position: absolute;
right: -20px;
width: 20px;
text-align: center;
color: rgba(0, 0, 0, 0.1);
font-size: 22px;
}
#repopage section .card:last-child .l-box:after {
content: '';
}
2014-06-04 21:25:38 +00:00
@-webkit-keyframes progress {
to {
background-position: 30px 0;
}
}
@-moz-keyframes progress {
to {
background-position: 30px 0;
}
}
@keyframes progress {
to {
background-position: 30px 0;
}
}
2014-07-09 07:46:15 +00:00
#sidebar {
width: 240px;
min-width: 240px;
position: relative;
2014-06-04 21:25:38 +00:00
display: block;
2014-07-09 07:46:15 +00:00
z-index: 5;
padding: 30px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar h1 {
font-size: 28px;
font-weight: 300;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar h2 {
font-size: 22px;
font-weight: 300;
2014-06-04 21:25:38 +00:00
margin-bottom: 20px;
}
2014-07-09 07:46:15 +00:00
#sidebar dl {
padding-top: 23px;
border-top: 1px solid #ddd;
margin-top: 5px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar dl:first-child {
padding-top: 0;
border-top: none;
margin-top: 0;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar dl dt {
font-size: 12px;
color: #849299;
2014-06-04 21:25:38 +00:00
text-transform: uppercase;
2014-07-09 07:46:15 +00:00
padding: 3px 0;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar dl dd {
2014-06-04 21:25:38 +00:00
font-size: 14px;
2014-07-09 07:46:15 +00:00
padding: 3px 0 20px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar dl a {
text-transform: none;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar dl small {
font-size: 12px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar dl .large {
2014-06-04 21:25:38 +00:00
font-size: 18px;
2014-07-09 07:46:15 +00:00
padding-bottom: 5px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar dl .time {
float: right;
margin-left: 8px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar dl .photo {
margin-right: 4px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar dl .negative {
color: #e97041;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar dl .photoline {
display: inline-block;
position: relative;
top: -10px;
font-weight: bold;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar dl .small {
padding-bottom: 5px;
font-weight: bold;
font-size: 12px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar .status {
border: 1px solid transparent;
2014-06-04 21:25:38 +00:00
display: block;
2014-07-09 07:46:15 +00:00
text-align: center;
padding: 5px 20px;
border-radius: 50px;
2014-06-04 21:25:38 +00:00
text-transform: uppercase;
2014-07-09 07:46:15 +00:00
margin: 0 -5px 10px;
font-weight: bold;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar .status:before {
float: left;
margin-left: -5px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar .status.status_ok {
color: #68c598;
border-color: #68c598;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar .status.status_ok:before {
content: "\f00c";
2014-06-04 21:25:38 +00:00
font-family: 'FontAwesome';
}
2014-07-09 07:46:15 +00:00
#sidebar .status.status_error {
color: #e97041;
border-color: #e97041;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar .status.status_error:before {
content: "!";
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar .result {
background: #4ab1ce;
background: #68c598;
color: #fff;
margin: -30px -30px -6px;
padding: 30px;
2014-06-04 21:25:38 +00:00
position: relative;
}
2014-07-09 07:46:15 +00:00
#sidebar .result .status {
color: #fff;
background: rgba(255, 255, 255, 0.2);
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar .result .status:before {
content: "\f00c";
font-family: 'FontAwesome';
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar .result dl dd {
padding: 7px 0;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar .result dl dd strong {
font-size: 16px;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar .result[data-result="Killed"],
#sidebar .result[data-result="Failure"],
#sidebar .result[data-result="Error"] {
background: #e97041;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#sidebar .result[data-result="Killed"] .status:before,
#sidebar .result[data-result="Failure"] .status:before,
#sidebar .result[data-result="Error"] .status:before {
content: "!";
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#main {
flex-grow: 2;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#main.output {
background: #525252;
2014-06-04 21:25:38 +00:00
}
2014-07-09 07:46:15 +00:00
#main.output pre {
margin: 0px auto;
padding: 30px;
color: #FFF;
font-family: 'Droid Sans Mono';
font-size: 13px;
white-space: pre-wrap;
overflow: hidden;
2014-06-04 21:25:38 +00:00
}