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

113 lines
1.8 KiB
CSS
Raw Normal View History

2019-02-22 15:02:22 +00:00
@import url(https://fonts.googleapis.com/css?family=Roboto:300);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css);
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-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
code {
2019-02-22 19:52:40 +00:00
font-size: 12px;
2019-02-22 15:02:22 +00:00
padding: 1em;
background-color: #ccc;
border: 1px solid #aaa;
border-radius: 3px;
box-shadow: 0 2px 6px hsla(0, 0%, 0%, 0.2);
}
.brand {
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-02-22 15:02:22 +00:00
padding: 0 10%;
}
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;
width: 80vw;
max-width: 800px;
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-02-22 15:02:22 +00:00
.attribution {
2019-02-12 13:11:03 +00:00
position: absolute;
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;
}