hagrid-keyserver--hagrid/dist/public/assets/site.css

188 lines
3.3 KiB
CSS
Raw Normal View History

@import url(fonts/fontawesome.min.css);
.fa, .fas {
font-family: 'FontAwesome';
font-style: normal;
font-weight: 400;
}
@font-face {
font-family: 'Font Awesome 5 Free';
font-style: normal;
font-weight: 400;
font-display: auto;
src: url("fonts/fa-regular-400.eot");
src: url("fonts/fa-regular-400.eot?#iefix") format("embedded-opentype"),
url("fonts/fa-regular-400.woff2") format("woff2"),
url("fonts/fa-regular-400.woff") format("woff"),
url("fonts/fa-regular-400.ttf") format("truetype"),
url("fonts/fa-regular-400.svg#fontawesome") format("svg");
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 300;
src: url('fonts/roboto-v18-latin-300.eot');
src: local('Roboto Light'), local('Roboto-Light'),
url('fonts/roboto-v18-latin-300.eot?#iefix') format('embedded-opentype'),
url('fonts/roboto-v18-latin-300.woff2') format('woff2'),
url('fonts/roboto-v18-latin-300.woff') format('woff'),
url('fonts/roboto-v18-latin-300.ttf') format('truetype'),
url('fonts/roboto-v18-latin-300.svg#Roboto') format('svg');
}
2019-02-12 13:11:03 +00:00
body {
2019-02-22 15:02:22 +00:00
text-align: center;
background: url("img/grey.png") repeat;
font-family: 'Roboto', sans-serif;
color: #050505;
}
2019-02-12 13:11:03 +00:00
2019-04-25 21:03:55 +00:00
tt {
font-size: large;
}
2019-02-22 15:02:22 +00:00
h1 {
padding-bottom: 1em;
}
2019-02-12 13:11:03 +00:00
p {
2019-02-22 15:02:22 +00:00
padding-bottom: 0.5em;
}
2019-02-12 13:11:03 +00:00
a, a:visited {
2019-04-25 21:03:55 +00:00
color: #0057B3;
}
2019-02-12 13:11:03 +00:00
code {
2019-02-22 15:02:22 +00:00
background-color: #ccc;
padding: 0 0.3em;
2019-02-22 15:02:22 +00:00
border-radius: 3px;
box-shadow: 0 2px 6px hsla(0, 0%, 0%, 0.2);
}
code.snippet {
border: 1px solid #aaa;
font-size: 12px;
padding: 1em;
}
2019-02-22 20:15:06 +00:00
li {
text-align: left;
}
abbr {
text-decoration: none;
color: #444;
}
2019-04-25 15:44:46 +00:00
a {
text-decoration: none;
}
a.brand {
2019-02-22 15:02:22 +00:00
text-decoration: none;
color: #050505;
}
2019-02-12 13:11:03 +00:00
2019-02-22 15:02:22 +00:00
.search, .upload, .manage {
2019-02-12 13:11:03 +00:00
display: flex;
2019-04-25 21:03:55 +00:00
padding: 0 15%;
2019-02-22 15:02:22 +00:00
}
2019-02-12 13:11:03 +00:00
2019-02-22 15:02:22 +00:00
.manageEmail, .searchTerm, .fileUpload {
2019-02-12 13:11:03 +00:00
flex-grow: 1;
2019-02-22 20:07:49 +00:00
border: 3px solid;
2019-02-22 15:02:22 +00:00
padding: 5px;
height: 20px;
border-radius: 5px;
outline: none;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
2019-02-12 13:11:03 +00:00
2019-02-22 20:07:49 +00:00
.manageEmail {
border-color: #d93838;
}
.searchTerm, .fileUpload {
border-color: #4aa3ff;
}
2019-02-22 15:02:22 +00:00
.iconButton {
width: 40px;
}
2019-02-12 13:11:03 +00:00
2019-02-22 15:02:22 +00:00
.button {
height: 36px;
2019-02-22 20:07:49 +00:00
border: 1px solid;
2019-02-12 13:11:03 +00:00
text-align: center;
color: #fff;
2019-02-22 15:02:22 +00:00
border-radius: 5px;
cursor: pointer;
font-size: 20px;
font-family: inherit;
}
2019-02-12 13:11:03 +00:00
2019-02-22 20:07:49 +00:00
.manageButton {
border-color: #d93838;
background: #d93838;
}
.searchButton, .uploadButton {
border-color: #4aa3ff;
background: #4aa3ff;
}
2019-02-22 15:02:22 +00:00
.searchButton, .manageButton, .uploadButton {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
2019-02-12 13:11:03 +00:00
2019-02-22 15:02:22 +00:00
.card {
position: relative;
display: inline-block;
margin-top: 4vh;
padding: 20px 30px 50px;
2019-02-12 13:11:03 +00:00
background-color: #fff;
2019-02-22 15:02:22 +00:00
border-top: 5px solid #4aa3ff;
box-shadow: 0 2px 6px hsla(0, 0%, 0%, 0.2);
}
2019-02-12 13:11:03 +00:00
2019-03-06 15:03:44 +00:00
/* This is used to enlarge the card, but is also used to constrain the
flow of text in /about. */
.card > .spacer {
2019-03-06 15:03:44 +00:00
text-align: left;
width: 80vw;
max-width: 800px;
}
2019-04-25 21:21:06 +00:00
.card > .spacer2 {
text-align: left;
width: 80vw;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
2019-04-25 21:39:15 +00:00
span.email {
font-family: monospace;
font-size: large;
}
2019-02-22 15:02:22 +00:00
.attribution {
position: fixed;
z-index: -1;
2019-02-12 13:11:03 +00:00
bottom: 0;
2019-02-22 15:02:22 +00:00
right: 0;
2019-02-12 13:11:03 +00:00
width: 100%;
2019-02-22 15:02:22 +00:00
text-align: right;
font-size: 12px;
2019-02-12 13:11:03 +00:00
color: #bbb;
2019-02-22 15:02:22 +00:00
margin: 10px;
}
2019-02-12 13:11:03 +00:00
2019-02-22 15:02:22 +00:00
.attribution a {
color: #ccc;
}