blob: 0a2ba882a26ff40d6530ae4f923208fa21f7dc14 [file] [log] [blame]
/*
* Copyright 2020 The Go Authors. All rights reserved.
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file.
*/
*,
:before,
:after {
box-sizing: border-box;
}
html,
.Site {
height: 100%;
}
.Site {
display: flex;
flex-direction: column;
font-family: sans-serif;
margin: 0;
}
h1,
h2 {
font-weight: 600;
letter-spacing: 0.03rem;
}
h3,
h4 {
font-weight: 600;
letter-spacing: 0.08rem;
}
h5,
h6 {
font-weight: 500;
letter-spacing: 0.08rem;
}
.Site-content {
flex: 1 0 auto;
width: 100%;
}
.Site-header {
flex: none;
}
.Header {
background: #e0ebf5;
color: #375eab;
padding: 0.625rem;
}
.Header-title {
font-size: 1.5rem;
margin: 0;
}
.Workflows {
padding: 0 0.625rem;
}
.Workflows-header {
align-items: center;
background: #fff;
border-bottom: 0.0625rem solid #d6d6d6;
display: flex;
justify-content: space-between;
margin: 0 -0.625rem;
padding: 0 0.625rem;
}
.WorkflowList,
.TaskList {
list-style: none;
margin: 0;
padding: 0;
}
.WorkflowList-title {
}
.WorkflowList-sectionTitle {
font-weight: normal;
margin-bottom: 0.5rem;
}
.WorkflowList-item {
background: #fff;
margin-top: 1rem;
padding: 0 0.5rem;
border: 0.0625rem solid #d6d6d6;
border-radius: 0.0625rem;
}
.TaskList {
border-bottom: 0.0625rem solid #d6d6d6;
border-top: 0.0625rem solid #d6d6d6;
margin-bottom: 1rem;
}
.TaskList-item + .TaskList-item {
border-top: 0.0625rem solid #d6d6d6;
}
.TaskList-itemSummary {
align-items: center;
cursor: pointer;
justify-content: space-between;
padding: 0.5rem;
}
.TaskList-itemSummary:hover {
background-color: #fafafa;
}
.TaskList-itemLogs {
background-color: #f5f5f5;
box-shadow: inset 0 6px 6px -8px #888;
font-size: 0.875rem;
margin: 0;
padding: 1rem 0;
}
.TaskList-itemLogLine {
padding: 0 1rem;
}
.TaskList-itemLogLine:nth-child(even) {
background-color: #fafafa;
}
.Button {
background: #375eab;
border-radius: 0.1875rem;
box-shadow: 0 0.1875rem 0.0625rem -0.125rem rgba(0, 0, 0, 0.2),
0 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.14),
0 0.0625rem 0.3125rem 0 rgba(0, 0, 0, 0.12);
color: #fff;
font-size: 0.875rem;
min-width: 4rem;
padding: 0.5rem 1rem;
text-decoration: none;
}
.Button:hover,
.Button:focus {
background: #3b65b3;
box-shadow: 0 0.125rem 0.25rem -0.0625rem rgba(0, 0, 0, 0.2),
0 0.25rem 0.3125rem 0 rgba(0, 0, 0, 0.14),
0 0.0625rem 0.625rem 0 rgba(0, 0, 0, 0.12);
}
.Button:active {
background: #4373cc;
box-shadow: 0 0.3125rem 0.3125rem -0.1875rem rgba(0, 0, 0, 0.2),
0 0.5rem 0.625rem 0.0625rem rgba(0, 0, 0, 0.14),
0 0.1875rem 0.875rem 0.125rem rgba(0, 0, 0, 0.12);
}