108 lines
1.6 KiB
CSS
108 lines
1.6 KiB
CSS
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
|
|
|
|
body {
|
|
background-color: #171717;
|
|
padding-top: 4em;
|
|
}
|
|
|
|
.container {
|
|
animation: fadeIn 3s;
|
|
}
|
|
|
|
.material-icons {
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
.back-menu {
|
|
background-color: transparent;
|
|
color: white;
|
|
position: absolute;
|
|
top: 0;
|
|
width: 100%;
|
|
padding: 0.3em 1em;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.back-menu a {
|
|
color: white;
|
|
}
|
|
|
|
.back-menu a:hover {
|
|
color: white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.heading {
|
|
font-family: 'Open Sans', sans-serif;
|
|
padding-bottom: 3em;
|
|
}
|
|
|
|
.heading h1 {
|
|
color: white;
|
|
font-size: 1.8em;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.heading h3 {
|
|
color: #C0C0C0;
|
|
font-size: 1.2em;
|
|
font-weight: 600;
|
|
padding-bottom: 1em;
|
|
}
|
|
|
|
.table {
|
|
font-family: 'Open Sans', sans-serif;
|
|
color: white;
|
|
}
|
|
|
|
.ci-link {
|
|
padding-left: 0.9em;
|
|
}
|
|
|
|
.builds {
|
|
padding: 1em;
|
|
border-radius: 0.3em;
|
|
background-color: #292929;
|
|
}
|
|
|
|
.download-button {
|
|
background-color: #d81713;
|
|
padding: 0.2em 1em;
|
|
color: white;
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-weight: 700;
|
|
font-size: 1.1em;
|
|
border-radius: 0.3em;
|
|
}
|
|
|
|
.download-button:hover {
|
|
text-decoration: none;
|
|
color: white;
|
|
background-color: #d81713;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.stable {
|
|
padding: 1.5em 2em;
|
|
border-radius: 0.3em;
|
|
background-color: #292929;
|
|
margin-bottom: 2em;
|
|
}
|
|
|
|
.stable h1 {
|
|
color: white;
|
|
font-family: 'Open Sans', sans-serif;
|
|
font-weight: 600;
|
|
font-size: 1.4em;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
0% {
|
|
opacity: 0;
|
|
transform: translateY(5px);
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
} |