globalinitiative-xml-sharing/assets/main.css

99 lines
1.1 KiB
CSS

/* Generic */
body, footer {
width: 720px;
margin: auto;
}
a {
color: black;
text-decoration: underline;
}
a:hover {
color: black;
text-decoration: none;
}
.btn:link, .btn:visited, .btn {
background-color: #081b3b;
color: #fff;
padding: 10px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
border-radius: 5px;
}
.btn:hover, .btn:active {
opacity: 0.75;
}
.btn-bold {
font-weight: bold;
}
.align-vertically {
display: flex;
align-items: center;
}
/* Header */
header {
margin-top: 30px;
}
#header-logo {
max-width: 300px;
}
/* Content */
main {
margin-top: 50px;
margin-bottom: 50px;
}
.file-box {
border: 1px solid lightgrey;
border-radius: 5px;
}
.file-box img {
height: 80px;
}
.file-box h1 {
margin-bottom: 0;
}
.file-box .dim{
color: grey;
}
.file-box .logo-container {
display: flex;
justify-content: flex-start;
}
.file-box .download-container {
justify-content: flex-end;
}
/* Footer */
footer {
position: absolute;
bottom: 50px;
}
#footer-logo {
height: 100px;
}
#legal {
opacity: 0.75;
text-align: right;
margin-top: 20px;
}