LocalCDN-Firefox-Chrome-Brave/pages/style.css

231 lines
4.0 KiB
CSS
Raw Normal View History

2020-02-27 13:45:29 +01:00
html {
2020-06-13 20:52:24 +02:00
background-color: #4e4e4e;
2020-02-27 13:45:29 +01:00
box-sizing: border-box;
height: 100%;
}
body {
2020-06-13 20:52:24 +02:00
background-color: #fafafa;
2021-02-17 06:59:56 +01:00
-khtml-box-shadow: 10px 10px 60px #111;
-moz-box-shadow: 10px 10px 60px #111;
-webkit-box-shadow: 10px 10px 60px #111;
box-shadow: 10px 10px 60px #111;
2020-02-27 13:45:29 +01:00
box-sizing: border-box;
2020-06-13 20:52:24 +02:00
color: #555;
2020-02-27 13:45:29 +01:00
font-size: 14px;
2021-02-17 06:59:56 +01:00
height: unset !important;
2020-02-27 13:45:29 +01:00
margin: 0 auto;
max-width: 982px;
min-height: 100%;
min-width: 256px;
padding: 33px 18px;
}
h1 {
font-family: 'Noto Sans', Arial, sans-serif;
font-size: 24px;
font-weight: 400;
2020-05-27 06:21:41 +02:00
text-align: center;
2020-02-27 13:45:29 +01:00
}
2020-03-01 10:01:49 +01:00
hr {
border: 0;
border-top: 1px solid #ccc;
2021-02-17 06:59:56 +01:00
display: block;
height: 1px;
2020-03-01 10:01:49 +01:00
margin: 1em 0;
padding: 0;
}
2020-02-27 13:45:29 +01:00
.btn-panel {
cursor: default;
2021-02-17 06:59:56 +01:00
display: flex;
2020-02-27 13:45:29 +01:00
font-family: 'Noto Sans', Arial, sans-serif;
2021-02-17 06:59:56 +01:00
justify-content: center;
2020-06-03 16:31:25 +02:00
margin: auto;
2020-02-27 13:45:29 +01:00
max-width: 750px;
}
.topic-badge {
background-color: #fcfcfc;
border: 4px solid #e6e6e6;
2021-02-17 06:59:56 +01:00
border-radius: 100px;
2020-02-27 13:45:29 +01:00
color: #5a8f79;
display: inline-block;
font-size: 48px;
line-height: 0;
margin: 0 20px 20px;
padding: 16px;
}
.topic-badge:first-child {
margin-left: 0;
}
.topic-badge:last-child {
margin-right: 0;
}
@font-face {
2020-06-28 07:43:08 +02:00
font-family: 'Noto Sans';
font-style: normal;
font-weight: 400;
src: url(../../modules/noto-sans/noto-sans.woff2) format('woff2');
2020-02-27 13:45:29 +01:00
}
@font-face {
2020-06-28 07:43:08 +02:00
font-family: 'Noto Sans';
font-style: normal;
font-weight: 600;
src: url(../../modules/noto-sans/noto-sans-bold.woff2) format('woff2');
2020-02-27 13:45:29 +01:00
}
@font-face {
2020-06-28 07:43:08 +02:00
font-family: 'Noto Sans';
font-style: italic;
font-weight: 400;
src: url(../../modules/noto-sans/noto-sans-italic.woff2) format('woff2');
2020-02-27 13:45:29 +01:00
}
.btn {
2021-02-17 06:59:56 +01:00
background: 0 0;
border-radius: 4px;
border-style: solid;
border-width: 1px;
-webkit-box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.5), 0 5px 5px -5px #000;
box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.5), 0 5px 5px -5px #000;
2020-06-03 16:31:25 +02:00
color: #fff !important;
2020-02-27 13:45:29 +01:00
font-weight: 600;
2020-06-03 16:31:25 +02:00
margin: 15px;
2020-02-27 13:45:29 +01:00
padding: 11px 17px;
2020-03-01 10:01:49 +01:00
text-align: center;
2021-02-17 06:59:56 +01:00
text-decoration: none;
2020-06-03 16:31:25 +02:00
width: 100px;
2020-06-28 07:43:08 +02:00
}
.btn:hover {
background: none;
2020-06-03 16:31:25 +02:00
}
.btn-text {
align-items: center;
2021-02-17 06:59:56 +01:00
display: inline-flex;
2020-06-03 16:31:25 +02:00
justify-content: center;
2021-02-17 06:59:56 +01:00
min-height: 40px;
2020-02-27 13:45:29 +01:00
}
.btn-gitlab {
2020-06-03 16:31:25 +02:00
background-color: #007bbd;
border-color: #00679e !important;
2020-02-27 13:45:29 +01:00
}
.btn-gitlab:hover {
2020-06-03 16:31:25 +02:00
background-color: #00679e;
2020-02-27 13:45:29 +01:00
}
2020-06-03 16:31:25 +02:00
.btn-testing-utility {
background-color: #058300;
border-color: #034800 !important;
2020-02-27 13:45:29 +01:00
}
2020-06-03 16:31:25 +02:00
.btn-testing-utility:hover {
background-color: #034800;
}
.btn-contact {
background-color: #f49b2f;
border-color: #f58700 !important;
}
.btn-contact:hover {
background-color: #f58700;
2020-02-27 13:45:29 +01:00
}
.notice {
align-items: center;
font-family: 'Noto Sans', Arial, sans-serif;
margin-left: auto;
margin-right: auto;
max-width: 750px;
text-align: left;
2021-03-30 06:31:59 +02:00
padding-bottom: 2em;
2020-02-27 13:45:29 +01:00
}
.logo {
display: block;
height: 145px;
margin: 15px auto 50px;
}
.subtle-hint {
color: #777;
font-size: 14px;
margin-bottom: 20px;
padding: 8px 11px;
}
.topic-label {
color: #5a8f79;
font-style: normal;
2020-06-28 07:43:08 +02:00
font-weight: 700;
2020-02-27 13:45:29 +01:00
}
2020-06-28 07:43:08 +02:00
.uncle-sam, .we-need-you-title {
2021-02-17 06:59:56 +01:00
display: block;
2020-06-28 07:43:08 +02:00
margin-left: auto;
margin-right: auto;
2020-03-01 10:01:49 +01:00
text-align: center;
}
.uncle-sam {
display: block;
}
.we-need-you-declaration {
color: #777;
2020-06-28 07:43:08 +02:00
font-weight: 400;
2020-03-01 10:01:49 +01:00
text-align: center;
}
2020-06-28 07:43:08 +02:00
.p-donate {
2020-06-03 16:31:25 +02:00
text-decoration: underline;
}
2020-06-28 07:43:08 +02:00
.p-donate:hover {
2020-06-03 16:31:25 +02:00
cursor: pointer;
}
2020-02-27 13:45:29 +01:00
@media screen and (max-width: 982px) {
body {
box-shadow: none;
}
}
2020-06-13 20:52:24 +02:00
@media screen and (max-width: 500px) {
.btn-panel {
flex-wrap: wrap;
}
2020-03-01 10:01:49 +01:00
2020-02-27 13:45:29 +01:00
.btn {
2020-06-13 20:52:24 +02:00
margin-bottom: 10px;
max-width: 733px;
2021-02-17 06:59:56 +01:00
padding: 13px 18px 12px;
width: 100%;
2020-02-27 13:45:29 +01:00
}
2020-03-01 10:01:49 +01:00
2020-02-27 13:45:29 +01:00
.btn-text {
2020-06-13 20:52:24 +02:00
min-height: unset;
2021-02-17 06:59:56 +01:00
width: 100%;
2020-02-27 13:45:29 +01:00
}
}
2020-06-16 07:10:22 +02:00
2020-06-28 07:43:08 +02:00
@media (prefers-color-scheme: dark) {
2020-06-16 07:10:22 +02:00
body {
background-color: #404040;
}
2020-06-28 07:43:08 +02:00
.subtle-hint, body, h3, p {
2020-06-16 07:10:22 +02:00
color: #aeaeae !important;
}
}